Make org-transpose-words use text-mode-syntax-table
[org-mode.git] / lisp / org.el
blob9af2fdeee05c1ed583a0aa5a9f3229da622bafbf
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2014 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 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
96 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
97 ;; some places -- e.g. see the macro `org-with-limited-levels'.
99 ;; In Org buffers, the value of `outline-regexp' is that of
100 ;; `org-outline-regexp'. The only function still directly relying on
101 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
102 ;; job when `orgstruct-mode' is active.
103 (defvar org-outline-regexp "\\*+ "
104 "Regexp to match Org headlines.")
106 (defvar org-outline-regexp-bol "^\\*+ "
107 "Regexp to match Org headlines.
108 This is similar to `org-outline-regexp' but additionally makes
109 sure that we are at the beginning of the line.")
111 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
112 "Matches a headline, putting stars and text into groups.
113 Stars are put in group 1 and the trimmed body in group 2.")
115 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
116 (unless (boundp 'calendar-view-holidays-initially-flag)
117 (org-defvaralias 'calendar-view-holidays-initially-flag
118 'view-calendar-holidays-initially))
119 (unless (boundp 'calendar-view-diary-initially-flag)
120 (org-defvaralias 'calendar-view-diary-initially-flag
121 'view-diary-entries-initially))
122 (unless (boundp 'diary-fancy-buffer)
123 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
125 (declare-function org-add-archive-files "org-archive" (files))
127 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
128 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
129 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
130 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
133 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-update-time-maybe "org-clock" ())
138 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
141 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
142 (declare-function orgtbl-mode "org-table" (&optional arg))
143 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
144 (declare-function org-beamer-mode "ox-beamer" ())
145 (declare-function org-table-blank-field "org-table" ())
146 (declare-function org-table-edit-field "org-table" (arg))
147 (declare-function org-table-insert-row "org-table" (&optional arg))
148 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
149 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
150 (declare-function org-id-get-create "org-id" (&optional force))
151 (declare-function org-add-archive-files "org-archive" (files))
152 (declare-function org-id-find-id-file "org-id" (id))
153 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
154 (declare-function org-agenda-list "org-agenda" (&optional arg start-day span))
155 (declare-function org-agenda-redo "org-agenda" (&optional all))
156 (declare-function org-table-align "org-table" ())
157 (declare-function org-table-begin "org-table" (&optional table-type))
158 (declare-function org-table-blank-field "org-table" ())
159 (declare-function org-table-end "org-table" (&optional table-type))
160 (declare-function org-table-end-of-field "org-table" (&optional n))
161 (declare-function org-table-insert-row "org-table" (&optional arg))
162 (declare-function org-table-paste-rectangle "org-table" ())
163 (declare-function org-table-maybe-eval-formula "org-table" ())
164 (declare-function org-table-maybe-recalculate-line "org-table" ())
165 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
166 (declare-function org-plot/gnuplot "org-plot" (&optional params))
168 (declare-function org-element-at-point "org-element" ())
169 (declare-function org-element-cache-reset "org-element" (&optional all))
170 (declare-function org-element-cache-refresh "org-element" (pos))
171 (declare-function org-element-contents "org-element" (element))
172 (declare-function org-element-context "org-element" (&optional element))
173 (declare-function org-element-interpret-data "org-element"
174 (data &optional parent))
175 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
176 (declare-function org-element-parse-buffer "org-element"
177 (&optional granularity visible-only))
178 (declare-function org-element-property "org-element" (property element))
179 (declare-function org-element-put-property "org-element"
180 (element property value))
181 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
182 (declare-function org-element-parse-buffer "org-element"
183 (&optional granularity visible-only))
184 (declare-function org-element-type "org-element" (element))
186 (defsubst org-uniquify (list)
187 "Non-destructively remove duplicate elements from LIST."
188 (let ((res (copy-sequence list))) (delete-dups res)))
190 (defsubst org-get-at-bol (property)
191 "Get text property PROPERTY at the beginning of line."
192 (get-text-property (point-at-bol) property))
194 (defsubst org-trim (s)
195 "Remove whitespace at the beginning and the end of string S."
196 (replace-regexp-in-string
197 "\\`[ \t\n\r]+" ""
198 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
200 ;; load languages based on value of `org-babel-load-languages'
201 (defvar org-babel-load-languages)
203 ;;;###autoload
204 (defun org-babel-do-load-languages (sym value)
205 "Load the languages defined in `org-babel-load-languages'."
206 (set-default sym value)
207 (mapc (lambda (pair)
208 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
209 (if active
210 (progn
211 (require (intern (concat "ob-" lang))))
212 (progn
213 (funcall 'fmakunbound
214 (intern (concat "org-babel-execute:" lang)))
215 (funcall 'fmakunbound
216 (intern (concat "org-babel-expand-body:" lang)))))))
217 org-babel-load-languages))
219 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
220 ;;;###autoload
221 (defun org-babel-load-file (file &optional compile)
222 "Load Emacs Lisp source code blocks in the Org-mode FILE.
223 This function exports the source code using `org-babel-tangle'
224 and then loads the resulting file using `load-file'. With prefix
225 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
226 file to byte-code before it is loaded."
227 (interactive "fFile to load: \nP")
228 (let* ((age (lambda (file)
229 (float-time
230 (time-subtract (current-time)
231 (nth 5 (or (file-attributes (file-truename file))
232 (file-attributes file)))))))
233 (base-name (file-name-sans-extension file))
234 (exported-file (concat base-name ".el")))
235 ;; tangle if the org-mode file is newer than the elisp file
236 (unless (and (file-exists-p exported-file)
237 (> (funcall age file) (funcall age exported-file)))
238 (setq exported-file
239 (car (org-babel-tangle-file file exported-file "emacs-lisp"))))
240 (message "%s %s"
241 (if compile
242 (progn (byte-compile-file exported-file 'load)
243 "Compiled and loaded")
244 (progn (load-file exported-file) "Loaded"))
245 exported-file)))
247 (defcustom org-babel-load-languages '((emacs-lisp . t))
248 "Languages which can be evaluated in Org-mode buffers.
249 This list can be used to load support for any of the languages
250 below, note that each language will depend on a different set of
251 system executables and/or Emacs modes. When a language is
252 \"loaded\", then code blocks in that language can be evaluated
253 with `org-babel-execute-src-block' bound by default to C-c
254 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
255 be set to remove code block evaluation from the C-c C-c
256 keybinding. By default only Emacs Lisp (which has no
257 requirements) is loaded."
258 :group 'org-babel
259 :set 'org-babel-do-load-languages
260 :version "24.1"
261 :type '(alist :tag "Babel Languages"
262 :key-type
263 (choice
264 (const :tag "Awk" awk)
265 (const :tag "C" C)
266 (const :tag "R" R)
267 (const :tag "Asymptote" asymptote)
268 (const :tag "Calc" calc)
269 (const :tag "Clojure" clojure)
270 (const :tag "CSS" css)
271 (const :tag "Ditaa" ditaa)
272 (const :tag "Dot" dot)
273 (const :tag "Emacs Lisp" emacs-lisp)
274 (const :tag "Forth" forth)
275 (const :tag "Fortran" fortran)
276 (const :tag "Gnuplot" gnuplot)
277 (const :tag "Haskell" haskell)
278 (const :tag "IO" io)
279 (const :tag "J" J)
280 (const :tag "Java" java)
281 (const :tag "Javascript" js)
282 (const :tag "LaTeX" latex)
283 (const :tag "Ledger" ledger)
284 (const :tag "Lilypond" lilypond)
285 (const :tag "Lisp" lisp)
286 (const :tag "Makefile" makefile)
287 (const :tag "Maxima" maxima)
288 (const :tag "Matlab" matlab)
289 (const :tag "Mscgen" mscgen)
290 (const :tag "Ocaml" ocaml)
291 (const :tag "Octave" octave)
292 (const :tag "Org" org)
293 (const :tag "Perl" perl)
294 (const :tag "Pico Lisp" picolisp)
295 (const :tag "PlantUML" plantuml)
296 (const :tag "Python" python)
297 (const :tag "Ruby" ruby)
298 (const :tag "Sass" sass)
299 (const :tag "Scala" scala)
300 (const :tag "Scheme" scheme)
301 (const :tag "Screen" screen)
302 (const :tag "Shell Script" shell)
303 (const :tag "Shen" shen)
304 (const :tag "Sql" sql)
305 (const :tag "Sqlite" sqlite)
306 (const :tag "ebnf2ps" ebnf2ps))
307 :value-type (boolean :tag "Activate" :value t)))
309 ;;;; Customization variables
310 (defcustom org-clone-delete-id nil
311 "Remove ID property of clones of a subtree.
312 When non-nil, clones of a subtree don't inherit the ID property.
313 Otherwise they inherit the ID property with a new unique
314 identifier."
315 :type 'boolean
316 :version "24.1"
317 :group 'org-id)
319 ;;; Version
320 (org-check-version)
322 ;;;###autoload
323 (defun org-version (&optional here full message)
324 "Show the org-mode version.
325 Interactively, or when MESSAGE is non-nil, show it in echo area.
326 With prefix argument, or when HERE is non-nil, insert it at point.
327 In non-interactive uses, a reduced version string is output unless
328 FULL is given."
329 (interactive (list current-prefix-arg t (not current-prefix-arg)))
330 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
331 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
332 (load-suffixes (list ".el"))
333 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
334 (org-trash (or
335 (and (fboundp 'org-release) (fboundp 'org-git-version))
336 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
337 (load-suffixes save-load-suffixes)
338 (org-version (org-release))
339 (git-version (org-git-version))
340 (version (format "Org-mode version %s (%s @ %s)"
341 org-version
342 git-version
343 (if org-install-dir
344 (if (string= org-dir org-install-dir)
345 org-install-dir
346 (concat "mixed installation! " org-install-dir " and " org-dir))
347 "org-loaddefs.el can not be found!")))
348 (version1 (if full version org-version)))
349 (when here (insert version1))
350 (when message (message "%s" version1))
351 version1))
353 (defconst org-version (org-version))
356 ;;; Syntax Constants
358 ;;;; Block
360 (defconst org-block-regexp
361 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
362 "Regular expression for hiding blocks.")
364 (defconst org-dblock-start-re
365 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
366 "Matches the start line of a dynamic block, with parameters.")
368 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
369 "Matches the end of a dynamic block.")
371 ;;;; Clock and Planning
373 (defconst org-clock-string "CLOCK:"
374 "String used as prefix for timestamps clocking work hours on an item.")
376 (defconst org-closed-string "CLOSED:"
377 "String used as the prefix for timestamps logging closing a TODO entry.")
379 (defconst org-deadline-string "DEADLINE:"
380 "String to mark deadline entries.
381 A deadline is this string, followed by a time stamp. Should be a word,
382 terminated by a colon. You can insert a schedule keyword and
383 a timestamp with \\[org-deadline].")
385 (defconst org-scheduled-string "SCHEDULED:"
386 "String to mark scheduled TODO entries.
387 A schedule is this string, followed by a time stamp. Should be a word,
388 terminated by a colon. You can insert a schedule keyword and
389 a timestamp with \\[org-schedule].")
391 (defconst org-ds-keyword-length
392 (+ 2
393 (apply #'max
394 (mapcar #'length
395 (list org-deadline-string org-scheduled-string
396 org-clock-string org-closed-string))))
397 "Maximum length of the DEADLINE and SCHEDULED keywords.")
399 (defconst org-planning-line-re
400 (concat "^[ \t]*"
401 (regexp-opt
402 (list org-closed-string org-deadline-string org-scheduled-string)
404 "Matches a line with planning info.
405 Matched keyword is in group 1.")
407 (defconst org-clock-line-re
408 (concat "^[ \t]*" org-clock-string)
409 "Matches a line with clock info.")
411 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
412 "Matches the DEADLINE keyword.")
414 (defconst org-deadline-time-regexp
415 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
416 "Matches the DEADLINE keyword together with a time stamp.")
418 (defconst org-deadline-time-hour-regexp
419 (concat "\\<" org-deadline-string
420 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
421 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
423 (defconst org-deadline-line-regexp
424 (concat "\\<\\(" org-deadline-string "\\).*")
425 "Matches the DEADLINE keyword and the rest of the line.")
427 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
428 "Matches the SCHEDULED keyword.")
430 (defconst org-scheduled-time-regexp
431 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
432 "Matches the SCHEDULED keyword together with a time stamp.")
434 (defconst org-scheduled-time-hour-regexp
435 (concat "\\<" org-scheduled-string
436 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
437 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
439 (defconst org-closed-time-regexp
440 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
441 "Matches the CLOSED keyword together with a time stamp.")
443 (defconst org-keyword-time-regexp
444 (concat "\\<"
445 (regexp-opt
446 (list org-scheduled-string org-deadline-string org-closed-string
447 org-clock-string)
449 " *[[<]\\([^]>]+\\)[]>]")
450 "Matches any of the 4 keywords, together with the time stamp.")
452 (defconst org-keyword-time-not-clock-regexp
453 (concat
454 "\\<"
455 (regexp-opt
456 (list org-scheduled-string org-deadline-string org-closed-string) t)
457 " *[[<]\\([^]>]+\\)[]>]")
458 "Matches any of the 3 keywords, together with the time stamp.")
460 (defconst org-maybe-keyword-time-regexp
461 (concat "\\(\\<"
462 (regexp-opt
463 (list org-scheduled-string org-deadline-string org-closed-string
464 org-clock-string)
466 "\\)?"
467 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
468 "\\|"
469 "<%%([^\r\n>]*>\\)")
470 "Matches a timestamp, possibly preceded by a keyword.")
472 (defconst org-all-time-keywords
473 (mapcar (lambda (w) (substring w 0 -1))
474 (list org-scheduled-string org-deadline-string
475 org-clock-string org-closed-string))
476 "List of time keywords.")
478 ;;;; Drawer
480 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
481 "Matches first or last line of a hidden block.
482 Group 1 contains drawer's name or \"END\".")
484 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
485 "Regular expression matching the first line of a property drawer.")
487 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
488 "Regular expression matching the last line of a property drawer.")
490 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
491 "Regular expression matching the first line of a clock drawer.")
493 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
494 "Regular expression matching the last line of a clock drawer.")
496 (defconst org-property-drawer-re
497 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
498 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*"
499 "[ \t]*:END:[ \t]*$")
500 "Matches an entire property drawer.")
502 (defconst org-clock-drawer-re
503 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
504 org-clock-drawer-end-re "\\)\n?")
505 "Matches an entire clock drawer.")
507 ;;;; Headline
509 (defconst org-heading-keyword-regexp-format
510 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
511 "Printf format for a regexp matching a headline with some keyword.
512 This regexp will match the headline of any node which has the
513 exact keyword that is put into the format. The keyword isn't in
514 any group by default, but the stars and the body are.")
516 (defconst org-heading-keyword-maybe-regexp-format
517 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
518 "Printf format for a regexp matching a headline, possibly with some keyword.
519 This regexp can match any headline with the specified keyword, or
520 without a keyword. The keyword isn't in any group by default,
521 but the stars and the body are.")
523 (defconst org-archive-tag "ARCHIVE"
524 "The tag that marks a subtree as archived.
525 An archived subtree does not open during visibility cycling, and does
526 not contribute to the agenda listings.")
528 (defconst org-comment-string "COMMENT"
529 "Entries starting with this keyword will never be exported.
530 An entry can be toggled between COMMENT and normal with
531 \\[org-toggle-comment].")
534 ;;;; LaTeX Environments and Fragments
536 (defconst org-latex-regexps
537 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
538 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
539 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
540 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
541 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\([- .,?;:'\")\000]\\|$\\)" 2 nil)
542 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
543 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
544 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
545 "Regular expressions for matching embedded LaTeX.")
547 ;;;; Node Property
549 (defconst org-effort-property "Effort"
550 "The property that is being used to keep track of effort estimates.
551 Effort estimates given in this property need to have the format H:MM.")
553 ;;;; Table
555 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
556 "Detect an org-type or table-type table.")
558 (defconst org-table-line-regexp "^[ \t]*|"
559 "Detect an org-type table line.")
561 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
562 "Detect an org-type table line.")
564 (defconst org-table-hline-regexp "^[ \t]*|-"
565 "Detect an org-type table hline.")
567 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
568 "Detect a table-type table hline.")
570 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
571 "Detect the first line outside a table when searching from within it.
572 This works for both table types.")
574 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
575 "Detect a #+TBLFM line.")
577 ;;;; Timestamp
579 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
580 "Regular expression for fast time stamp matching.")
582 (defconst org-ts-regexp-inactive
583 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
584 "Regular expression for fast inactive time stamp matching.")
586 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
587 "Regular expression for fast time stamp matching.")
589 (defconst org-ts-regexp0
590 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
591 "Regular expression matching time strings for analysis.
592 This one does not require the space after the date, so it can be used
593 on a string that terminates immediately after the date.")
595 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
596 "Regular expression matching time strings for analysis.")
598 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
599 "Regular expression matching time stamps, with groups.")
601 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
602 "Regular expression matching time stamps (also [..]), with groups.")
604 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
605 "Regular expression matching a time stamp range.")
607 (defconst org-tr-regexp-both
608 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
609 "Regular expression matching a time stamp range.")
611 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
612 org-ts-regexp "\\)?")
613 "Regular expression matching a time stamp or time stamp range.")
615 (defconst org-tsr-regexp-both
616 (concat org-ts-regexp-both "\\(--?-?"
617 org-ts-regexp-both "\\)?")
618 "Regular expression matching a time stamp or time stamp range.
619 The time stamps may be either active or inactive.")
621 (defconst org-repeat-re
622 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
623 "Regular expression for specifying repeated events.
624 After a match, group 1 contains the repeat expression.")
626 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
627 "Formats for `format-time-string' which are used for time stamps.")
630 ;;; The custom variables
632 (defgroup org nil
633 "Outline-based notes management and organizer."
634 :tag "Org"
635 :group 'outlines
636 :group 'calendar)
638 (defcustom org-mode-hook nil
639 "Mode hook for Org-mode, run after the mode was turned on."
640 :group 'org
641 :type 'hook)
643 (defcustom org-load-hook nil
644 "Hook that is run after org.el has been loaded."
645 :group 'org
646 :type 'hook)
648 (defcustom org-log-buffer-setup-hook nil
649 "Hook that is run after an Org log buffer is created."
650 :group 'org
651 :version "24.1"
652 :type 'hook)
654 (defvar org-modules) ; defined below
655 (defvar org-modules-loaded nil
656 "Have the modules been loaded already?")
658 (defun org-load-modules-maybe (&optional force)
659 "Load all extensions listed in `org-modules'."
660 (when (or force (not org-modules-loaded))
661 (mapc (lambda (ext)
662 (condition-case nil (require ext)
663 (error (message "Problems while trying to load feature `%s'" ext))))
664 org-modules)
665 (setq org-modules-loaded t)))
667 (defun org-set-modules (var value)
668 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
669 (set var value)
670 (when (featurep 'org)
671 (org-load-modules-maybe 'force)
672 (org-element-cache-reset 'all)))
674 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
675 "Modules that should always be loaded together with org.el.
677 If a description starts with <C>, the file is not part of Emacs
678 and loading it will require that you have downloaded and properly
679 installed the Org mode distribution.
681 You can also use this system to load external packages (i.e. neither Org
682 core modules, nor modules from the CONTRIB directory). Just add symbols
683 to the end of the list. If the package is called org-xyz.el, then you need
684 to add the symbol `xyz', and the package must have a call to:
686 \(provide 'org-xyz)
688 For export specific modules, see also `org-export-backends'."
689 :group 'org
690 :set 'org-set-modules
691 :version "24.4"
692 :package-version '(Org . "8.0")
693 :type
694 '(set :greedy t
695 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
696 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
697 (const :tag " crypt: Encryption of subtrees" org-crypt)
698 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
699 (const :tag " docview: Links to doc-view buffers" org-docview)
700 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
701 (const :tag " habit: Track your consistency with habits" org-habit)
702 (const :tag " id: Global IDs for identifying entries" org-id)
703 (const :tag " info: Links to Info nodes" org-info)
704 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
705 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
706 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
707 (const :tag " mouse: Additional mouse support" org-mouse)
708 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
709 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
710 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
712 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
713 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
714 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
715 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
716 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
717 (const :tag "C collector: Collect properties into tables" org-collector)
718 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
719 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
720 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
721 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
722 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
723 (const :tag "C eval: Include command output as text" org-eval)
724 (const :tag "C eww: Store link to url of eww" org-eww)
725 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
726 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
727 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
728 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
729 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
730 (const :tag "C jira: Add a jira:ticket protocol to Org-mode" org-jira)
731 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
732 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
733 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
734 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
735 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
736 (const :tag "C mew: Links to Mew folders/messages" org-mew)
737 (const :tag "C mtags: Support for muse-like tags" org-mtags)
738 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
739 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
740 (const :tag "C registry: A registry for Org-mode links" org-registry)
741 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
742 (const :tag "C secretary: Team management with org-mode" org-secretary)
743 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
744 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
745 (const :tag "C track: Keep up with Org-mode development" org-track)
746 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
747 (const :tag "C vm: Links to VM folders/messages" org-vm)
748 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
749 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
750 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
752 (defvar org-export--registered-backends) ; From ox.el.
753 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
754 (declare-function org-export-backend-name "ox" (backend))
755 (defcustom org-export-backends '(ascii html icalendar latex)
756 "List of export back-ends that should be always available.
758 If a description starts with <C>, the file is not part of Emacs
759 and loading it will require that you have downloaded and properly
760 installed the Org mode distribution.
762 Unlike to `org-modules', libraries in this list will not be
763 loaded along with Org, but only once the export framework is
764 needed.
766 This variable needs to be set before org.el is loaded. If you
767 need to make a change while Emacs is running, use the customize
768 interface or run the following code, where VAL stands for the new
769 value of the variable, after updating it:
771 \(progn
772 \(setq org-export--registered-backends
773 \(org-remove-if-not
774 \(lambda (backend)
775 \(let ((name (org-export-backend-name backend)))
776 \(or (memq name val)
777 \(catch 'parentp
778 \(dolist (b val)
779 \(and (org-export-derived-backend-p b name)
780 \(throw 'parentp t)))))))
781 org-export--registered-backends))
782 \(let ((new-list (mapcar 'org-export-backend-name
783 org-export--registered-backends)))
784 \(dolist (backend val)
785 \(cond
786 \((not (load (format \"ox-%s\" backend) t t))
787 \(message \"Problems while trying to load export back-end `%s'\"
788 backend))
789 \((not (memq backend new-list)) (push backend new-list))))
790 \(set-default 'org-export-backends new-list)))
792 Adding a back-end to this list will also pull the back-end it
793 depends on, if any."
794 :group 'org
795 :group 'org-export
796 :version "24.4"
797 :package-version '(Org . "8.0")
798 :initialize 'custom-initialize-set
799 :set (lambda (var val)
800 (if (not (featurep 'ox)) (set-default var val)
801 ;; Any back-end not required anymore (not present in VAL and not
802 ;; a parent of any back-end in the new value) is removed from the
803 ;; list of registered back-ends.
804 (setq org-export--registered-backends
805 (org-remove-if-not
806 (lambda (backend)
807 (let ((name (org-export-backend-name backend)))
808 (or (memq name val)
809 (catch 'parentp
810 (dolist (b val)
811 (and (org-export-derived-backend-p b name)
812 (throw 'parentp t)))))))
813 org-export--registered-backends))
814 ;; Now build NEW-LIST of both new back-ends and required
815 ;; parents.
816 (let ((new-list (mapcar 'org-export-backend-name
817 org-export--registered-backends)))
818 (dolist (backend val)
819 (cond
820 ((not (load (format "ox-%s" backend) t t))
821 (message "Problems while trying to load export back-end `%s'"
822 backend))
823 ((not (memq backend new-list)) (push backend new-list))))
824 ;; Set VAR to that list with fixed dependencies.
825 (set-default var new-list))))
826 :type '(set :greedy t
827 (const :tag " ascii Export buffer to ASCII format" ascii)
828 (const :tag " beamer Export buffer to Beamer presentation" beamer)
829 (const :tag " html Export buffer to HTML format" html)
830 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
831 (const :tag " latex Export buffer to LaTeX format" latex)
832 (const :tag " man Export buffer to MAN format" man)
833 (const :tag " md Export buffer to Markdown format" md)
834 (const :tag " odt Export buffer to ODT format" odt)
835 (const :tag " org Export buffer to Org format" org)
836 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
837 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
838 (const :tag "C deck Export buffer to deck.js presentations" deck)
839 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
840 (const :tag "C groff Export buffer to Groff format" groff)
841 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
842 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
843 (const :tag "C s5 Export buffer to s5 presentations" s5)
844 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
846 (eval-after-load 'ox
847 '(mapc
848 (lambda (backend)
849 (condition-case nil (require (intern (format "ox-%s" backend)))
850 (error (message "Problems while trying to load export back-end `%s'"
851 backend))))
852 org-export-backends))
854 (defcustom org-support-shift-select nil
855 "Non-nil means make shift-cursor commands select text when possible.
857 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
858 start selecting a region, or enlarge regions started in this way.
859 In Org-mode, in special contexts, these same keys are used for
860 other purposes, important enough to compete with shift selection.
861 Org tries to balance these needs by supporting `shift-select-mode'
862 outside these special contexts, under control of this variable.
864 The default of this variable is nil, to avoid confusing behavior. Shifted
865 cursor keys will then execute Org commands in the following contexts:
866 - on a headline, changing TODO state (left/right) and priority (up/down)
867 - on a time stamp, changing the time
868 - in a plain list item, changing the bullet type
869 - in a property definition line, switching between allowed values
870 - in the BEGIN line of a clock table (changing the time block).
871 Outside these contexts, the commands will throw an error.
873 When this variable is t and the cursor is not in a special
874 context, Org-mode will support shift-selection for making and
875 enlarging regions. To make this more effective, the bullet
876 cycling will no longer happen anywhere in an item line, but only
877 if the cursor is exactly on the bullet.
879 If you set this variable to the symbol `always', then the keys
880 will not be special in headlines, property lines, and item lines,
881 to make shift selection work there as well. If this is what you
882 want, you can use the following alternative commands: `C-c C-t'
883 and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
884 can be used to switch TODO sets, `C-c -' to cycle item bullet
885 types, and properties can be edited by hand or in column view.
887 However, when the cursor is on a timestamp, shift-cursor commands
888 will still edit the time stamp - this is just too good to give up.
890 XEmacs user should have this variable set to nil, because
891 `shift-select-mode' is in Emacs 23 or later only."
892 :group 'org
893 :type '(choice
894 (const :tag "Never" nil)
895 (const :tag "When outside special context" t)
896 (const :tag "Everywhere except timestamps" always)))
898 (defcustom org-loop-over-headlines-in-active-region nil
899 "Shall some commands act upon headlines in the active region?
901 When set to `t', some commands will be performed in all headlines
902 within the active region.
904 When set to `start-level', some commands will be performed in all
905 headlines within the active region, provided that these headlines
906 are of the same level than the first one.
908 When set to a string, those commands will be performed on the
909 matching headlines within the active region. Such string must be
910 a tags/property/todo match as it is used in the agenda tags view.
912 The list of commands is: `org-schedule', `org-deadline',
913 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
914 `org-archive-to-archive-sibling'. The archiving commands skip
915 already archived entries."
916 :type '(choice (const :tag "Don't loop" nil)
917 (const :tag "All headlines in active region" t)
918 (const :tag "In active region, headlines at the same level than the first one" start-level)
919 (string :tag "Tags/Property/Todo matcher"))
920 :version "24.1"
921 :group 'org-todo
922 :group 'org-archive)
924 (defgroup org-startup nil
925 "Options concerning startup of Org-mode."
926 :tag "Org Startup"
927 :group 'org)
929 (defcustom org-startup-folded t
930 "Non-nil means entering Org-mode will switch to OVERVIEW.
931 This can also be configured on a per-file basis by adding one of
932 the following lines anywhere in the buffer:
934 #+STARTUP: fold (or `overview', this is equivalent)
935 #+STARTUP: nofold (or `showall', this is equivalent)
936 #+STARTUP: content
937 #+STARTUP: showeverything
939 By default, this option is ignored when Org opens agenda files
940 for the first time. If you want the agenda to honor the startup
941 option, set `org-agenda-inhibit-startup' to nil."
942 :group 'org-startup
943 :type '(choice
944 (const :tag "nofold: show all" nil)
945 (const :tag "fold: overview" t)
946 (const :tag "content: all headlines" content)
947 (const :tag "show everything, even drawers" showeverything)))
949 (defcustom org-startup-truncated t
950 "Non-nil means entering Org-mode will set `truncate-lines'.
951 This is useful since some lines containing links can be very long and
952 uninteresting. Also tables look terrible when wrapped."
953 :group 'org-startup
954 :type 'boolean)
956 (defcustom org-startup-indented nil
957 "Non-nil means turn on `org-indent-mode' on startup.
958 This can also be configured on a per-file basis by adding one of
959 the following lines anywhere in the buffer:
961 #+STARTUP: indent
962 #+STARTUP: noindent"
963 :group 'org-structure
964 :type '(choice
965 (const :tag "Not" nil)
966 (const :tag "Globally (slow on startup in large files)" t)))
968 (defcustom org-use-sub-superscripts t
969 "Non-nil means interpret \"_\" and \"^\" for display.
971 If you want to control how Org exports those characters, see
972 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
973 used to be an alias for `org-export-with-sub-superscripts' in
974 Org <8.0, it is not anymore.
976 When this option is turned on, you can use TeX-like syntax for
977 sub- and superscripts within the buffer. Several characters after
978 \"_\" or \"^\" will be considered as a single item - so grouping
979 with {} is normally not needed. For example, the following things
980 will be parsed as single sub- or superscripts:
982 10^24 or 10^tau several digits will be considered 1 item.
983 10^-12 or 10^-tau a leading sign with digits or a word
984 x^2-y^3 will be read as x^2 - y^3, because items are
985 terminated by almost any nonword/nondigit char.
986 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
988 Still, ambiguity is possible. So when in doubt, use {} to enclose
989 the sub/superscript. If you set this variable to the symbol `{}',
990 the braces are *required* in order to trigger interpretations as
991 sub/superscript. This can be helpful in documents that need \"_\"
992 frequently in plain text."
993 :group 'org-startup
994 :version "24.4"
995 :package-version '(Org . "8.0")
996 :type '(choice
997 (const :tag "Always interpret" t)
998 (const :tag "Only with braces" {})
999 (const :tag "Never interpret" nil)))
1001 (defcustom org-startup-with-beamer-mode nil
1002 "Non-nil means turn on `org-beamer-mode' on startup.
1003 This can also be configured on a per-file basis by adding one of
1004 the following lines anywhere in the buffer:
1006 #+STARTUP: beamer"
1007 :group 'org-startup
1008 :version "24.1"
1009 :type 'boolean)
1011 (defcustom org-startup-align-all-tables nil
1012 "Non-nil means align all tables when visiting a file.
1013 This is useful when the column width in tables is forced with <N> cookies
1014 in table fields. Such tables will look correct only after the first re-align.
1015 This can also be configured on a per-file basis by adding one of
1016 the following lines anywhere in the buffer:
1017 #+STARTUP: align
1018 #+STARTUP: noalign"
1019 :group 'org-startup
1020 :type 'boolean)
1022 (defcustom org-startup-with-inline-images nil
1023 "Non-nil means show inline images when loading a new Org file.
1024 This can also be configured on a per-file basis by adding one of
1025 the following lines anywhere in the buffer:
1026 #+STARTUP: inlineimages
1027 #+STARTUP: noinlineimages"
1028 :group 'org-startup
1029 :version "24.1"
1030 :type 'boolean)
1032 (defcustom org-startup-with-latex-preview nil
1033 "Non-nil means preview LaTeX fragments when loading a new Org file.
1035 This can also be configured on a per-file basis by adding one of
1036 the following lines anywhere in the buffer:
1037 #+STARTUP: latexpreview
1038 #+STARTUP: nolatexpreview"
1039 :group 'org-startup
1040 :version "24.4"
1041 :package-version '(Org . "8.0")
1042 :type 'boolean)
1044 (defcustom org-insert-mode-line-in-empty-file nil
1045 "Non-nil means insert the first line setting Org-mode in empty files.
1046 When the function `org-mode' is called interactively in an empty file, this
1047 normally means that the file name does not automatically trigger Org-mode.
1048 To ensure that the file will always be in Org-mode in the future, a
1049 line enforcing Org-mode will be inserted into the buffer, if this option
1050 has been set."
1051 :group 'org-startup
1052 :type 'boolean)
1054 (defcustom org-replace-disputed-keys nil
1055 "Non-nil means use alternative key bindings for some keys.
1056 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1057 These keys are also used by other packages like shift-selection-mode'
1058 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1059 If you want to use Org-mode together with one of these other modes,
1060 or more generally if you would like to move some Org-mode commands to
1061 other keys, set this variable and configure the keys with the variable
1062 `org-disputed-keys'.
1064 This option is only relevant at load-time of Org-mode, and must be set
1065 *before* org.el is loaded. Changing it requires a restart of Emacs to
1066 become effective."
1067 :group 'org-startup
1068 :type 'boolean)
1070 (defcustom org-use-extra-keys nil
1071 "Non-nil means use extra key sequence definitions for certain commands.
1072 This happens automatically if you run XEmacs or if `window-system'
1073 is nil. This variable lets you do the same manually. You must
1074 set it before loading org.
1076 Example: on Carbon Emacs 22 running graphically, with an external
1077 keyboard on a Powerbook, the default way of setting M-left might
1078 not work for either Alt or ESC. Setting this variable will make
1079 it work for ESC."
1080 :group 'org-startup
1081 :type 'boolean)
1083 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1085 (defcustom org-disputed-keys
1086 '(([(shift up)] . [(meta p)])
1087 ([(shift down)] . [(meta n)])
1088 ([(shift left)] . [(meta -)])
1089 ([(shift right)] . [(meta +)])
1090 ([(control shift right)] . [(meta shift +)])
1091 ([(control shift left)] . [(meta shift -)]))
1092 "Keys for which Org-mode and other modes compete.
1093 This is an alist, cars are the default keys, second element specifies
1094 the alternative to use when `org-replace-disputed-keys' is t.
1096 Keys can be specified in any syntax supported by `define-key'.
1097 The value of this option takes effect only at Org-mode's startup,
1098 therefore you'll have to restart Emacs to apply it after changing."
1099 :group 'org-startup
1100 :type 'alist)
1102 (defun org-key (key)
1103 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1104 Or return the original if not disputed.
1105 Also apply the translations defined in `org-xemacs-key-equivalents'."
1106 (when org-replace-disputed-keys
1107 (let* ((nkey (key-description key))
1108 (x (org-find-if (lambda (x)
1109 (equal (key-description (car x)) nkey))
1110 org-disputed-keys)))
1111 (setq key (if x (cdr x) key))))
1112 (when (featurep 'xemacs)
1113 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1114 key)
1116 (defun org-find-if (predicate seq)
1117 (catch 'exit
1118 (while seq
1119 (if (funcall predicate (car seq))
1120 (throw 'exit (car seq))
1121 (pop seq)))))
1123 (defun org-defkey (keymap key def)
1124 "Define a key, possibly translated, as returned by `org-key'."
1125 (define-key keymap (org-key key) def))
1127 (defcustom org-ellipsis nil
1128 "The ellipsis to use in the Org-mode outline.
1129 When nil, just use the standard three dots.
1130 When a string, use that string instead.
1131 When a face, use the standard 3 dots, but with the specified face.
1132 The change affects only Org-mode (which will then use its own display table).
1133 Changing this requires executing \\[org-mode] in a buffer to become
1134 effective."
1135 :group 'org-startup
1136 :type '(choice (const :tag "Default" nil)
1137 (face :tag "Face" :value org-warning)
1138 (string :tag "String" :value "...#")))
1140 (defvar org-display-table nil
1141 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1143 (defgroup org-keywords nil
1144 "Keywords in Org-mode."
1145 :tag "Org Keywords"
1146 :group 'org)
1148 (defcustom org-closed-keep-when-no-todo nil
1149 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1150 :group 'org-todo
1151 :group 'org-keywords
1152 :version "24.4"
1153 :package-version '(Org . "8.0")
1154 :type 'boolean)
1156 (defgroup org-structure nil
1157 "Options concerning the general structure of Org-mode files."
1158 :tag "Org Structure"
1159 :group 'org)
1161 (defgroup org-reveal-location nil
1162 "Options about how to make context of a location visible."
1163 :tag "Org Reveal Location"
1164 :group 'org-structure)
1166 (defconst org-context-choice
1167 '(choice
1168 (const :tag "Always" t)
1169 (const :tag "Never" nil)
1170 (repeat :greedy t :tag "Individual contexts"
1171 (cons
1172 (choice :tag "Context"
1173 (const agenda)
1174 (const org-goto)
1175 (const occur-tree)
1176 (const tags-tree)
1177 (const link-search)
1178 (const mark-goto)
1179 (const bookmark-jump)
1180 (const isearch)
1181 (const default))
1182 (boolean))))
1183 "Contexts for the reveal options.")
1185 (defcustom org-show-hierarchy-above '((default . t))
1186 "Non-nil means show full hierarchy when revealing a location.
1187 Org-mode often shows locations in an org-mode file which might have
1188 been invisible before. When this is set, the hierarchy of headings
1189 above the exposed location is shown.
1190 Turning this off for example for sparse trees makes them very compact.
1191 Instead of t, this can also be an alist specifying this option for different
1192 contexts. Valid contexts are
1193 agenda when exposing an entry from the agenda
1194 org-goto when using the command `org-goto' on key C-c C-j
1195 occur-tree when using the command `org-occur' on key C-c /
1196 tags-tree when constructing a sparse tree based on tags matches
1197 link-search when exposing search matches associated with a link
1198 mark-goto when exposing the jump goal of a mark
1199 bookmark-jump when exposing a bookmark location
1200 isearch when exiting from an incremental search
1201 default default for all contexts not set explicitly"
1202 :group 'org-reveal-location
1203 :type org-context-choice)
1205 (defcustom org-show-following-heading '((default . nil))
1206 "Non-nil means show following heading when revealing a location.
1207 Org-mode often shows locations in an org-mode file which might have
1208 been invisible before. When this is set, the heading following the
1209 match is shown.
1210 Turning this off for example for sparse trees makes them very compact,
1211 but makes it harder to edit the location of the match. In such a case,
1212 use the command \\[org-reveal] to show more context.
1213 Instead of t, this can also be an alist specifying this option for different
1214 contexts. See `org-show-hierarchy-above' for valid contexts."
1215 :group 'org-reveal-location
1216 :type org-context-choice)
1218 (defcustom org-show-siblings '((default . nil) (isearch t) (bookmark-jump t))
1219 "Non-nil means show all sibling heading when revealing a location.
1220 Org-mode often shows locations in an org-mode file which might have
1221 been invisible before. When this is set, the sibling of the current entry
1222 heading are all made visible. If `org-show-hierarchy-above' is t,
1223 the same happens on each level of the hierarchy above the current entry.
1225 By default this is on for the isearch context, off for all other contexts.
1226 Turning this off for example for sparse trees makes them very compact,
1227 but makes it harder to edit the location of the match. In such a case,
1228 use the command \\[org-reveal] to show more context.
1229 Instead of t, this can also be an alist specifying this option for different
1230 contexts. See `org-show-hierarchy-above' for valid contexts."
1231 :group 'org-reveal-location
1232 :type org-context-choice
1233 :version "24.4"
1234 :package-version '(Org . "8.0"))
1236 (defcustom org-show-entry-below '((default . nil))
1237 "Non-nil means show the entry below a headline when revealing a location.
1238 Org-mode often shows locations in an org-mode file which might have
1239 been invisible before. When this is set, the text below the headline that is
1240 exposed is also shown.
1242 By default this is off for all contexts.
1243 Instead of t, this can also be an alist specifying this option for different
1244 contexts. See `org-show-hierarchy-above' for valid contexts."
1245 :group 'org-reveal-location
1246 :type org-context-choice)
1248 (defcustom org-indirect-buffer-display 'other-window
1249 "How should indirect tree buffers be displayed?
1250 This applies to indirect buffers created with the commands
1251 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1252 Valid values are:
1253 current-window Display in the current window
1254 other-window Just display in another window.
1255 dedicated-frame Create one new frame, and re-use it each time.
1256 new-frame Make a new frame each time. Note that in this case
1257 previously-made indirect buffers are kept, and you need to
1258 kill these buffers yourself."
1259 :group 'org-structure
1260 :group 'org-agenda-windows
1261 :type '(choice
1262 (const :tag "In current window" current-window)
1263 (const :tag "In current frame, other window" other-window)
1264 (const :tag "Each time a new frame" new-frame)
1265 (const :tag "One dedicated frame" dedicated-frame)))
1267 (defcustom org-use-speed-commands nil
1268 "Non-nil means activate single letter commands at beginning of a headline.
1269 This may also be a function to test for appropriate locations where speed
1270 commands should be active.
1272 For example, to activate speed commands when the point is on any
1273 star at the beginning of the headline, you can do this:
1275 (setq org-use-speed-commands
1276 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1277 :group 'org-structure
1278 :type '(choice
1279 (const :tag "Never" nil)
1280 (const :tag "At beginning of headline stars" t)
1281 (function)))
1283 (defcustom org-speed-commands-user nil
1284 "Alist of additional speed commands.
1285 This list will be checked before `org-speed-commands-default'
1286 when the variable `org-use-speed-commands' is non-nil
1287 and when the cursor is at the beginning of a headline.
1288 The car if each entry is a string with a single letter, which must
1289 be assigned to `self-insert-command' in the global map.
1290 The cdr is either a command to be called interactively, a function
1291 to be called, or a form to be evaluated.
1292 An entry that is just a list with a single string will be interpreted
1293 as a descriptive headline that will be added when listing the speed
1294 commands in the Help buffer using the `?' speed command."
1295 :group 'org-structure
1296 :type '(repeat :value ("k" . ignore)
1297 (choice :value ("k" . ignore)
1298 (list :tag "Descriptive Headline" (string :tag "Headline"))
1299 (cons :tag "Letter and Command"
1300 (string :tag "Command letter")
1301 (choice
1302 (function)
1303 (sexp))))))
1305 (defcustom org-bookmark-names-plist
1306 '(:last-capture "org-capture-last-stored"
1307 :last-refile "org-refile-last-stored"
1308 :last-capture-marker "org-capture-last-stored-marker")
1309 "Names for bookmarks automatically set by some Org commands.
1310 This can provide strings as names for a number of bookmarks Org sets
1311 automatically. The following keys are currently implemented:
1312 :last-capture
1313 :last-capture-marker
1314 :last-refile
1315 When a key does not show up in the property list, the corresponding bookmark
1316 is not set."
1317 :group 'org-structure
1318 :type 'plist)
1320 (defgroup org-cycle nil
1321 "Options concerning visibility cycling in Org-mode."
1322 :tag "Org Cycle"
1323 :group 'org-structure)
1325 (defcustom org-cycle-skip-children-state-if-no-children t
1326 "Non-nil means skip CHILDREN state in entries that don't have any."
1327 :group 'org-cycle
1328 :type 'boolean)
1330 (defcustom org-cycle-max-level nil
1331 "Maximum level which should still be subject to visibility cycling.
1332 Levels higher than this will, for cycling, be treated as text, not a headline.
1333 When `org-odd-levels-only' is set, a value of N in this variable actually
1334 means 2N-1 stars as the limiting headline.
1335 When nil, cycle all levels.
1336 Note that the limiting level of cycling is also influenced by
1337 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1338 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1339 than its value."
1340 :group 'org-cycle
1341 :type '(choice
1342 (const :tag "No limit" nil)
1343 (integer :tag "Maximum level")))
1345 (defcustom org-hide-block-startup nil
1346 "Non-nil means entering Org-mode will fold all blocks.
1347 This can also be set in on a per-file basis with
1349 #+STARTUP: hideblocks
1350 #+STARTUP: showblocks"
1351 :group 'org-startup
1352 :group 'org-cycle
1353 :type 'boolean)
1355 (defcustom org-cycle-global-at-bob nil
1356 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1357 This makes it possible to do global cycling without having to use S-TAB or
1358 \\[universal-argument] TAB. For this special case to work, the first line
1359 of the buffer must not be a headline -- it may be empty or some other text.
1360 When used in this way, `org-cycle-hook' is disabled temporarily to make
1361 sure the cursor stays at the beginning of the buffer. When this option is
1362 nil, don't do anything special at the beginning of the buffer."
1363 :group 'org-cycle
1364 :type 'boolean)
1366 (defcustom org-cycle-level-after-item/entry-creation t
1367 "Non-nil means cycle entry level or item indentation in new empty entries.
1369 When the cursor is at the end of an empty headline, i.e., with only stars
1370 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1371 and then all possible ancestor states, before returning to the original state.
1372 This makes data entry extremely fast: M-RET to create a new headline,
1373 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1375 When the cursor is at the end of an empty plain list item, one TAB will
1376 make it a subitem, two or more tabs will back up to make this an item
1377 higher up in the item hierarchy."
1378 :group 'org-cycle
1379 :type 'boolean)
1381 (defcustom org-cycle-emulate-tab t
1382 "Where should `org-cycle' emulate TAB.
1383 nil Never
1384 white Only in completely white lines
1385 whitestart Only at the beginning of lines, before the first non-white char
1386 t Everywhere except in headlines
1387 exc-hl-bol Everywhere except at the start of a headline
1388 If TAB is used in a place where it does not emulate TAB, the current subtree
1389 visibility is cycled."
1390 :group 'org-cycle
1391 :type '(choice (const :tag "Never" nil)
1392 (const :tag "Only in completely white lines" white)
1393 (const :tag "Before first char in a line" whitestart)
1394 (const :tag "Everywhere except in headlines" t)
1395 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1397 (defcustom org-cycle-separator-lines 2
1398 "Number of empty lines needed to keep an empty line between collapsed trees.
1399 If you leave an empty line between the end of a subtree and the following
1400 headline, this empty line is hidden when the subtree is folded.
1401 Org-mode will leave (exactly) one empty line visible if the number of
1402 empty lines is equal or larger to the number given in this variable.
1403 So the default 2 means at least 2 empty lines after the end of a subtree
1404 are needed to produce free space between a collapsed subtree and the
1405 following headline.
1407 If the number is negative, and the number of empty lines is at least -N,
1408 all empty lines are shown.
1410 Special case: when 0, never leave empty lines in collapsed view."
1411 :group 'org-cycle
1412 :type 'integer)
1413 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1415 (defcustom org-pre-cycle-hook nil
1416 "Hook that is run before visibility cycling is happening.
1417 The function(s) in this hook must accept a single argument which indicates
1418 the new state that will be set right after running this hook. The
1419 argument is a symbol. Before a global state change, it can have the values
1420 `overview', `content', or `all'. Before a local state change, it can have
1421 the values `folded', `children', or `subtree'."
1422 :group 'org-cycle
1423 :type 'hook)
1425 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1426 org-cycle-hide-drawers
1427 org-cycle-hide-inline-tasks
1428 org-cycle-show-empty-lines
1429 org-optimize-window-after-visibility-change)
1430 "Hook that is run after `org-cycle' has changed the buffer visibility.
1431 The function(s) in this hook must accept a single argument which indicates
1432 the new state that was set by the most recent `org-cycle' command. The
1433 argument is a symbol. After a global state change, it can have the values
1434 `overview', `contents', or `all'. After a local state change, it can have
1435 the values `folded', `children', or `subtree'."
1436 :group 'org-cycle
1437 :type 'hook)
1439 (defgroup org-edit-structure nil
1440 "Options concerning structure editing in Org-mode."
1441 :tag "Org Edit Structure"
1442 :group 'org-structure)
1444 (defcustom org-odd-levels-only nil
1445 "Non-nil means skip even levels and only use odd levels for the outline.
1446 This has the effect that two stars are being added/taken away in
1447 promotion/demotion commands. It also influences how levels are
1448 handled by the exporters.
1449 Changing it requires restart of `font-lock-mode' to become effective
1450 for fontification also in regions already fontified.
1451 You may also set this on a per-file basis by adding one of the following
1452 lines to the buffer:
1454 #+STARTUP: odd
1455 #+STARTUP: oddeven"
1456 :group 'org-edit-structure
1457 :group 'org-appearance
1458 :type 'boolean)
1460 (defcustom org-adapt-indentation t
1461 "Non-nil means adapt indentation to outline node level.
1463 When this variable is set, Org assumes that you write outlines by
1464 indenting text in each node to align with the headline (after the stars).
1465 The following issues are influenced by this variable:
1467 - When this is set and the *entire* text in an entry is indented, the
1468 indentation is increased by one space in a demotion command, and
1469 decreased by one in a promotion command. If any line in the entry
1470 body starts with text at column 0, indentation is not changed at all.
1472 - Property drawers and planning information is inserted indented when
1473 this variable is set. When nil, they will not be indented.
1475 - TAB indents a line relative to context. The lines below a headline
1476 will be indented when this variable is set.
1478 Note that this is all about true indentation, by adding and removing
1479 space characters. See also `org-indent.el' which does level-dependent
1480 indentation in a virtual way, i.e. at display time in Emacs."
1481 :group 'org-edit-structure
1482 :type 'boolean)
1484 (defcustom org-special-ctrl-a/e nil
1485 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1487 When t, `C-a' will bring back the cursor to the beginning of the
1488 headline text, i.e. after the stars and after a possible TODO
1489 keyword. In an item, this will be the position after bullet and
1490 check-box, if any. When the cursor is already at that position,
1491 another `C-a' will bring it to the beginning of the line.
1493 `C-e' will jump to the end of the headline, ignoring the presence
1494 of tags in the headline. A second `C-e' will then jump to the
1495 true end of the line, after any tags. This also means that, when
1496 this variable is non-nil, `C-e' also will never jump beyond the
1497 end of the heading of a folded section, i.e. not after the
1498 ellipses.
1500 When set to the symbol `reversed', the first `C-a' or `C-e' works
1501 normally, going to the true line boundary first. Only a directly
1502 following, identical keypress will bring the cursor to the
1503 special positions.
1505 This may also be a cons cell where the behavior for `C-a' and
1506 `C-e' is set separately."
1507 :group 'org-edit-structure
1508 :type '(choice
1509 (const :tag "off" nil)
1510 (const :tag "on: after stars/bullet and before tags first" t)
1511 (const :tag "reversed: true line boundary first" reversed)
1512 (cons :tag "Set C-a and C-e separately"
1513 (choice :tag "Special C-a"
1514 (const :tag "off" nil)
1515 (const :tag "on: after stars/bullet first" t)
1516 (const :tag "reversed: before stars/bullet first" reversed))
1517 (choice :tag "Special C-e"
1518 (const :tag "off" nil)
1519 (const :tag "on: before tags first" t)
1520 (const :tag "reversed: after tags first" reversed)))))
1521 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1523 (defcustom org-special-ctrl-k nil
1524 "Non-nil means `C-k' will behave specially in headlines.
1525 When nil, `C-k' will call the default `kill-line' command.
1526 When t, the following will happen while the cursor is in the headline:
1528 - When the cursor is at the beginning of a headline, kill the entire
1529 line and possible the folded subtree below the line.
1530 - When in the middle of the headline text, kill the headline up to the tags.
1531 - When after the headline text, kill the tags."
1532 :group 'org-edit-structure
1533 :type 'boolean)
1535 (defcustom org-ctrl-k-protect-subtree nil
1536 "Non-nil means, do not delete a hidden subtree with C-k.
1537 When set to the symbol `error', simply throw an error when C-k is
1538 used to kill (part-of) a headline that has hidden text behind it.
1539 Any other non-nil value will result in a query to the user, if it is
1540 OK to kill that hidden subtree. When nil, kill without remorse."
1541 :group 'org-edit-structure
1542 :version "24.1"
1543 :type '(choice
1544 (const :tag "Do not protect hidden subtrees" nil)
1545 (const :tag "Protect hidden subtrees with a security query" t)
1546 (const :tag "Never kill a hidden subtree with C-k" error)))
1548 (defcustom org-special-ctrl-o t
1549 "Non-nil means, make `C-o' insert a row in tables."
1550 :group 'org-edit-structure
1551 :type 'boolean)
1553 (defcustom org-catch-invisible-edits nil
1554 "Check if in invisible region before inserting or deleting a character.
1555 Valid values are:
1557 nil Do not check, so just do invisible edits.
1558 error Throw an error and do nothing.
1559 show Make point visible, and do the requested edit.
1560 show-and-error Make point visible, then throw an error and abort the edit.
1561 smart Make point visible, and do insertion/deletion if it is
1562 adjacent to visible text and the change feels predictable.
1563 Never delete a previously invisible character or add in the
1564 middle or right after an invisible region. Basically, this
1565 allows insertion and backward-delete right before ellipses.
1566 FIXME: maybe in this case we should not even show?"
1567 :group 'org-edit-structure
1568 :version "24.1"
1569 :type '(choice
1570 (const :tag "Do not check" nil)
1571 (const :tag "Throw error when trying to edit" error)
1572 (const :tag "Unhide, but do not do the edit" show-and-error)
1573 (const :tag "Show invisible part and do the edit" show)
1574 (const :tag "Be smart and do the right thing" smart)))
1576 (defcustom org-yank-folded-subtrees t
1577 "Non-nil means when yanking subtrees, fold them.
1578 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1579 it starts with a heading and all other headings in it are either children
1580 or siblings, then fold all the subtrees. However, do this only if no
1581 text after the yank would be swallowed into a folded tree by this action."
1582 :group 'org-edit-structure
1583 :type 'boolean)
1585 (defcustom org-yank-adjusted-subtrees nil
1586 "Non-nil means when yanking subtrees, adjust the level.
1587 With this setting, `org-paste-subtree' is used to insert the subtree, see
1588 this function for details."
1589 :group 'org-edit-structure
1590 :type 'boolean)
1592 (defcustom org-M-RET-may-split-line '((default . t))
1593 "Non-nil means M-RET will split the line at the cursor position.
1594 When nil, it will go to the end of the line before making a
1595 new line.
1596 You may also set this option in a different way for different
1597 contexts. Valid contexts are:
1599 headline when creating a new headline
1600 item when creating a new item
1601 table in a table field
1602 default the value to be used for all contexts not explicitly
1603 customized"
1604 :group 'org-structure
1605 :group 'org-table
1606 :type '(choice
1607 (const :tag "Always" t)
1608 (const :tag "Never" nil)
1609 (repeat :greedy t :tag "Individual contexts"
1610 (cons
1611 (choice :tag "Context"
1612 (const headline)
1613 (const item)
1614 (const table)
1615 (const default))
1616 (boolean)))))
1619 (defcustom org-insert-heading-respect-content nil
1620 "Non-nil means insert new headings after the current subtree.
1621 When nil, the new heading is created directly after the current line.
1622 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1623 this variable on for the duration of the command."
1624 :group 'org-structure
1625 :type 'boolean)
1627 (defcustom org-blank-before-new-entry '((heading . auto)
1628 (plain-list-item . auto))
1629 "Should `org-insert-heading' leave a blank line before new heading/item?
1630 The value is an alist, with `heading' and `plain-list-item' as CAR,
1631 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1632 which case Org will look at the surrounding headings/items and try to
1633 make an intelligent decision whether to insert a blank line or not.
1635 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1636 the setting here is ignored and no empty line is inserted to avoid breaking
1637 the list structure."
1638 :group 'org-edit-structure
1639 :type '(list
1640 (cons (const heading)
1641 (choice (const :tag "Never" nil)
1642 (const :tag "Always" t)
1643 (const :tag "Auto" auto)))
1644 (cons (const plain-list-item)
1645 (choice (const :tag "Never" nil)
1646 (const :tag "Always" t)
1647 (const :tag "Auto" auto)))))
1649 (defcustom org-insert-heading-hook nil
1650 "Hook being run after inserting a new heading."
1651 :group 'org-edit-structure
1652 :type 'hook)
1654 (defcustom org-enable-fixed-width-editor t
1655 "Non-nil means lines starting with \":\" are treated as fixed-width.
1656 This currently only means they are never auto-wrapped.
1657 When nil, such lines will be treated like ordinary lines."
1658 :group 'org-edit-structure
1659 :type 'boolean)
1661 (defcustom org-goto-auto-isearch t
1662 "Non-nil means typing characters in `org-goto' starts incremental search.
1663 When nil, you can use these keybindings to navigate the buffer:
1665 q Quit the org-goto interface
1666 n Go to the next visible heading
1667 p Go to the previous visible heading
1668 f Go one heading forward on same level
1669 b Go one heading backward on same level
1670 u Go one heading up"
1671 :group 'org-edit-structure
1672 :type 'boolean)
1674 (defgroup org-sparse-trees nil
1675 "Options concerning sparse trees in Org-mode."
1676 :tag "Org Sparse Trees"
1677 :group 'org-structure)
1679 (defcustom org-highlight-sparse-tree-matches t
1680 "Non-nil means highlight all matches that define a sparse tree.
1681 The highlights will automatically disappear the next time the buffer is
1682 changed by an edit command."
1683 :group 'org-sparse-trees
1684 :type 'boolean)
1686 (defcustom org-remove-highlights-with-change t
1687 "Non-nil means any change to the buffer will remove temporary highlights.
1688 Such highlights are created by `org-occur' and `org-clock-display'.
1689 When nil, `C-c C-c' needs to be used to get rid of the highlights.
1690 The highlights created by `org-toggle-latex-fragment' always need
1691 `C-c C-x C-l' to be removed."
1692 :group 'org-sparse-trees
1693 :group 'org-time
1694 :type 'boolean)
1697 (defcustom org-occur-hook '(org-first-headline-recenter)
1698 "Hook that is run after `org-occur' has constructed a sparse tree.
1699 This can be used to recenter the window to show as much of the structure
1700 as possible."
1701 :group 'org-sparse-trees
1702 :type 'hook)
1704 (defgroup org-imenu-and-speedbar nil
1705 "Options concerning imenu and speedbar in Org-mode."
1706 :tag "Org Imenu and Speedbar"
1707 :group 'org-structure)
1709 (defcustom org-imenu-depth 2
1710 "The maximum level for Imenu access to Org-mode headlines.
1711 This also applied for speedbar access."
1712 :group 'org-imenu-and-speedbar
1713 :type 'integer)
1715 (defgroup org-table nil
1716 "Options concerning tables in Org-mode."
1717 :tag "Org Table"
1718 :group 'org)
1720 (defcustom org-enable-table-editor 'optimized
1721 "Non-nil means lines starting with \"|\" are handled by the table editor.
1722 When nil, such lines will be treated like ordinary lines.
1724 When equal to the symbol `optimized', the table editor will be optimized to
1725 do the following:
1726 - Automatic overwrite mode in front of whitespace in table fields.
1727 This makes the structure of the table stay in tact as long as the edited
1728 field does not exceed the column width.
1729 - Minimize the number of realigns. Normally, the table is aligned each time
1730 TAB or RET are pressed to move to another field. With optimization this
1731 happens only if changes to a field might have changed the column width.
1732 Optimization requires replacing the functions `self-insert-command',
1733 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1734 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1735 very good at guessing when a re-align will be necessary, but you can always
1736 force one with \\[org-ctrl-c-ctrl-c].
1738 If you would like to use the optimized version in Org-mode, but the
1739 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1741 This variable can be used to turn on and off the table editor during a session,
1742 but in order to toggle optimization, a restart is required.
1744 See also the variable `org-table-auto-blank-field'."
1745 :group 'org-table
1746 :type '(choice
1747 (const :tag "off" nil)
1748 (const :tag "on" t)
1749 (const :tag "on, optimized" optimized)))
1751 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1752 (version<= emacs-version "24.1"))
1753 "Non-nil means cluster self-insert commands for undo when possible.
1754 If this is set, then, like in the Emacs command loop, 20 consecutive
1755 characters will be undone together.
1756 This is configurable, because there is some impact on typing performance."
1757 :group 'org-table
1758 :type 'boolean)
1760 (defcustom org-table-tab-recognizes-table.el t
1761 "Non-nil means TAB will automatically notice a table.el table.
1762 When it sees such a table, it moves point into it and - if necessary -
1763 calls `table-recognize-table'."
1764 :group 'org-table-editing
1765 :type 'boolean)
1767 (defgroup org-link nil
1768 "Options concerning links in Org-mode."
1769 :tag "Org Link"
1770 :group 'org)
1772 (defvar org-link-abbrev-alist-local nil
1773 "Buffer-local version of `org-link-abbrev-alist', which see.
1774 The value of this is taken from the #+LINK lines.")
1775 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1777 (defcustom org-link-abbrev-alist nil
1778 "Alist of link abbreviations.
1779 The car of each element is a string, to be replaced at the start of a link.
1780 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1781 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1783 [[linkkey:tag][description]]
1785 The 'linkkey' must be a word word, starting with a letter, followed
1786 by letters, numbers, '-' or '_'.
1788 If REPLACE is a string, the tag will simply be appended to create the link.
1789 If the string contains \"%s\", the tag will be inserted there. If the string
1790 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1791 at that point (see the function `url-hexify-string'). If the string contains
1792 the specifier \"%(my-function)\", then the custom function `my-function' will
1793 be invoked: this function takes the tag as its only argument and must return
1794 a string.
1796 REPLACE may also be a function that will be called with the tag as the
1797 only argument to create the link, which should be returned as a string.
1799 See the manual for examples."
1800 :group 'org-link
1801 :type '(repeat
1802 (cons
1803 (string :tag "Protocol")
1804 (choice
1805 (string :tag "Format")
1806 (function)))))
1808 (defcustom org-descriptive-links t
1809 "Non-nil means Org will display descriptive links.
1810 E.g. [[http://orgmode.org][Org website]] will be displayed as
1811 \"Org Website\", hiding the link itself and just displaying its
1812 description. When set to `nil', Org will display the full links
1813 literally.
1815 You can interactively set the value of this variable by calling
1816 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1817 :group 'org-link
1818 :type 'boolean)
1820 (defcustom org-link-file-path-type 'adaptive
1821 "How the path name in file links should be stored.
1822 Valid values are:
1824 relative Relative to the current directory, i.e. the directory of the file
1825 into which the link is being inserted.
1826 absolute Absolute path, if possible with ~ for home directory.
1827 noabbrev Absolute path, no abbreviation of home directory.
1828 adaptive Use relative path for files in the current directory and sub-
1829 directories of it. For other files, use an absolute path."
1830 :group 'org-link
1831 :type '(choice
1832 (const relative)
1833 (const absolute)
1834 (const noabbrev)
1835 (const adaptive)))
1837 (defvaralias 'org-activate-links 'org-highlight-links)
1838 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1839 "Types of links that should be highlighted in Org-mode files.
1841 This is a list of symbols, each one of them leading to the
1842 highlighting of a certain link type.
1844 You can still open links that are not highlighted.
1846 In principle, it does not hurt to turn on highlighting for all
1847 link types. There may be a small gain when turning off unused
1848 link types. The types are:
1850 bracket The recommended [[link][description]] or [[link]] links with hiding.
1851 angle Links in angular brackets that may contain whitespace like
1852 <bbdb:Carsten Dominik>.
1853 plain Plain links in normal text, no whitespace, like http://google.com.
1854 radio Text that is matched by a radio target, see manual for details.
1855 tag Tag settings in a headline (link to tag search).
1856 date Time stamps (link to calendar).
1857 footnote Footnote labels.
1859 If you set this variable during an Emacs session, use `org-mode-restart'
1860 in the Org buffer so that the change takes effect."
1861 :group 'org-link
1862 :group 'org-appearance
1863 :type '(set :greedy t
1864 (const :tag "Double bracket links" bracket)
1865 (const :tag "Angular bracket links" angle)
1866 (const :tag "Plain text links" plain)
1867 (const :tag "Radio target matches" radio)
1868 (const :tag "Tags" tag)
1869 (const :tag "Timestamps" date)
1870 (const :tag "Footnotes" footnote)))
1872 (defcustom org-make-link-description-function nil
1873 "Function to use for generating link descriptions from links.
1874 When nil, the link location will be used. This function must take
1875 two parameters: the first one is the link, the second one is the
1876 description generated by `org-insert-link'. The function should
1877 return the description to use."
1878 :group 'org-link
1879 :type '(choice (const nil) (function)))
1881 (defgroup org-link-store nil
1882 "Options concerning storing links in Org-mode."
1883 :tag "Org Store Link"
1884 :group 'org-link)
1886 (defcustom org-url-hexify-p t
1887 "When non-nil, hexify URL when creating a link."
1888 :type 'boolean
1889 :version "24.3"
1890 :group 'org-link-store)
1892 (defcustom org-email-link-description-format "Email %c: %.30s"
1893 "Format of the description part of a link to an email or usenet message.
1894 The following %-escapes will be replaced by corresponding information:
1896 %F full \"From\" field
1897 %f name, taken from \"From\" field, address if no name
1898 %T full \"To\" field
1899 %t first name in \"To\" field, address if no name
1900 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1901 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1902 %s subject
1903 %d date
1904 %m message-id.
1906 You may use normal field width specification between the % and the letter.
1907 This is for example useful to limit the length of the subject.
1909 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1910 :group 'org-link-store
1911 :type 'string)
1913 (defcustom org-from-is-user-regexp
1914 (let (r1 r2)
1915 (when (and user-mail-address (not (string= user-mail-address "")))
1916 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1917 (when (and user-full-name (not (string= user-full-name "")))
1918 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1919 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1920 "Regexp matched against the \"From:\" header of an email or usenet message.
1921 It should match if the message is from the user him/herself."
1922 :group 'org-link-store
1923 :type 'regexp)
1925 (defcustom org-context-in-file-links t
1926 "Non-nil means file links from `org-store-link' contain context.
1927 A search string will be added to the file name with :: as separator and
1928 used to find the context when the link is activated by the command
1929 `org-open-at-point'. When this option is t, the entire active region
1930 will be placed in the search string of the file link. If set to a
1931 positive integer, only the first n lines of context will be stored.
1933 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1934 negates this setting for the duration of the command."
1935 :group 'org-link-store
1936 :type '(choice boolean integer))
1938 (defcustom org-keep-stored-link-after-insertion nil
1939 "Non-nil means keep link in list for entire session.
1941 The command `org-store-link' adds a link pointing to the current
1942 location to an internal list. These links accumulate during a session.
1943 The command `org-insert-link' can be used to insert links into any
1944 Org-mode file (offering completion for all stored links). When this
1945 option is nil, every link which has been inserted once using \\[org-insert-link]
1946 will be removed from the list, to make completing the unused links
1947 more efficient."
1948 :group 'org-link-store
1949 :type 'boolean)
1951 (defgroup org-link-follow nil
1952 "Options concerning following links in Org-mode."
1953 :tag "Org Follow Link"
1954 :group 'org-link)
1956 (defcustom org-link-translation-function nil
1957 "Function to translate links with different syntax to Org syntax.
1958 This can be used to translate links created for example by the Planner
1959 or emacs-wiki packages to Org syntax.
1960 The function must accept two parameters, a TYPE containing the link
1961 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1962 which is everything after the link protocol. It should return a cons
1963 with possibly modified values of type and path.
1964 Org contains a function for this, so if you set this variable to
1965 `org-translate-link-from-planner', you should be able follow many
1966 links created by planner."
1967 :group 'org-link-follow
1968 :type '(choice (const nil) (function)))
1970 (defcustom org-follow-link-hook nil
1971 "Hook that is run after a link has been followed."
1972 :group 'org-link-follow
1973 :type 'hook)
1975 (defcustom org-tab-follows-link nil
1976 "Non-nil means on links TAB will follow the link.
1977 Needs to be set before org.el is loaded.
1978 This really should not be used, it does not make sense, and the
1979 implementation is bad."
1980 :group 'org-link-follow
1981 :type 'boolean)
1983 (defcustom org-return-follows-link nil
1984 "Non-nil means on links RET will follow the link.
1985 In tables, the special behavior of RET has precedence."
1986 :group 'org-link-follow
1987 :type 'boolean)
1989 (defcustom org-mouse-1-follows-link
1990 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1991 "Non-nil means mouse-1 on a link will follow the link.
1992 A longer mouse click will still set point. Does not work on XEmacs.
1993 Needs to be set before org.el is loaded."
1994 :group 'org-link-follow
1995 :version "24.4"
1996 :package-version '(Org . "8.3")
1997 :type '(choice
1998 (const :tag "A double click follows the link" double)
1999 (const :tag "Unconditionally follow the link with mouse-1" t)
2000 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2002 (defcustom org-mark-ring-length 4
2003 "Number of different positions to be recorded in the ring.
2004 Changing this requires a restart of Emacs to work correctly."
2005 :group 'org-link-follow
2006 :type 'integer)
2008 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2009 "Non-nil means internal links in Org files must exactly match a headline.
2010 When nil, the link search tries to match a phrase with all words
2011 in the search text."
2012 :group 'org-link-follow
2013 :version "24.1"
2014 :type '(choice
2015 (const :tag "Use fuzzy text search" nil)
2016 (const :tag "Match only exact headline" t)
2017 (const :tag "Match exact headline or query to create it"
2018 query-to-create)))
2020 (defcustom org-link-frame-setup
2021 '((vm . vm-visit-folder-other-frame)
2022 (vm-imap . vm-visit-imap-folder-other-frame)
2023 (gnus . org-gnus-no-new-news)
2024 (file . find-file-other-window)
2025 (wl . wl-other-frame))
2026 "Setup the frame configuration for following links.
2027 When following a link with Emacs, it may often be useful to display
2028 this link in another window or frame. This variable can be used to
2029 set this up for the different types of links.
2030 For VM, use any of
2031 `vm-visit-folder'
2032 `vm-visit-folder-other-window'
2033 `vm-visit-folder-other-frame'
2034 For Gnus, use any of
2035 `gnus'
2036 `gnus-other-frame'
2037 `org-gnus-no-new-news'
2038 For FILE, use any of
2039 `find-file'
2040 `find-file-other-window'
2041 `find-file-other-frame'
2042 For Wanderlust use any of
2043 `wl'
2044 `wl-other-frame'
2045 For the calendar, use the variable `calendar-setup'.
2046 For BBDB, it is currently only possible to display the matches in
2047 another window."
2048 :group 'org-link-follow
2049 :type '(list
2050 (cons (const vm)
2051 (choice
2052 (const vm-visit-folder)
2053 (const vm-visit-folder-other-window)
2054 (const vm-visit-folder-other-frame)))
2055 (cons (const vm-imap)
2056 (choice
2057 (const vm-visit-imap-folder)
2058 (const vm-visit-imap-folder-other-window)
2059 (const vm-visit-imap-folder-other-frame)))
2060 (cons (const gnus)
2061 (choice
2062 (const gnus)
2063 (const gnus-other-frame)
2064 (const org-gnus-no-new-news)))
2065 (cons (const file)
2066 (choice
2067 (const find-file)
2068 (const find-file-other-window)
2069 (const find-file-other-frame)))
2070 (cons (const wl)
2071 (choice
2072 (const wl)
2073 (const wl-other-frame)))))
2075 (defcustom org-display-internal-link-with-indirect-buffer nil
2076 "Non-nil means use indirect buffer to display infile links.
2077 Activating internal links (from one location in a file to another location
2078 in the same file) normally just jumps to the location. When the link is
2079 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2080 is displayed in
2081 another window. When this option is set, the other window actually displays
2082 an indirect buffer clone of the current buffer, to avoid any visibility
2083 changes to the current buffer."
2084 :group 'org-link-follow
2085 :type 'boolean)
2087 (defcustom org-open-non-existing-files nil
2088 "Non-nil means `org-open-file' will open non-existing files.
2089 When nil, an error will be generated.
2090 This variable applies only to external applications because they
2091 might choke on non-existing files. If the link is to a file that
2092 will be opened in Emacs, the variable is ignored."
2093 :group 'org-link-follow
2094 :type 'boolean)
2096 (defcustom org-open-directory-means-index-dot-org nil
2097 "Non-nil means a link to a directory really means to index.org.
2098 When nil, following a directory link will run dired or open a finder/explorer
2099 window on that directory."
2100 :group 'org-link-follow
2101 :type 'boolean)
2103 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2104 "Non-nil means ask for confirmation before executing shell links.
2105 Shell links can be dangerous: just think about a link
2107 [[shell:rm -rf ~/*][Google Search]]
2109 This link would show up in your Org-mode document as \"Google Search\",
2110 but really it would remove your entire home directory.
2111 Therefore we advise against setting this variable to nil.
2112 Just change it to `y-or-n-p' if you want to confirm with a
2113 single keystroke rather than having to type \"yes\"."
2114 :group 'org-link-follow
2115 :type '(choice
2116 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2117 (const :tag "with y-or-n (faster)" y-or-n-p)
2118 (const :tag "no confirmation (dangerous)" nil)))
2119 (put 'org-confirm-shell-link-function
2120 'safe-local-variable
2121 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2123 (defcustom org-confirm-shell-link-not-regexp ""
2124 "A regexp to skip confirmation for shell links."
2125 :group 'org-link-follow
2126 :version "24.1"
2127 :type 'regexp)
2129 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2130 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2131 Elisp links can be dangerous: just think about a link
2133 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2135 This link would show up in your Org-mode document as \"Google Search\",
2136 but really it would remove your entire home directory.
2137 Therefore we advise against setting this variable to nil.
2138 Just change it to `y-or-n-p' if you want to confirm with a
2139 single keystroke rather than having to type \"yes\"."
2140 :group 'org-link-follow
2141 :type '(choice
2142 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2143 (const :tag "with y-or-n (faster)" y-or-n-p)
2144 (const :tag "no confirmation (dangerous)" nil)))
2145 (put 'org-confirm-shell-link-function
2146 'safe-local-variable
2147 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2149 (defcustom org-confirm-elisp-link-not-regexp ""
2150 "A regexp to skip confirmation for Elisp links."
2151 :group 'org-link-follow
2152 :version "24.1"
2153 :type 'regexp)
2155 (defconst org-file-apps-defaults-gnu
2156 '((remote . emacs)
2157 (system . mailcap)
2158 (t . mailcap))
2159 "Default file applications on a UNIX or GNU/Linux system.
2160 See `org-file-apps'.")
2162 (defconst org-file-apps-defaults-macosx
2163 '((remote . emacs)
2164 (t . "open %s")
2165 (system . "open %s")
2166 ("ps.gz" . "gv %s")
2167 ("eps.gz" . "gv %s")
2168 ("dvi" . "xdvi %s")
2169 ("fig" . "xfig %s"))
2170 "Default file applications on a MacOS X system.
2171 The system \"open\" is known as a default, but we use X11 applications
2172 for some files for which the OS does not have a good default.
2173 See `org-file-apps'.")
2175 (defconst org-file-apps-defaults-windowsnt
2176 (list
2177 '(remote . emacs)
2178 (cons t
2179 (list (if (featurep 'xemacs)
2180 'mswindows-shell-execute
2181 'w32-shell-execute)
2182 "open" 'file))
2183 (cons 'system
2184 (list (if (featurep 'xemacs)
2185 'mswindows-shell-execute
2186 'w32-shell-execute)
2187 "open" 'file)))
2188 "Default file applications on a Windows NT system.
2189 The system \"open\" is used for most files.
2190 See `org-file-apps'.")
2192 (defcustom org-file-apps
2193 '((auto-mode . emacs)
2194 ("\\.mm\\'" . default)
2195 ("\\.x?html?\\'" . default)
2196 ("\\.pdf\\'" . default))
2197 "External applications for opening `file:path' items in a document.
2198 Org-mode uses system defaults for different file types, but
2199 you can use this variable to set the application for a given file
2200 extension. The entries in this list are cons cells where the car identifies
2201 files and the cdr the corresponding command. Possible values for the
2202 file identifier are
2203 \"string\" A string as a file identifier can be interpreted in different
2204 ways, depending on its contents:
2206 - Alphanumeric characters only:
2207 Match links with this file extension.
2208 Example: (\"pdf\" . \"evince %s\")
2209 to open PDFs with evince.
2211 - Regular expression: Match links where the
2212 filename matches the regexp. If you want to
2213 use groups here, use shy groups.
2215 Example: (\"\\.x?html\\'\" . \"firefox %s\")
2216 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2217 to open *.html and *.xhtml with firefox.
2219 - Regular expression which contains (non-shy) groups:
2220 Match links where the whole link, including \"::\", and
2221 anything after that, matches the regexp.
2222 In a custom command string, %1, %2, etc. are replaced with
2223 the parts of the link that were matched by the groups.
2224 For backwards compatibility, if a command string is given
2225 that does not use any of the group matches, this case is
2226 handled identically to the second one (i.e. match against
2227 file name only).
2228 In a custom lisp form, you can access the group matches with
2229 (match-string n link).
2231 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\")
2232 to open [[file:document.pdf::5]] with evince at page 5.
2234 `directory' Matches a directory
2235 `remote' Matches a remote file, accessible through tramp or efs.
2236 Remote files most likely should be visited through Emacs
2237 because external applications cannot handle such paths.
2238 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2239 so all files Emacs knows how to handle. Using this with
2240 command `emacs' will open most files in Emacs. Beware that this
2241 will also open html files inside Emacs, unless you add
2242 (\"html\" . default) to the list as well.
2243 t Default for files not matched by any of the other options.
2244 `system' The system command to open files, like `open' on Windows
2245 and Mac OS X, and mailcap under GNU/Linux. This is the command
2246 that will be selected if you call `C-c C-o' with a double
2247 \\[universal-argument] \\[universal-argument] prefix.
2249 Possible values for the command are:
2250 `emacs' The file will be visited by the current Emacs process.
2251 `default' Use the default application for this file type, which is the
2252 association for t in the list, most likely in the system-specific
2253 part.
2254 This can be used to overrule an unwanted setting in the
2255 system-specific variable.
2256 `system' Use the system command for opening files, like \"open\".
2257 This command is specified by the entry whose car is `system'.
2258 Most likely, the system-specific version of this variable
2259 does define this command, but you can overrule/replace it
2260 here.
2261 string A command to be executed by a shell; %s will be replaced
2262 by the path to the file.
2263 sexp A Lisp form which will be evaluated. The file path will
2264 be available in the Lisp variable `file'.
2265 For more examples, see the system specific constants
2266 `org-file-apps-defaults-macosx'
2267 `org-file-apps-defaults-windowsnt'
2268 `org-file-apps-defaults-gnu'."
2269 :group 'org-link-follow
2270 :type '(repeat
2271 (cons (choice :value ""
2272 (string :tag "Extension")
2273 (const :tag "System command to open files" system)
2274 (const :tag "Default for unrecognized files" t)
2275 (const :tag "Remote file" remote)
2276 (const :tag "Links to a directory" directory)
2277 (const :tag "Any files that have Emacs modes"
2278 auto-mode))
2279 (choice :value ""
2280 (const :tag "Visit with Emacs" emacs)
2281 (const :tag "Use default" default)
2282 (const :tag "Use the system command" system)
2283 (string :tag "Command")
2284 (sexp :tag "Lisp form")))))
2286 (defcustom org-doi-server-url "http://dx.doi.org/"
2287 "The URL of the DOI server."
2288 :type 'string
2289 :version "24.3"
2290 :group 'org-link-follow)
2292 (defgroup org-refile nil
2293 "Options concerning refiling entries in Org-mode."
2294 :tag "Org Refile"
2295 :group 'org)
2297 (defcustom org-directory "~/org"
2298 "Directory with org files.
2299 This is just a default location to look for Org files. There is no need
2300 at all to put your files into this directory. It is only used in the
2301 following situations:
2303 1. When a capture template specifies a target file that is not an
2304 absolute path. The path will then be interpreted relative to
2305 `org-directory'
2306 2. When a capture note is filed away in an interactive way (when exiting the
2307 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2308 with `org-directory' as the default path."
2309 :group 'org-refile
2310 :group 'org-capture
2311 :type 'directory)
2313 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2314 "Default target for storing notes.
2315 Used as a fall back file for org-capture.el, for templates that
2316 do not specify a target file."
2317 :group 'org-refile
2318 :group 'org-capture
2319 :type '(choice
2320 (const :tag "Default from remember-data-file" nil)
2321 file))
2323 (defcustom org-goto-interface 'outline
2324 "The default interface to be used for `org-goto'.
2325 Allowed values are:
2326 outline The interface shows an outline of the relevant file
2327 and the correct heading is found by moving through
2328 the outline or by searching with incremental search.
2329 outline-path-completion Headlines in the current buffer are offered via
2330 completion. This is the interface also used by
2331 the refile command."
2332 :group 'org-refile
2333 :type '(choice
2334 (const :tag "Outline" outline)
2335 (const :tag "Outline-path-completion" outline-path-completion)))
2337 (defcustom org-goto-max-level 5
2338 "Maximum target level when running `org-goto' with refile interface."
2339 :group 'org-refile
2340 :type 'integer)
2342 (defcustom org-reverse-note-order nil
2343 "Non-nil means store new notes at the beginning of a file or entry.
2344 When nil, new notes will be filed to the end of a file or entry.
2345 This can also be a list with cons cells of regular expressions that
2346 are matched against file names, and values."
2347 :group 'org-capture
2348 :group 'org-refile
2349 :type '(choice
2350 (const :tag "Reverse always" t)
2351 (const :tag "Reverse never" nil)
2352 (repeat :tag "By file name regexp"
2353 (cons regexp boolean))))
2355 (defcustom org-log-refile nil
2356 "Information to record when a task is refiled.
2358 Possible values are:
2360 nil Don't add anything
2361 time Add a time stamp to the task
2362 note Prompt for a note and add it with template `org-log-note-headings'
2364 This option can also be set with on a per-file-basis with
2366 #+STARTUP: nologrefile
2367 #+STARTUP: logrefile
2368 #+STARTUP: lognoterefile
2370 You can have local logging settings for a subtree by setting the LOGGING
2371 property to one or more of these keywords.
2373 When bulk-refiling from the agenda, the value `note' is forbidden and
2374 will temporarily be changed to `time'."
2375 :group 'org-refile
2376 :group 'org-progress
2377 :version "24.1"
2378 :type '(choice
2379 (const :tag "No logging" nil)
2380 (const :tag "Record timestamp" time)
2381 (const :tag "Record timestamp with note." note)))
2383 (defcustom org-refile-targets nil
2384 "Targets for refiling entries with \\[org-refile].
2385 This is a list of cons cells. Each cell contains:
2386 - a specification of the files to be considered, either a list of files,
2387 or a symbol whose function or variable value will be used to retrieve
2388 a file name or a list of file names. If you use `org-agenda-files' for
2389 that, all agenda files will be scanned for targets. Nil means consider
2390 headings in the current buffer.
2391 - A specification of how to find candidate refile targets. This may be
2392 any of:
2393 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2394 This tag has to be present in all target headlines, inheritance will
2395 not be considered.
2396 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2397 todo keyword.
2398 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2399 headlines that are refiling targets.
2400 - a cons cell (:level . N). Any headline of level N is considered a target.
2401 Note that, when `org-odd-levels-only' is set, level corresponds to
2402 order in hierarchy, not to the number of stars.
2403 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2404 Note that, when `org-odd-levels-only' is set, level corresponds to
2405 order in hierarchy, not to the number of stars.
2407 Each element of this list generates a set of possible targets.
2408 The union of these sets is presented (with completion) to
2409 the user by `org-refile'.
2411 You can set the variable `org-refile-target-verify-function' to a function
2412 to verify each headline found by the simple criteria above.
2414 When this variable is nil, all top-level headlines in the current buffer
2415 are used, equivalent to the value `((nil . (:level . 1))'."
2416 :group 'org-refile
2417 :type '(repeat
2418 (cons
2419 (choice :value org-agenda-files
2420 (const :tag "All agenda files" org-agenda-files)
2421 (const :tag "Current buffer" nil)
2422 (function) (variable) (file))
2423 (choice :tag "Identify target headline by"
2424 (cons :tag "Specific tag" (const :value :tag) (string))
2425 (cons :tag "TODO keyword" (const :value :todo) (string))
2426 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2427 (cons :tag "Level number" (const :value :level) (integer))
2428 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2430 (defcustom org-refile-target-verify-function nil
2431 "Function to verify if the headline at point should be a refile target.
2432 The function will be called without arguments, with point at the
2433 beginning of the headline. It should return t and leave point
2434 where it is if the headline is a valid target for refiling.
2436 If the target should not be selected, the function must return nil.
2437 In addition to this, it may move point to a place from where the search
2438 should be continued. For example, the function may decide that the entire
2439 subtree of the current entry should be excluded and move point to the end
2440 of the subtree."
2441 :group 'org-refile
2442 :type '(choice
2443 (const nil)
2444 (function)))
2446 (defcustom org-refile-use-cache nil
2447 "Non-nil means cache refile targets to speed up the process.
2448 The cache for a particular file will be updated automatically when
2449 the buffer has been killed, or when any of the marker used for flagging
2450 refile targets no longer points at a live buffer.
2451 If you have added new entries to a buffer that might themselves be targets,
2452 you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
2453 find that easier, `C-u C-u C-u C-c C-w'."
2454 :group 'org-refile
2455 :version "24.1"
2456 :type 'boolean)
2458 (defcustom org-refile-use-outline-path nil
2459 "Non-nil means provide refile targets as paths.
2460 So a level 3 headline will be available as level1/level2/level3.
2462 When the value is `file', also include the file name (without directory)
2463 into the path. In this case, you can also stop the completion after
2464 the file name, to get entries inserted as top level in the file.
2466 When `full-file-path', include the full file path."
2467 :group 'org-refile
2468 :type '(choice
2469 (const :tag "Not" nil)
2470 (const :tag "Yes" t)
2471 (const :tag "Start with file name" file)
2472 (const :tag "Start with full file path" full-file-path)))
2474 (defcustom org-outline-path-complete-in-steps t
2475 "Non-nil means complete the outline path in hierarchical steps.
2476 When Org-mode uses the refile interface to select an outline path
2477 \(see variable `org-refile-use-outline-path'), the completion of
2478 the path can be done is a single go, or if can be done in steps down
2479 the headline hierarchy. Going in steps is probably the best if you
2480 do not use a special completion package like `ido' or `icicles'.
2481 However, when using these packages, going in one step can be very
2482 fast, while still showing the whole path to the entry."
2483 :group 'org-refile
2484 :type 'boolean)
2486 (defcustom org-refile-allow-creating-parent-nodes nil
2487 "Non-nil means allow to create new nodes as refile targets.
2488 New nodes are then created by adding \"/new node name\" to the completion
2489 of an existing node. When the value of this variable is `confirm',
2490 new node creation must be confirmed by the user (recommended).
2491 When nil, the completion must match an existing entry.
2493 Note that, if the new heading is not seen by the criteria
2494 listed in `org-refile-targets', multiple instances of the same
2495 heading would be created by trying again to file under the new
2496 heading."
2497 :group 'org-refile
2498 :type '(choice
2499 (const :tag "Never" nil)
2500 (const :tag "Always" t)
2501 (const :tag "Prompt for confirmation" confirm)))
2503 (defcustom org-refile-active-region-within-subtree nil
2504 "Non-nil means also refile active region within a subtree.
2506 By default `org-refile' doesn't allow refiling regions if they
2507 don't contain a set of subtrees, but it might be convenient to
2508 do so sometimes: in that case, the first line of the region is
2509 converted to a headline before refiling."
2510 :group 'org-refile
2511 :version "24.1"
2512 :type 'boolean)
2514 (defgroup org-todo nil
2515 "Options concerning TODO items in Org-mode."
2516 :tag "Org TODO"
2517 :group 'org)
2519 (defgroup org-progress nil
2520 "Options concerning Progress logging in Org-mode."
2521 :tag "Org Progress"
2522 :group 'org-time)
2524 (defvar org-todo-interpretation-widgets
2525 '((:tag "Sequence (cycling hits every state)" sequence)
2526 (:tag "Type (cycling directly to DONE)" type))
2527 "The available interpretation symbols for customizing `org-todo-keywords'.
2528 Interested libraries should add to this list.")
2530 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2531 "List of TODO entry keyword sequences and their interpretation.
2532 \\<org-mode-map>This is a list of sequences.
2534 Each sequence starts with a symbol, either `sequence' or `type',
2535 indicating if the keywords should be interpreted as a sequence of
2536 action steps, or as different types of TODO items. The first
2537 keywords are states requiring action - these states will select a headline
2538 for inclusion into the global TODO list Org-mode produces. If one of
2539 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2540 signify that no further action is necessary. If \"|\" is not found,
2541 the last keyword is treated as the only DONE state of the sequence.
2543 The command \\[org-todo] cycles an entry through these states, and one
2544 additional state where no keyword is present. For details about this
2545 cycling, see the manual.
2547 TODO keywords and interpretation can also be set on a per-file basis with
2548 the special #+SEQ_TODO and #+TYP_TODO lines.
2550 Each keyword can optionally specify a character for fast state selection
2551 \(in combination with the variable `org-use-fast-todo-selection')
2552 and specifiers for state change logging, using the same syntax that
2553 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2554 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2555 indicates to record a time stamp each time this state is selected.
2557 Each keyword may also specify if a timestamp or a note should be
2558 recorded when entering or leaving the state, by adding additional
2559 characters in the parenthesis after the keyword. This looks like this:
2560 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2561 record only the time of the state change. With X and Y being either
2562 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2563 Y when leaving the state if and only if the *target* state does not
2564 define X. You may omit any of the fast-selection key or X or /Y,
2565 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2567 For backward compatibility, this variable may also be just a list
2568 of keywords. In this case the interpretation (sequence or type) will be
2569 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2570 :group 'org-todo
2571 :group 'org-keywords
2572 :type '(choice
2573 (repeat :tag "Old syntax, just keywords"
2574 (string :tag "Keyword"))
2575 (repeat :tag "New syntax"
2576 (cons
2577 (choice
2578 :tag "Interpretation"
2579 ;;Quick and dirty way to see
2580 ;;`org-todo-interpretations'. This takes the
2581 ;;place of item arguments
2582 :convert-widget
2583 (lambda (widget)
2584 (widget-put widget
2585 :args (mapcar
2586 (lambda (x)
2587 (widget-convert
2588 (cons 'const x)))
2589 org-todo-interpretation-widgets))
2590 widget))
2591 (repeat
2592 (string :tag "Keyword"))))))
2594 (defvar org-todo-keywords-1 nil
2595 "All TODO and DONE keywords active in a buffer.")
2596 (make-variable-buffer-local 'org-todo-keywords-1)
2597 (defvar org-todo-keywords-for-agenda nil)
2598 (defvar org-done-keywords-for-agenda nil)
2599 (defvar org-todo-keyword-alist-for-agenda nil)
2600 (defvar org-tag-alist-for-agenda nil
2601 "Alist of all tags from all agenda files.")
2602 (defvar org-tag-groups-alist-for-agenda nil
2603 "Alist of all groups tags from all current agenda files.")
2604 (defvar org-tag-groups-alist nil)
2605 (make-variable-buffer-local 'org-tag-groups-alist)
2606 (defvar org-agenda-contributing-files nil)
2607 (defvar org-not-done-keywords nil)
2608 (make-variable-buffer-local 'org-not-done-keywords)
2609 (defvar org-done-keywords nil)
2610 (make-variable-buffer-local 'org-done-keywords)
2611 (defvar org-todo-heads nil)
2612 (make-variable-buffer-local 'org-todo-heads)
2613 (defvar org-todo-sets nil)
2614 (make-variable-buffer-local 'org-todo-sets)
2615 (defvar org-todo-log-states nil)
2616 (make-variable-buffer-local 'org-todo-log-states)
2617 (defvar org-todo-kwd-alist nil)
2618 (make-variable-buffer-local 'org-todo-kwd-alist)
2619 (defvar org-todo-key-alist nil)
2620 (make-variable-buffer-local 'org-todo-key-alist)
2621 (defvar org-todo-key-trigger nil)
2622 (make-variable-buffer-local 'org-todo-key-trigger)
2624 (defcustom org-todo-interpretation 'sequence
2625 "Controls how TODO keywords are interpreted.
2626 This variable is in principle obsolete and is only used for
2627 backward compatibility, if the interpretation of todo keywords is
2628 not given already in `org-todo-keywords'. See that variable for
2629 more information."
2630 :group 'org-todo
2631 :group 'org-keywords
2632 :type '(choice (const sequence)
2633 (const type)))
2635 (defcustom org-use-fast-todo-selection t
2636 "Non-nil means use the fast todo selection scheme with C-c C-t.
2637 This variable describes if and under what circumstances the cycling
2638 mechanism for TODO keywords will be replaced by a single-key, direct
2639 selection scheme.
2641 When nil, fast selection is never used.
2643 When the symbol `prefix', it will be used when `org-todo' is called
2644 with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
2645 `C-u t' in an agenda buffer.
2647 When t, fast selection is used by default. In this case, the prefix
2648 argument forces cycling instead.
2650 In all cases, the special interface is only used if access keys have
2651 actually been assigned by the user, i.e. if keywords in the configuration
2652 are followed by a letter in parenthesis, like TODO(t)."
2653 :group 'org-todo
2654 :type '(choice
2655 (const :tag "Never" nil)
2656 (const :tag "By default" t)
2657 (const :tag "Only with C-u C-c C-t" prefix)))
2659 (defcustom org-provide-todo-statistics t
2660 "Non-nil means update todo statistics after insert and toggle.
2661 ALL-HEADLINES means update todo statistics by including headlines
2662 with no TODO keyword as well, counting them as not done.
2663 A list of TODO keywords means the same, but skip keywords that are
2664 not in this list.
2665 When set to a list of two lists, the first list contains keywords
2666 to consider as TODO keywords, the second list contains keywords
2667 to consider as DONE keywords.
2669 When this is set, todo statistics is updated in the parent of the
2670 current entry each time a todo state is changed."
2671 :group 'org-todo
2672 :type '(choice
2673 (const :tag "Yes, only for TODO entries" t)
2674 (const :tag "Yes, including all entries" all-headlines)
2675 (repeat :tag "Yes, for TODOs in this list"
2676 (string :tag "TODO keyword"))
2677 (list :tag "Yes, for TODOs and DONEs in these lists"
2678 (repeat (string :tag "TODO keyword"))
2679 (repeat (string :tag "DONE keyword")))
2680 (other :tag "No TODO statistics" nil)))
2682 (defcustom org-hierarchical-todo-statistics t
2683 "Non-nil means TODO statistics covers just direct children.
2684 When nil, all entries in the subtree are considered.
2685 This has only an effect if `org-provide-todo-statistics' is set.
2686 To set this to nil for only a single subtree, use a COOKIE_DATA
2687 property and include the word \"recursive\" into the value."
2688 :group 'org-todo
2689 :type 'boolean)
2691 (defcustom org-after-todo-state-change-hook nil
2692 "Hook which is run after the state of a TODO item was changed.
2693 The new state (a string with a TODO keyword, or nil) is available in the
2694 Lisp variable `org-state'."
2695 :group 'org-todo
2696 :type 'hook)
2698 (defvar org-blocker-hook nil
2699 "Hook for functions that are allowed to block a state change.
2701 Functions in this hook should not modify the buffer.
2702 Each function gets as its single argument a property list,
2703 see `org-trigger-hook' for more information about this list.
2705 If any of the functions in this hook returns nil, the state change
2706 is blocked.")
2708 (defvar org-trigger-hook nil
2709 "Hook for functions that are triggered by a state change.
2711 Each function gets as its single argument a property list with at
2712 least the following elements:
2714 (:type type-of-change :position pos-at-entry-start
2715 :from old-state :to new-state)
2717 Depending on the type, more properties may be present.
2719 This mechanism is currently implemented for:
2721 TODO state changes
2722 ------------------
2723 :type todo-state-change
2724 :from previous state (keyword as a string), or nil, or a symbol
2725 'todo' or 'done', to indicate the general type of state.
2726 :to new state, like in :from")
2728 (defcustom org-enforce-todo-dependencies nil
2729 "Non-nil means undone TODO entries will block switching the parent to DONE.
2730 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2731 be blocked if any prior sibling is not yet done.
2732 Finally, if the parent is blocked because of ordered siblings of its own,
2733 the child will also be blocked."
2734 :set (lambda (var val)
2735 (set var val)
2736 (if val
2737 (add-hook 'org-blocker-hook
2738 'org-block-todo-from-children-or-siblings-or-parent)
2739 (remove-hook 'org-blocker-hook
2740 'org-block-todo-from-children-or-siblings-or-parent)))
2741 :group 'org-todo
2742 :type 'boolean)
2744 (defcustom org-enforce-todo-checkbox-dependencies nil
2745 "Non-nil means unchecked boxes will block switching the parent to DONE.
2746 When this is nil, checkboxes have no influence on switching TODO states.
2747 When non-nil, you first need to check off all check boxes before the TODO
2748 entry can be switched to DONE.
2749 This variable needs to be set before org.el is loaded, and you need to
2750 restart Emacs after a change to make the change effective. The only way
2751 to change is while Emacs is running is through the customize interface."
2752 :set (lambda (var val)
2753 (set var val)
2754 (if val
2755 (add-hook 'org-blocker-hook
2756 'org-block-todo-from-checkboxes)
2757 (remove-hook 'org-blocker-hook
2758 'org-block-todo-from-checkboxes)))
2759 :group 'org-todo
2760 :type 'boolean)
2762 (defcustom org-treat-insert-todo-heading-as-state-change nil
2763 "Non-nil means inserting a TODO heading is treated as state change.
2764 So when the command \\[org-insert-todo-heading] is used, state change
2765 logging will apply if appropriate. When nil, the new TODO item will
2766 be inserted directly, and no logging will take place."
2767 :group 'org-todo
2768 :type 'boolean)
2770 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2771 "Non-nil means switching TODO states with S-cursor counts as state change.
2772 This is the default behavior. However, setting this to nil allows a
2773 convenient way to select a TODO state and bypass any logging associated
2774 with that."
2775 :group 'org-todo
2776 :type 'boolean)
2778 (defcustom org-todo-state-tags-triggers nil
2779 "Tag changes that should be triggered by TODO state changes.
2780 This is a list. Each entry is
2782 (state-change (tag . flag) .......)
2784 State-change can be a string with a state, and empty string to indicate the
2785 state that has no TODO keyword, or it can be one of the symbols `todo'
2786 or `done', meaning any not-done or done state, respectively."
2787 :group 'org-todo
2788 :group 'org-tags
2789 :type '(repeat
2790 (cons (choice :tag "When changing to"
2791 (const :tag "Not-done state" todo)
2792 (const :tag "Done state" done)
2793 (string :tag "State"))
2794 (repeat
2795 (cons :tag "Tag action"
2796 (string :tag "Tag")
2797 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2799 (defcustom org-log-done nil
2800 "Information to record when a task moves to the DONE state.
2802 Possible values are:
2804 nil Don't add anything, just change the keyword
2805 time Add a time stamp to the task
2806 note Prompt for a note and add it with template `org-log-note-headings'
2808 This option can also be set with on a per-file-basis with
2810 #+STARTUP: nologdone
2811 #+STARTUP: logdone
2812 #+STARTUP: lognotedone
2814 You can have local logging settings for a subtree by setting the LOGGING
2815 property to one or more of these keywords."
2816 :group 'org-todo
2817 :group 'org-progress
2818 :type '(choice
2819 (const :tag "No logging" nil)
2820 (const :tag "Record CLOSED timestamp" time)
2821 (const :tag "Record CLOSED timestamp with note." note)))
2823 ;; Normalize old uses of org-log-done.
2824 (cond
2825 ((eq org-log-done t) (setq org-log-done 'time))
2826 ((and (listp org-log-done) (memq 'done org-log-done))
2827 (setq org-log-done 'note)))
2829 (defcustom org-log-reschedule nil
2830 "Information to record when the scheduling date of a tasks is modified.
2832 Possible values are:
2834 nil Don't add anything, just change the date
2835 time Add a time stamp to the task
2836 note Prompt for a note and add it with template `org-log-note-headings'
2838 This option can also be set with on a per-file-basis with
2840 #+STARTUP: nologreschedule
2841 #+STARTUP: logreschedule
2842 #+STARTUP: lognotereschedule"
2843 :group 'org-todo
2844 :group 'org-progress
2845 :type '(choice
2846 (const :tag "No logging" nil)
2847 (const :tag "Record timestamp" time)
2848 (const :tag "Record timestamp with note." note)))
2850 (defcustom org-log-redeadline nil
2851 "Information to record when the deadline date of a tasks is modified.
2853 Possible values are:
2855 nil Don't add anything, just change the date
2856 time Add a time stamp to the task
2857 note Prompt for a note and add it with template `org-log-note-headings'
2859 This option can also be set with on a per-file-basis with
2861 #+STARTUP: nologredeadline
2862 #+STARTUP: logredeadline
2863 #+STARTUP: lognoteredeadline
2865 You can have local logging settings for a subtree by setting the LOGGING
2866 property to one or more of these keywords."
2867 :group 'org-todo
2868 :group 'org-progress
2869 :type '(choice
2870 (const :tag "No logging" nil)
2871 (const :tag "Record timestamp" time)
2872 (const :tag "Record timestamp with note." note)))
2874 (defcustom org-log-note-clock-out nil
2875 "Non-nil means record a note when clocking out of an item.
2876 This can also be configured on a per-file basis by adding one of
2877 the following lines anywhere in the buffer:
2879 #+STARTUP: lognoteclock-out
2880 #+STARTUP: nolognoteclock-out"
2881 :group 'org-todo
2882 :group 'org-progress
2883 :type 'boolean)
2885 (defcustom org-log-done-with-time t
2886 "Non-nil means the CLOSED time stamp will contain date and time.
2887 When nil, only the date will be recorded."
2888 :group 'org-progress
2889 :type 'boolean)
2891 (defcustom org-log-note-headings
2892 '((done . "CLOSING NOTE %t")
2893 (state . "State %-12s from %-12S %t")
2894 (note . "Note taken on %t")
2895 (reschedule . "Rescheduled from %S on %t")
2896 (delschedule . "Not scheduled, was %S on %t")
2897 (redeadline . "New deadline from %S on %t")
2898 (deldeadline . "Removed deadline, was %S on %t")
2899 (refile . "Refiled on %t")
2900 (clock-out . ""))
2901 "Headings for notes added to entries.
2902 The value is an alist, with the car being a symbol indicating the note
2903 context, and the cdr is the heading to be used. The heading may also be the
2904 empty string.
2905 %t in the heading will be replaced by a time stamp.
2906 %T will be an active time stamp instead the default inactive one
2907 %d will be replaced by a short-format time stamp.
2908 %D will be replaced by an active short-format time stamp.
2909 %s will be replaced by the new TODO state, in double quotes.
2910 %S will be replaced by the old TODO state, in double quotes.
2911 %u will be replaced by the user name.
2912 %U will be replaced by the full user name.
2914 In fact, it is not a good idea to change the `state' entry, because
2915 agenda log mode depends on the format of these entries."
2916 :group 'org-todo
2917 :group 'org-progress
2918 :type '(list :greedy t
2919 (cons (const :tag "Heading when closing an item" done) string)
2920 (cons (const :tag
2921 "Heading when changing todo state (todo sequence only)"
2922 state) string)
2923 (cons (const :tag "Heading when just taking a note" note) string)
2924 (cons (const :tag "Heading when rescheduling" reschedule) string)
2925 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2926 (cons (const :tag "Heading when changing deadline" redeadline) string)
2927 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2928 (cons (const :tag "Heading when refiling" refile) string)
2929 (cons (const :tag "Heading when clocking out" clock-out) string)))
2931 (unless (assq 'note org-log-note-headings)
2932 (push '(note . "%t") org-log-note-headings))
2934 (defcustom org-log-into-drawer nil
2935 "Non-nil means insert state change notes and time stamps into a drawer.
2936 When nil, state changes notes will be inserted after the headline and
2937 any scheduling and clock lines, but not inside a drawer.
2939 The value of this variable should be the name of the drawer to use.
2940 LOGBOOK is proposed as the default drawer for this purpose, you can
2941 also set this to a string to define the drawer of your choice.
2943 A value of t is also allowed, representing \"LOGBOOK\".
2945 A value of t or nil can also be set with on a per-file-basis with
2947 #+STARTUP: logdrawer
2948 #+STARTUP: nologdrawer
2950 If this variable is set, `org-log-state-notes-insert-after-drawers'
2951 will be ignored.
2953 You can set the property LOG_INTO_DRAWER to overrule this setting for
2954 a subtree."
2955 :group 'org-todo
2956 :group 'org-progress
2957 :type '(choice
2958 (const :tag "Not into a drawer" nil)
2959 (const :tag "LOGBOOK" t)
2960 (string :tag "Other")))
2962 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2964 (defun org-log-into-drawer ()
2965 "Return the value of `org-log-into-drawer', but let properties overrule.
2966 If the current entry has or inherits a LOG_INTO_DRAWER property, it will be
2967 used instead of the default value."
2968 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2969 (cond
2970 ((not p) org-log-into-drawer)
2971 ((equal p "nil") nil)
2972 ((equal p "t") "LOGBOOK")
2973 (t p))))
2975 (defcustom org-log-state-notes-insert-after-drawers nil
2976 "Non-nil means insert state change notes after any drawers in entry.
2977 Only the drawers that *immediately* follow the headline and the
2978 deadline/scheduled line are skipped.
2979 When nil, insert notes right after the heading and perhaps the line
2980 with deadline/scheduling if present.
2982 This variable will have no effect if `org-log-into-drawer' is
2983 set."
2984 :group 'org-todo
2985 :group 'org-progress
2986 :type 'boolean)
2988 (defcustom org-log-states-order-reversed t
2989 "Non-nil means the latest state note will be directly after heading.
2990 When nil, the state change notes will be ordered according to time.
2992 This option can also be set with on a per-file-basis with
2994 #+STARTUP: logstatesreversed
2995 #+STARTUP: nologstatesreversed"
2996 :group 'org-todo
2997 :group 'org-progress
2998 :type 'boolean)
3000 (defcustom org-todo-repeat-to-state nil
3001 "The TODO state to which a repeater should return the repeating task.
3002 By default this is the first task in a TODO sequence, or the previous state
3003 in a TODO_TYP set. But you can specify another task here.
3004 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3005 :group 'org-todo
3006 :version "24.1"
3007 :type '(choice (const :tag "Head of sequence" nil)
3008 (string :tag "Specific state")))
3010 (defcustom org-log-repeat 'time
3011 "Non-nil means record moving through the DONE state when triggering repeat.
3012 An auto-repeating task is immediately switched back to TODO when
3013 marked DONE. If you are not logging state changes (by adding \"@\"
3014 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3015 record a closing note, there will be no record of the task moving
3016 through DONE. This variable forces taking a note anyway.
3018 nil Don't force a record
3019 time Record a time stamp
3020 note Prompt for a note and add it with template `org-log-note-headings'
3022 This option can also be set with on a per-file-basis with
3024 #+STARTUP: nologrepeat
3025 #+STARTUP: logrepeat
3026 #+STARTUP: lognoterepeat
3028 You can have local logging settings for a subtree by setting the LOGGING
3029 property to one or more of these keywords."
3030 :group 'org-todo
3031 :group 'org-progress
3032 :type '(choice
3033 (const :tag "Don't force a record" nil)
3034 (const :tag "Force recording the DONE state" time)
3035 (const :tag "Force recording a note with the DONE state" note)))
3038 (defgroup org-priorities nil
3039 "Priorities in Org-mode."
3040 :tag "Org Priorities"
3041 :group 'org-todo)
3043 (defcustom org-enable-priority-commands t
3044 "Non-nil means priority commands are active.
3045 When nil, these commands will be disabled, so that you never accidentally
3046 set a priority."
3047 :group 'org-priorities
3048 :type 'boolean)
3050 (defcustom org-highest-priority ?A
3051 "The highest priority of TODO items. A character like ?A, ?B etc.
3052 Must have a smaller ASCII number than `org-lowest-priority'."
3053 :group 'org-priorities
3054 :type 'character)
3056 (defcustom org-lowest-priority ?C
3057 "The lowest priority of TODO items. A character like ?A, ?B etc.
3058 Must have a larger ASCII number than `org-highest-priority'."
3059 :group 'org-priorities
3060 :type 'character)
3062 (defcustom org-default-priority ?B
3063 "The default priority of TODO items.
3064 This is the priority an item gets if no explicit priority is given.
3065 When starting to cycle on an empty priority the first step in the cycle
3066 depends on `org-priority-start-cycle-with-default'. The resulting first
3067 step priority must not exceed the range from `org-highest-priority' to
3068 `org-lowest-priority' which means that `org-default-priority' has to be
3069 in this range exclusive or inclusive the range boundaries. Else the
3070 first step refuses to set the default and the second will fall back
3071 to (depending on the command used) the highest or lowest priority."
3072 :group 'org-priorities
3073 :type 'character)
3075 (defcustom org-priority-start-cycle-with-default t
3076 "Non-nil means start with default priority when starting to cycle.
3077 When this is nil, the first step in the cycle will be (depending on the
3078 command used) one higher or lower than the default priority.
3079 See also `org-default-priority'."
3080 :group 'org-priorities
3081 :type 'boolean)
3083 (defcustom org-get-priority-function nil
3084 "Function to extract the priority from a string.
3085 The string is normally the headline. If this is nil Org computes the
3086 priority from the priority cookie like [#A] in the headline. It returns
3087 an integer, increasing by 1000 for each priority level.
3088 The user can set a different function here, which should take a string
3089 as an argument and return the numeric priority."
3090 :group 'org-priorities
3091 :version "24.1"
3092 :type '(choice
3093 (const nil)
3094 (function)))
3096 (defgroup org-time nil
3097 "Options concerning time stamps and deadlines in Org-mode."
3098 :tag "Org Time"
3099 :group 'org)
3101 (defcustom org-insert-labeled-timestamps-at-point nil
3102 "Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
3103 When nil, these labeled time stamps are forces into the second line of an
3104 entry, just after the headline. When scheduling from the global TODO list,
3105 the time stamp will always be forced into the second line."
3106 :group 'org-time
3107 :type 'boolean)
3109 (defcustom org-time-stamp-rounding-minutes '(0 5)
3110 "Number of minutes to round time stamps to.
3111 These are two values, the first applies when first creating a time stamp.
3112 The second applies when changing it with the commands `S-up' and `S-down'.
3113 When changing the time stamp, this means that it will change in steps
3114 of N minutes, as given by the second value.
3116 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3117 numbers should be factors of 60, so for example 5, 10, 15.
3119 When this is larger than 1, you can still force an exact time stamp by using
3120 a double prefix argument to a time stamp command like `C-c .' or `C-c !',
3121 and by using a prefix arg to `S-up/down' to specify the exact number
3122 of minutes to shift."
3123 :group 'org-time
3124 :get (lambda (var) ; Make sure both elements are there
3125 (if (integerp (default-value var))
3126 (list (default-value var) 5)
3127 (default-value var)))
3128 :type '(list
3129 (integer :tag "when inserting times")
3130 (integer :tag "when modifying times")))
3132 ;; Normalize old customizations of this variable.
3133 (when (integerp org-time-stamp-rounding-minutes)
3134 (setq org-time-stamp-rounding-minutes
3135 (list org-time-stamp-rounding-minutes
3136 org-time-stamp-rounding-minutes)))
3138 (defcustom org-display-custom-times nil
3139 "Non-nil means overlay custom formats over all time stamps.
3140 The formats are defined through the variable `org-time-stamp-custom-formats'.
3141 To turn this on on a per-file basis, insert anywhere in the file:
3142 #+STARTUP: customtime"
3143 :group 'org-time
3144 :set 'set-default
3145 :type 'sexp)
3146 (make-variable-buffer-local 'org-display-custom-times)
3148 (defcustom org-time-stamp-custom-formats
3149 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3150 "Custom formats for time stamps. See `format-time-string' for the syntax.
3151 These are overlaid over the default ISO format if the variable
3152 `org-display-custom-times' is set. Time like %H:%M should be at the
3153 end of the second format. The custom formats are also honored by export
3154 commands, if custom time display is turned on at the time of export."
3155 :group 'org-time
3156 :type 'sexp)
3158 (defun org-time-stamp-format (&optional long inactive)
3159 "Get the right format for a time string."
3160 (let ((f (if long (cdr org-time-stamp-formats)
3161 (car org-time-stamp-formats))))
3162 (if inactive
3163 (concat "[" (substring f 1 -1) "]")
3164 f)))
3166 (defcustom org-time-clocksum-format
3167 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3168 "The format string used when creating CLOCKSUM lines.
3169 This is also used when Org mode generates a time duration.
3171 The value can be a single format string containing two
3172 %-sequences, which will be filled with the number of hours and
3173 minutes in that order.
3175 Alternatively, the value can be a plist associating any of the
3176 keys :years, :months, :weeks, :days, :hours or :minutes with
3177 format strings. The time duration is formatted using only the
3178 time components that are needed and concatenating the results.
3179 If a time unit in absent, it falls back to the next smallest
3180 unit.
3182 The keys :require-years, :require-months, :require-days,
3183 :require-weeks, :require-hours, :require-minutes are also
3184 meaningful. A non-nil value for these keys indicates that the
3185 corresponding time component should always be included, even if
3186 its value is 0.
3189 For example,
3191 \(:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3192 :require-minutes t)
3194 means durations longer than a day will be expressed in days,
3195 hours and minutes, and durations less than a day will always be
3196 expressed in hours and minutes (even for durations less than an
3197 hour).
3199 The value
3201 \(:days \"%dd\" :minutes \"%dm\")
3203 means durations longer than a day will be expressed in days and
3204 minutes, and durations less than a day will be expressed entirely
3205 in minutes (even for durations longer than an hour)."
3206 :group 'org-time
3207 :group 'org-clock
3208 :version "24.4"
3209 :package-version '(Org . "8.0")
3210 :type '(choice (string :tag "Format string")
3211 (set :tag "Plist"
3212 (group :inline t (const :tag "Years" :years)
3213 (string :tag "Format string"))
3214 (group :inline t
3215 (const :tag "Always show years" :require-years)
3216 (const t))
3217 (group :inline t (const :tag "Months" :months)
3218 (string :tag "Format string"))
3219 (group :inline t
3220 (const :tag "Always show months" :require-months)
3221 (const t))
3222 (group :inline t (const :tag "Weeks" :weeks)
3223 (string :tag "Format string"))
3224 (group :inline t
3225 (const :tag "Always show weeks" :require-weeks)
3226 (const t))
3227 (group :inline t (const :tag "Days" :days)
3228 (string :tag "Format string"))
3229 (group :inline t
3230 (const :tag "Always show days" :require-days)
3231 (const t))
3232 (group :inline t (const :tag "Hours" :hours)
3233 (string :tag "Format string"))
3234 (group :inline t
3235 (const :tag "Always show hours" :require-hours)
3236 (const t))
3237 (group :inline t (const :tag "Minutes" :minutes)
3238 (string :tag "Format string"))
3239 (group :inline t
3240 (const :tag "Always show minutes" :require-minutes)
3241 (const t)))))
3243 (defcustom org-time-clocksum-use-fractional nil
3244 "When non-nil, \\[org-clock-display] uses fractional times.
3245 See `org-time-clocksum-format' for more on time clock formats."
3246 :group 'org-time
3247 :group 'org-clock
3248 :version "24.3"
3249 :type 'boolean)
3251 (defcustom org-time-clocksum-use-effort-durations nil
3252 "When non-nil, \\[org-clock-display] uses effort durations.
3253 E.g. by default, one day is considered to be a 8 hours effort,
3254 so a task that has been clocked for 16 hours will be displayed
3255 as during 2 days in the clock display or in the clocktable.
3257 See `org-effort-durations' on how to set effort durations
3258 and `org-time-clocksum-format' for more on time clock formats."
3259 :group 'org-time
3260 :group 'org-clock
3261 :version "24.4"
3262 :package-version '(Org . "8.0")
3263 :type 'boolean)
3265 (defcustom org-time-clocksum-fractional-format "%.2f"
3266 "The format string used when creating CLOCKSUM lines,
3267 or when Org mode generates a time duration, if
3268 `org-time-clocksum-use-fractional' is enabled.
3270 The value can be a single format string containing one
3271 %-sequence, which will be filled with the number of hours as
3272 a float.
3274 Alternatively, the value can be a plist associating any of the
3275 keys :years, :months, :weeks, :days, :hours or :minutes with
3276 a format string. The time duration is formatted using the
3277 largest time unit which gives a non-zero integer part. If all
3278 specified formats have zero integer part, the smallest time unit
3279 is used."
3280 :group 'org-time
3281 :type '(choice (string :tag "Format string")
3282 (set (group :inline t (const :tag "Years" :years)
3283 (string :tag "Format string"))
3284 (group :inline t (const :tag "Months" :months)
3285 (string :tag "Format string"))
3286 (group :inline t (const :tag "Weeks" :weeks)
3287 (string :tag "Format string"))
3288 (group :inline t (const :tag "Days" :days)
3289 (string :tag "Format string"))
3290 (group :inline t (const :tag "Hours" :hours)
3291 (string :tag "Format string"))
3292 (group :inline t (const :tag "Minutes" :minutes)
3293 (string :tag "Format string")))))
3295 (defcustom org-deadline-warning-days 14
3296 "Number of days before expiration during which a deadline becomes active.
3297 This variable governs the display in sparse trees and in the agenda.
3298 When 0 or negative, it means use this number (the absolute value of it)
3299 even if a deadline has a different individual lead time specified.
3301 Custom commands can set this variable in the options section."
3302 :group 'org-time
3303 :group 'org-agenda-daily/weekly
3304 :type 'integer)
3306 (defcustom org-scheduled-delay-days 0
3307 "Number of days before a scheduled item becomes active.
3308 This variable governs the display in sparse trees and in the agenda.
3309 The default value (i.e. 0) means: don't delay scheduled item.
3310 When negative, it means use this number (the absolute value of it)
3311 even if a scheduled item has a different individual delay time
3312 specified.
3314 Custom commands can set this variable in the options section."
3315 :group 'org-time
3316 :group 'org-agenda-daily/weekly
3317 :version "24.4"
3318 :package-version '(Org . "8.0")
3319 :type 'integer)
3321 (defcustom org-read-date-prefer-future t
3322 "Non-nil means assume future for incomplete date input from user.
3323 This affects the following situations:
3324 1. The user gives a month but not a year.
3325 For example, if it is April and you enter \"feb 2\", this will be read
3326 as Feb 2, *next* year. \"May 5\", however, will be this year.
3327 2. The user gives a day, but no month.
3328 For example, if today is the 15th, and you enter \"3\", Org-mode will
3329 read this as the third of *next* month. However, if you enter \"17\",
3330 it will be considered as *this* month.
3332 If you set this variable to the symbol `time', then also the following
3333 will work:
3335 3. If the user gives a time.
3336 If the time is before now, it will be interpreted as tomorrow.
3338 Currently none of this works for ISO week specifications.
3340 When this option is nil, the current day, month and year will always be
3341 used as defaults.
3343 See also `org-agenda-jump-prefer-future'."
3344 :group 'org-time
3345 :type '(choice
3346 (const :tag "Never" nil)
3347 (const :tag "Check month and day" t)
3348 (const :tag "Check month, day, and time" time)))
3350 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3351 "Should the agenda jump command prefer the future for incomplete dates?
3352 The default is to do the same as configured in `org-read-date-prefer-future'.
3353 But you can also set a deviating value here.
3354 This may t or nil, or the symbol `org-read-date-prefer-future'."
3355 :group 'org-agenda
3356 :group 'org-time
3357 :version "24.1"
3358 :type '(choice
3359 (const :tag "Use org-read-date-prefer-future"
3360 org-read-date-prefer-future)
3361 (const :tag "Never" nil)
3362 (const :tag "Always" t)))
3364 (defcustom org-read-date-force-compatible-dates t
3365 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3367 Depending on the system Emacs is running on, certain dates cannot
3368 be represented with the type used internally to represent time.
3369 Dates between 1970-1-1 and 2038-1-1 can always be represented
3370 correctly. Some systems allow for earlier dates, some for later,
3371 some for both. One way to find out it to insert any date into an
3372 Org buffer, putting the cursor on the year and hitting S-up and
3373 S-down to test the range.
3375 When this variable is set to t, the date/time prompt will not let
3376 you specify dates outside the 1970-2037 range, so it is certain that
3377 these dates will work in whatever version of Emacs you are
3378 running, and also that you can move a file from one Emacs implementation
3379 to another. WHenever Org is forcing the year for you, it will display
3380 a message and beep.
3382 When this variable is nil, Org will check if the date is
3383 representable in the specific Emacs implementation you are using.
3384 If not, it will force a year, usually the current year, and beep
3385 to remind you. Currently this setting is not recommended because
3386 the likelihood that you will open your Org files in an Emacs that
3387 has limited date range is not negligible.
3389 A workaround for this problem is to use diary sexp dates for time
3390 stamps outside of this range."
3391 :group 'org-time
3392 :version "24.1"
3393 :type 'boolean)
3395 (defcustom org-read-date-display-live t
3396 "Non-nil means display current interpretation of date prompt live.
3397 This display will be in an overlay, in the minibuffer."
3398 :group 'org-time
3399 :type 'boolean)
3401 (defcustom org-read-date-popup-calendar t
3402 "Non-nil means pop up a calendar when prompting for a date.
3403 In the calendar, the date can be selected with mouse-1. However, the
3404 minibuffer will also be active, and you can simply enter the date as well.
3405 When nil, only the minibuffer will be available."
3406 :group 'org-time
3407 :type 'boolean)
3408 (org-defvaralias 'org-popup-calendar-for-date-prompt
3409 'org-read-date-popup-calendar)
3411 (make-obsolete-variable
3412 'org-read-date-minibuffer-setup-hook
3413 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3414 (defcustom org-read-date-minibuffer-setup-hook nil
3415 "Hook to be used to set up keys for the date/time interface.
3416 Add key definitions to `minibuffer-local-map', which will be a
3417 temporary copy.
3419 WARNING: This option is obsolete, you should use
3420 `org-read-date-minibuffer-local-map' to set up keys."
3421 :group 'org-time
3422 :type 'hook)
3424 (defcustom org-extend-today-until 0
3425 "The hour when your day really ends. Must be an integer.
3426 This has influence for the following applications:
3427 - When switching the agenda to \"today\". It it is still earlier than
3428 the time given here, the day recognized as TODAY is actually yesterday.
3429 - When a date is read from the user and it is still before the time given
3430 here, the current date and time will be assumed to be yesterday, 23:59.
3431 Also, timestamps inserted in capture templates follow this rule.
3433 IMPORTANT: This is a feature whose implementation is and likely will
3434 remain incomplete. Really, it is only here because past midnight seems to
3435 be the favorite working time of John Wiegley :-)"
3436 :group 'org-time
3437 :type 'integer)
3439 (defcustom org-use-effective-time nil
3440 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3441 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3442 \"effective time\" of any timestamps between midnight and 8am will be
3443 23:59 of the previous day."
3444 :group 'org-time
3445 :version "24.1"
3446 :type 'boolean)
3448 (defcustom org-use-last-clock-out-time-as-effective-time nil
3449 "When non-nil, use the last clock out time for `org-todo'.
3450 Note that this option has precedence over the combined use of
3451 `org-use-effective-time' and `org-extend-today-until'."
3452 :group 'org-time
3453 :version "24.4"
3454 :package-version '(Org . "8.0")
3455 :type 'boolean)
3457 (defcustom org-edit-timestamp-down-means-later nil
3458 "Non-nil means S-down will increase the time in a time stamp.
3459 When nil, S-up will increase."
3460 :group 'org-time
3461 :type 'boolean)
3463 (defcustom org-calendar-follow-timestamp-change t
3464 "Non-nil means make the calendar window follow timestamp changes.
3465 When a timestamp is modified and the calendar window is visible, it will be
3466 moved to the new date."
3467 :group 'org-time
3468 :type 'boolean)
3470 (defgroup org-tags nil
3471 "Options concerning tags in Org-mode."
3472 :tag "Org Tags"
3473 :group 'org)
3475 (defcustom org-tag-alist nil
3476 "List of tags allowed in Org-mode files.
3477 When this list is nil, Org-mode will base TAG input on what is already in the
3478 buffer.
3479 The value of this variable is an alist, the car of each entry must be a
3480 keyword as a string, the cdr may be a character that is used to select
3481 that tag through the fast-tag-selection interface.
3482 See the manual for details."
3483 :group 'org-tags
3484 :type '(repeat
3485 (choice
3486 (cons (string :tag "Tag name")
3487 (character :tag "Access char"))
3488 (list :tag "Start radio group"
3489 (const :startgroup)
3490 (option (string :tag "Group description")))
3491 (list :tag "Group tags delimiter"
3492 (const :grouptags))
3493 (list :tag "End radio group"
3494 (const :endgroup)
3495 (option (string :tag "Group description")))
3496 (const :tag "New line" (:newline)))))
3498 (defcustom org-tag-persistent-alist nil
3499 "List of tags that will always appear in all Org-mode files.
3500 This is in addition to any in buffer settings or customizations
3501 of `org-tag-alist'.
3502 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3503 The value of this variable is an alist, the car of each entry must be a
3504 keyword as a string, the cdr may be a character that is used to select
3505 that tag through the fast-tag-selection interface.
3506 See the manual for details.
3507 To disable these tags on a per-file basis, insert anywhere in the file:
3508 #+STARTUP: noptag"
3509 :group 'org-tags
3510 :type '(repeat
3511 (choice
3512 (cons (string :tag "Tag name")
3513 (character :tag "Access char"))
3514 (const :tag "Start radio group" (:startgroup))
3515 (const :tag "Group tags delimiter" (:grouptags))
3516 (const :tag "End radio group" (:endgroup))
3517 (const :tag "New line" (:newline)))))
3519 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3520 "If non-nil, always offer completion for all tags of all agenda files.
3521 Instead of customizing this variable directly, you might want to
3522 set it locally for capture buffers, because there no list of
3523 tags in that file can be created dynamically (there are none).
3525 (add-hook 'org-capture-mode-hook
3526 (lambda ()
3527 (set (make-local-variable
3528 'org-complete-tags-always-offer-all-agenda-tags)
3529 t)))"
3530 :group 'org-tags
3531 :version "24.1"
3532 :type 'boolean)
3534 (defvar org-file-tags nil
3535 "List of tags that can be inherited by all entries in the file.
3536 The tags will be inherited if the variable `org-use-tag-inheritance'
3537 says they should be.
3538 This variable is populated from #+FILETAGS lines.")
3540 (defcustom org-use-fast-tag-selection 'auto
3541 "Non-nil means use fast tag selection scheme.
3542 This is a special interface to select and deselect tags with single keys.
3543 When nil, fast selection is never used.
3544 When the symbol `auto', fast selection is used if and only if selection
3545 characters for tags have been configured, either through the variable
3546 `org-tag-alist' or through a #+TAGS line in the buffer.
3547 When t, fast selection is always used and selection keys are assigned
3548 automatically if necessary."
3549 :group 'org-tags
3550 :type '(choice
3551 (const :tag "Always" t)
3552 (const :tag "Never" nil)
3553 (const :tag "When selection characters are configured" auto)))
3555 (defcustom org-fast-tag-selection-single-key nil
3556 "Non-nil means fast tag selection exits after first change.
3557 When nil, you have to press RET to exit it.
3558 During fast tag selection, you can toggle this flag with `C-c'.
3559 This variable can also have the value `expert'. In this case, the window
3560 displaying the tags menu is not even shown, until you press C-c again."
3561 :group 'org-tags
3562 :type '(choice
3563 (const :tag "No" nil)
3564 (const :tag "Yes" t)
3565 (const :tag "Expert" expert)))
3567 (defvar org-fast-tag-selection-include-todo nil
3568 "Non-nil means fast tags selection interface will also offer TODO states.
3569 This is an undocumented feature, you should not rely on it.")
3571 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3572 "The column to which tags should be indented in a headline.
3573 If this number is positive, it specifies the column. If it is negative,
3574 it means that the tags should be flushright to that column. For example,
3575 -80 works well for a normal 80 character screen.
3576 When 0, place tags directly after headline text, with only one space in
3577 between."
3578 :group 'org-tags
3579 :type 'integer)
3581 (defcustom org-auto-align-tags t
3582 "Non-nil keeps tags aligned when modifying headlines.
3583 Some operations (i.e. demoting) change the length of a headline and
3584 therefore shift the tags around. With this option turned on, after
3585 each such operation the tags are again aligned to `org-tags-column'."
3586 :group 'org-tags
3587 :type 'boolean)
3589 (defcustom org-use-tag-inheritance t
3590 "Non-nil means tags in levels apply also for sublevels.
3591 When nil, only the tags directly given in a specific line apply there.
3592 This may also be a list of tags that should be inherited, or a regexp that
3593 matches tags that should be inherited. Additional control is possible
3594 with the variable `org-tags-exclude-from-inheritance' which gives an
3595 explicit list of tags to be excluded from inheritance, even if the value of
3596 `org-use-tag-inheritance' would select it for inheritance.
3598 If this option is t, a match early-on in a tree can lead to a large
3599 number of matches in the subtree when constructing the agenda or creating
3600 a sparse tree. If you only want to see the first match in a tree during
3601 a search, check out the variable `org-tags-match-list-sublevels'."
3602 :group 'org-tags
3603 :type '(choice
3604 (const :tag "Not" nil)
3605 (const :tag "Always" t)
3606 (repeat :tag "Specific tags" (string :tag "Tag"))
3607 (regexp :tag "Tags matched by regexp")))
3609 (defcustom org-tags-exclude-from-inheritance nil
3610 "List of tags that should never be inherited.
3611 This is a way to exclude a few tags from inheritance. For way to do
3612 the opposite, to actively allow inheritance for selected tags,
3613 see the variable `org-use-tag-inheritance'."
3614 :group 'org-tags
3615 :type '(repeat (string :tag "Tag")))
3617 (defun org-tag-inherit-p (tag)
3618 "Check if TAG is one that should be inherited."
3619 (cond
3620 ((member tag org-tags-exclude-from-inheritance) nil)
3621 ((eq org-use-tag-inheritance t) t)
3622 ((not org-use-tag-inheritance) nil)
3623 ((stringp org-use-tag-inheritance)
3624 (string-match org-use-tag-inheritance tag))
3625 ((listp org-use-tag-inheritance)
3626 (member tag org-use-tag-inheritance))
3627 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3629 (defcustom org-tags-match-list-sublevels t
3630 "Non-nil means list also sublevels of headlines matching a search.
3631 This variable applies to tags/property searches, and also to stuck
3632 projects because this search is based on a tags match as well.
3634 When set to the symbol `indented', sublevels are indented with
3635 leading dots.
3637 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3638 the sublevels of a headline matching a tag search often also match
3639 the same search. Listing all of them can create very long lists.
3640 Setting this variable to nil causes subtrees of a match to be skipped.
3642 This variable is semi-obsolete and probably should always be true. It
3643 is better to limit inheritance to certain tags using the variables
3644 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3645 :group 'org-tags
3646 :type '(choice
3647 (const :tag "No, don't list them" nil)
3648 (const :tag "Yes, do list them" t)
3649 (const :tag "List them, indented with leading dots" indented)))
3651 (defcustom org-tags-sort-function nil
3652 "When set, tags are sorted using this function as a comparator."
3653 :group 'org-tags
3654 :type '(choice
3655 (const :tag "No sorting" nil)
3656 (const :tag "Alphabetical" string<)
3657 (const :tag "Reverse alphabetical" string>)
3658 (function :tag "Custom function" nil)))
3660 (defvar org-tags-history nil
3661 "History of minibuffer reads for tags.")
3662 (defvar org-last-tags-completion-table nil
3663 "The last used completion table for tags.")
3664 (defvar org-after-tags-change-hook nil
3665 "Hook that is run after the tags in a line have changed.")
3667 (defgroup org-properties nil
3668 "Options concerning properties in Org-mode."
3669 :tag "Org Properties"
3670 :group 'org)
3672 (defcustom org-property-format "%-10s %s"
3673 "How property key/value pairs should be formatted by `indent-line'.
3674 When `indent-line' hits a property definition, it will format the line
3675 according to this format, mainly to make sure that the values are
3676 lined-up with respect to each other."
3677 :group 'org-properties
3678 :type 'string)
3680 (defcustom org-properties-postprocess-alist nil
3681 "Alist of properties and functions to adjust inserted values.
3682 Elements of this alist must be of the form
3684 ([string] [function])
3686 where [string] must be a property name and [function] must be a
3687 lambda expression: this lambda expression must take one argument,
3688 the value to adjust, and return the new value as a string.
3690 For example, this element will allow the property \"Remaining\"
3691 to be updated wrt the relation between the \"Effort\" property
3692 and the clock summary:
3694 ((\"Remaining\" (lambda(value)
3695 (let ((clocksum (org-clock-sum-current-item))
3696 (effort (org-duration-string-to-minutes
3697 (org-entry-get (point) \"Effort\"))))
3698 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3699 :group 'org-properties
3700 :version "24.1"
3701 :type '(alist :key-type (string :tag "Property")
3702 :value-type (function :tag "Function")))
3704 (defcustom org-use-property-inheritance nil
3705 "Non-nil means properties apply also for sublevels.
3707 This setting is chiefly used during property searches. Turning it on can
3708 cause significant overhead when doing a search, which is why it is not
3709 on by default.
3711 When nil, only the properties directly given in the current entry count.
3712 When t, every property is inherited. The value may also be a list of
3713 properties that should have inheritance, or a regular expression matching
3714 properties that should be inherited.
3716 However, note that some special properties use inheritance under special
3717 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3718 and the properties ending in \"_ALL\" when they are used as descriptor
3719 for valid values of a property.
3721 Note for programmers:
3722 When querying an entry with `org-entry-get', you can control if inheritance
3723 should be used. By default, `org-entry-get' looks only at the local
3724 properties. You can request inheritance by setting the inherit argument
3725 to t (to force inheritance) or to `selective' (to respect the setting
3726 in this variable)."
3727 :group 'org-properties
3728 :type '(choice
3729 (const :tag "Not" nil)
3730 (const :tag "Always" t)
3731 (repeat :tag "Specific properties" (string :tag "Property"))
3732 (regexp :tag "Properties matched by regexp")))
3734 (defun org-property-inherit-p (property)
3735 "Check if PROPERTY is one that should be inherited."
3736 (cond
3737 ((eq org-use-property-inheritance t) t)
3738 ((not org-use-property-inheritance) nil)
3739 ((stringp org-use-property-inheritance)
3740 (string-match org-use-property-inheritance property))
3741 ((listp org-use-property-inheritance)
3742 (member property org-use-property-inheritance))
3743 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3745 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3746 "The default column format, if no other format has been defined.
3747 This variable can be set on the per-file basis by inserting a line
3749 #+COLUMNS: %25ITEM ....."
3750 :group 'org-properties
3751 :type 'string)
3753 (defcustom org-columns-ellipses ".."
3754 "The ellipses to be used when a field in column view is truncated.
3755 When this is the empty string, as many characters as possible are shown,
3756 but then there will be no visual indication that the field has been truncated.
3757 When this is a string of length N, the last N characters of a truncated
3758 field are replaced by this string. If the column is narrower than the
3759 ellipses string, only part of the ellipses string will be shown."
3760 :group 'org-properties
3761 :type 'string)
3763 (defcustom org-columns-modify-value-for-display-function nil
3764 "Function that modifies values for display in column view.
3765 For example, it can be used to cut out a certain part from a time stamp.
3766 The function must take 2 arguments:
3768 column-title The title of the column (*not* the property name)
3769 value The value that should be modified.
3771 The function should return the value that should be displayed,
3772 or nil if the normal value should be used."
3773 :group 'org-properties
3774 :type '(choice (const nil) (function)))
3776 (defconst org-global-properties-fixed
3777 '(("VISIBILITY_ALL" . "folded children content all")
3778 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3779 "List of property/value pairs that can be inherited by any entry.
3781 These are fixed values, for the preset properties. The user variable
3782 that can be used to add to this list is `org-global-properties'.
3784 The entries in this list are cons cells where the car is a property
3785 name and cdr is a string with the value. If the value represents
3786 multiple items like an \"_ALL\" property, separate the items by
3787 spaces.")
3789 (defcustom org-global-properties nil
3790 "List of property/value pairs that can be inherited by any entry.
3792 This list will be combined with the constant `org-global-properties-fixed'.
3794 The entries in this list are cons cells where the car is a property
3795 name and cdr is a string with the value.
3797 You can set buffer-local values for the same purpose in the variable
3798 `org-file-properties' this by adding lines like
3800 #+PROPERTY: NAME VALUE"
3801 :group 'org-properties
3802 :type '(repeat
3803 (cons (string :tag "Property")
3804 (string :tag "Value"))))
3806 (defvar org-file-properties nil
3807 "List of property/value pairs that can be inherited by any entry.
3808 Valid for the current buffer.
3809 This variable is populated from #+PROPERTY lines.")
3810 (make-variable-buffer-local 'org-file-properties)
3812 (defgroup org-agenda nil
3813 "Options concerning agenda views in Org-mode."
3814 :tag "Org Agenda"
3815 :group 'org)
3817 (defvar org-category nil
3818 "Variable used by org files to set a category for agenda display.
3819 Such files should use a file variable to set it, for example
3821 # -*- mode: org; org-category: \"ELisp\"
3823 or contain a special line
3825 #+CATEGORY: ELisp
3827 If the file does not specify a category, then file's base name
3828 is used instead.")
3829 (make-variable-buffer-local 'org-category)
3830 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3832 (defcustom org-agenda-files nil
3833 "The files to be used for agenda display.
3834 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3835 \\[org-remove-file]. You can also use customize to edit the list.
3837 If an entry is a directory, all files in that directory that are matched by
3838 `org-agenda-file-regexp' will be part of the file list.
3840 If the value of the variable is not a list but a single file name, then
3841 the list of agenda files is actually stored and maintained in that file, one
3842 agenda file per line. In this file paths can be given relative to
3843 `org-directory'. Tilde expansion and environment variable substitution
3844 are also made."
3845 :group 'org-agenda
3846 :type '(choice
3847 (repeat :tag "List of files and directories" file)
3848 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3850 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3851 "Regular expression to match files for `org-agenda-files'.
3852 If any element in the list in that variable contains a directory instead
3853 of a normal file, all files in that directory that are matched by this
3854 regular expression will be included."
3855 :group 'org-agenda
3856 :type 'regexp)
3858 (defcustom org-agenda-text-search-extra-files nil
3859 "List of extra files to be searched by text search commands.
3860 These files will be searched in addition to the agenda files by the
3861 commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
3862 Note that these files will only be searched for text search commands,
3863 not for the other agenda views like todo lists, tag searches or the weekly
3864 agenda. This variable is intended to list notes and possibly archive files
3865 that should also be searched by these two commands.
3866 In fact, if the first element in the list is the symbol `agenda-archives',
3867 then all archive files of all agenda files will be added to the search
3868 scope."
3869 :group 'org-agenda
3870 :type '(set :greedy t
3871 (const :tag "Agenda Archives" agenda-archives)
3872 (repeat :inline t (file))))
3874 (org-defvaralias 'org-agenda-multi-occur-extra-files
3875 'org-agenda-text-search-extra-files)
3877 (defcustom org-agenda-skip-unavailable-files nil
3878 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3879 A nil value means to remove them, after a query, from the list."
3880 :group 'org-agenda
3881 :type 'boolean)
3883 (defcustom org-calendar-to-agenda-key [?c]
3884 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3885 The command `org-calendar-goto-agenda' will be bound to this key. The
3886 default is the character `c' because then `c' can be used to switch back and
3887 forth between agenda and calendar."
3888 :group 'org-agenda
3889 :type 'sexp)
3891 (defcustom org-calendar-insert-diary-entry-key [?i]
3892 "The key to be installed in `calendar-mode-map' for adding diary entries.
3893 This option is irrelevant until `org-agenda-diary-file' has been configured
3894 to point to an Org-mode file. When that is the case, the command
3895 `org-agenda-diary-entry' will be bound to the key given here, by default
3896 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3897 if you want to continue doing this, you need to change this to a different
3898 key."
3899 :group 'org-agenda
3900 :type 'sexp)
3902 (defcustom org-agenda-diary-file 'diary-file
3903 "File to which to add new entries with the `i' key in agenda and calendar.
3904 When this is the symbol `diary-file', the functionality in the Emacs
3905 calendar will be used to add entries to the `diary-file'. But when this
3906 points to a file, `org-agenda-diary-entry' will be used instead."
3907 :group 'org-agenda
3908 :type '(choice
3909 (const :tag "The standard Emacs diary file" diary-file)
3910 (file :tag "Special Org file diary entries")))
3912 (eval-after-load "calendar"
3913 '(progn
3914 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3915 'org-calendar-goto-agenda)
3916 (add-hook 'calendar-mode-hook
3917 (lambda ()
3918 (unless (eq org-agenda-diary-file 'diary-file)
3919 (define-key calendar-mode-map
3920 org-calendar-insert-diary-entry-key
3921 'org-agenda-diary-entry))))))
3923 (defgroup org-latex nil
3924 "Options for embedding LaTeX code into Org-mode."
3925 :tag "Org LaTeX"
3926 :group 'org)
3928 (defcustom org-format-latex-options
3929 '(:foreground default :background default :scale 1.0
3930 :html-foreground "Black" :html-background "Transparent"
3931 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3932 "Options for creating images from LaTeX fragments.
3933 This is a property list with the following properties:
3934 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3935 `default' means use the foreground of the default face.
3936 `auto' means use the foreground from the text face.
3937 :background the background color, or \"Transparent\".
3938 `default' means use the background of the default face.
3939 `auto' means use the background from the text face.
3940 :scale a scaling factor for the size of the images, to get more pixels
3941 :html-foreground, :html-background, :html-scale
3942 the same numbers for HTML export.
3943 :matchers a list indicating which matchers should be used to
3944 find LaTeX fragments. Valid members of this list are:
3945 \"begin\" find environments
3946 \"$1\" find single characters surrounded by $.$
3947 \"$\" find math expressions surrounded by $...$
3948 \"$$\" find math expressions surrounded by $$....$$
3949 \"\\(\" find math expressions surrounded by \\(...\\)
3950 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3951 :group 'org-latex
3952 :type 'plist)
3954 (defcustom org-format-latex-signal-error t
3955 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3956 When nil, just push out a message."
3957 :group 'org-latex
3958 :version "24.1"
3959 :type 'boolean)
3961 (defcustom org-latex-to-mathml-jar-file nil
3962 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3963 Use this to specify additional executable file say a jar file.
3965 When using MathToWeb as the converter, specify the full-path to
3966 your mathtoweb.jar file."
3967 :group 'org-latex
3968 :version "24.1"
3969 :type '(choice
3970 (const :tag "None" nil)
3971 (file :tag "JAR file" :must-match t)))
3973 (defcustom org-latex-to-mathml-convert-command nil
3974 "Command to convert LaTeX fragments to MathML.
3975 Replace format-specifiers in the command as noted below and use
3976 `shell-command' to convert LaTeX to MathML.
3977 %j: Executable file in fully expanded form as specified by
3978 `org-latex-to-mathml-jar-file'.
3979 %I: Input LaTeX file in fully expanded form
3980 %o: Output MathML file
3981 This command is used by `org-create-math-formula'.
3983 When using MathToWeb as the converter, set this to
3984 \"java -jar %j -unicode -force -df %o %I\"."
3985 :group 'org-latex
3986 :version "24.1"
3987 :type '(choice
3988 (const :tag "None" nil)
3989 (string :tag "\nShell command")))
3991 (defcustom org-latex-create-formula-image-program 'dvipng
3992 "Program to convert LaTeX fragments with.
3994 dvipng Process the LaTeX fragments to dvi file, then convert
3995 dvi files to png files using dvipng.
3996 This will also include processing of non-math environments.
3997 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
3998 to convert pdf files to png files"
3999 :group 'org-latex
4000 :version "24.1"
4001 :type '(choice
4002 (const :tag "dvipng" dvipng)
4003 (const :tag "imagemagick" imagemagick)))
4005 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4006 "Path to store latex preview images.
4007 A relative path here creates many directories relative to the
4008 processed org files paths. An absolute path puts all preview
4009 images at the same place."
4010 :group 'org-latex
4011 :version "24.3"
4012 :type 'string)
4014 (defun org-format-latex-mathml-available-p ()
4015 "Return t if `org-latex-to-mathml-convert-command' is usable."
4016 (save-match-data
4017 (when (and (boundp 'org-latex-to-mathml-convert-command)
4018 org-latex-to-mathml-convert-command)
4019 (let ((executable (car (split-string
4020 org-latex-to-mathml-convert-command))))
4021 (when (executable-find executable)
4022 (if (string-match
4023 "%j" org-latex-to-mathml-convert-command)
4024 (file-readable-p org-latex-to-mathml-jar-file)
4025 t))))))
4027 (defcustom org-format-latex-header "\\documentclass{article}
4028 \\usepackage[usenames]{color}
4029 \[PACKAGES]
4030 \[DEFAULT-PACKAGES]
4031 \\pagestyle{empty} % do not remove
4032 % The settings below are copied from fullpage.sty
4033 \\setlength{\\textwidth}{\\paperwidth}
4034 \\addtolength{\\textwidth}{-3cm}
4035 \\setlength{\\oddsidemargin}{1.5cm}
4036 \\addtolength{\\oddsidemargin}{-2.54cm}
4037 \\setlength{\\evensidemargin}{\\oddsidemargin}
4038 \\setlength{\\textheight}{\\paperheight}
4039 \\addtolength{\\textheight}{-\\headheight}
4040 \\addtolength{\\textheight}{-\\headsep}
4041 \\addtolength{\\textheight}{-\\footskip}
4042 \\addtolength{\\textheight}{-3cm}
4043 \\setlength{\\topmargin}{1.5cm}
4044 \\addtolength{\\topmargin}{-2.54cm}"
4045 "The document header used for processing LaTeX fragments.
4046 It is imperative that this header make sure that no page number
4047 appears on the page. The package defined in the variables
4048 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4049 will either replace the placeholder \"[PACKAGES]\" in this
4050 header, or they will be appended."
4051 :group 'org-latex
4052 :type 'string)
4054 (defun org-set-packages-alist (var val)
4055 "Set the packages alist and make sure it has 3 elements per entry."
4056 (set var (mapcar (lambda (x)
4057 (if (and (consp x) (= (length x) 2))
4058 (list (car x) (nth 1 x) t)
4060 val)))
4062 (defun org-get-packages-alist (var)
4063 "Get the packages alist and make sure it has 3 elements per entry."
4064 (mapcar (lambda (x)
4065 (if (and (consp x) (= (length x) 2))
4066 (list (car x) (nth 1 x) t)
4068 (default-value var)))
4070 (defcustom org-latex-default-packages-alist
4071 '(("AUTO" "inputenc" t)
4072 ("T1" "fontenc" t)
4073 ("" "fixltx2e" nil)
4074 ("" "graphicx" t)
4075 ("" "longtable" nil)
4076 ("" "float" nil)
4077 ("" "wrapfig" nil)
4078 ("" "rotating" nil)
4079 ("normalem" "ulem" t)
4080 ("" "amsmath" t)
4081 ("" "textcomp" t)
4082 ("" "marvosym" t)
4083 ("" "wasysym" t)
4084 ("" "amssymb" t)
4085 ("" "capt-of" nil)
4086 ("" "hyperref" nil)
4087 "\\tolerance=1000")
4088 "Alist of default packages to be inserted in the header.
4090 Change this only if one of the packages here causes an
4091 incompatibility with another package you are using.
4093 The packages in this list are needed by one part or another of
4094 Org mode to function properly:
4096 - inputenc, fontenc: for basic font and character selection
4097 - fixltx2e: Important patches of LaTeX itself
4098 - graphicx: for including images
4099 - longtable: For multipage tables
4100 - float, wrapfig: for figure placement
4101 - rotating: for sideways figures and tables
4102 - ulem: for underline and strike-through
4103 - amsmath: for subscript and superscript and math environments
4104 - textcomp, marvosymb, wasysym, amssymb: for various symbols used
4105 for interpreting the entities in `org-entities'. You can skip
4106 some of these packages if you don't use any of their symbols.
4107 - capt-of: for captions outside of floats
4108 - hyperref: for cross references
4110 Therefore you should not modify this variable unless you know
4111 what you are doing. The one reason to change it anyway is that
4112 you might be loading some other package that conflicts with one
4113 of the default packages. Each element is either a cell or
4114 a string.
4116 A cell is of the format:
4118 \( \"options\" \"package\" SNIPPET-FLAG).
4120 If SNIPPET-FLAG is non-nil, the package also needs to be included
4121 when compiling LaTeX snippets into images for inclusion into
4122 non-LaTeX output.
4124 A string will be inserted as-is in the header of the document."
4125 :group 'org-latex
4126 :group 'org-export-latex
4127 :set 'org-set-packages-alist
4128 :get 'org-get-packages-alist
4129 :version "24.1"
4130 :type '(repeat
4131 (choice
4132 (list :tag "options/package pair"
4133 (string :tag "options")
4134 (string :tag "package")
4135 (boolean :tag "Snippet"))
4136 (string :tag "A line of LaTeX"))))
4138 (defcustom org-latex-packages-alist nil
4139 "Alist of packages to be inserted in every LaTeX header.
4141 These will be inserted after `org-latex-default-packages-alist'.
4142 Each element is either a cell or a string.
4144 A cell is of the format:
4146 \(\"options\" \"package\" SNIPPET-FLAG)
4148 SNIPPET-FLAG, when non-nil, indicates that this package is also
4149 needed when turning LaTeX snippets into images for inclusion into
4150 non-LaTeX output.
4152 A string will be inserted as-is in the header of the document.
4154 Make sure that you only list packages here which:
4156 - you want in every file;
4157 - do not conflict with the setup in `org-format-latex-header';
4158 - do not conflict with the default packages in
4159 `org-latex-default-packages-alist'."
4160 :group 'org-latex
4161 :group 'org-export-latex
4162 :set 'org-set-packages-alist
4163 :get 'org-get-packages-alist
4164 :type '(repeat
4165 (choice
4166 (list :tag "options/package pair"
4167 (string :tag "options")
4168 (string :tag "package")
4169 (boolean :tag "Snippet"))
4170 (string :tag "A line of LaTeX"))))
4172 (defgroup org-appearance nil
4173 "Settings for Org-mode appearance."
4174 :tag "Org Appearance"
4175 :group 'org)
4177 (defcustom org-level-color-stars-only nil
4178 "Non-nil means fontify only the stars in each headline.
4179 When nil, the entire headline is fontified.
4180 Changing it requires restart of `font-lock-mode' to become effective
4181 also in regions already fontified."
4182 :group 'org-appearance
4183 :type 'boolean)
4185 (defcustom org-hide-leading-stars nil
4186 "Non-nil means hide the first N-1 stars in a headline.
4187 This works by using the face `org-hide' for these stars. This
4188 face is white for a light background, and black for a dark
4189 background. You may have to customize the face `org-hide' to
4190 make this work.
4191 Changing it requires restart of `font-lock-mode' to become effective
4192 also in regions already fontified.
4193 You may also set this on a per-file basis by adding one of the following
4194 lines to the buffer:
4196 #+STARTUP: hidestars
4197 #+STARTUP: showstars"
4198 :group 'org-appearance
4199 :type 'boolean)
4201 (defcustom org-hidden-keywords nil
4202 "List of symbols corresponding to keywords to be hidden the org buffer.
4203 For example, a value '(title) for this list will make the document's title
4204 appear in the buffer without the initial #+TITLE: keyword."
4205 :group 'org-appearance
4206 :version "24.1"
4207 :type '(set (const :tag "#+AUTHOR" author)
4208 (const :tag "#+DATE" date)
4209 (const :tag "#+EMAIL" email)
4210 (const :tag "#+TITLE" title)))
4212 (defcustom org-custom-properties nil
4213 "List of properties (as strings) with a special meaning.
4214 The default use of these custom properties is to let the user
4215 hide them with `org-toggle-custom-properties-visibility'."
4216 :group 'org-properties
4217 :group 'org-appearance
4218 :version "24.3"
4219 :type '(repeat (string :tag "Property Name")))
4221 (defcustom org-fontify-done-headline nil
4222 "Non-nil means change the face of a headline if it is marked DONE.
4223 Normally, only the TODO/DONE keyword indicates the state of a headline.
4224 When this is non-nil, the headline after the keyword is set to the
4225 `org-headline-done' as an additional indication."
4226 :group 'org-appearance
4227 :type 'boolean)
4229 (defcustom org-fontify-emphasized-text t
4230 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4231 Changing this variable requires a restart of Emacs to take effect."
4232 :group 'org-appearance
4233 :type 'boolean)
4235 (defcustom org-fontify-whole-heading-line nil
4236 "Non-nil means fontify the whole line for headings.
4237 This is useful when setting a background color for the
4238 org-level-* faces."
4239 :group 'org-appearance
4240 :type 'boolean)
4242 (defcustom org-highlight-latex-and-related nil
4243 "Non-nil means highlight LaTeX related syntax in the buffer.
4244 When non nil, the value should be a list containing any of the
4245 following symbols:
4246 `latex' Highlight LaTeX snippets and environments.
4247 `script' Highlight subscript and superscript.
4248 `entities' Highlight entities."
4249 :group 'org-appearance
4250 :version "24.4"
4251 :package-version '(Org . "8.0")
4252 :type '(choice
4253 (const :tag "No highlighting" nil)
4254 (set :greedy t :tag "Highlight"
4255 (const :tag "LaTeX snippets and environments" latex)
4256 (const :tag "Subscript and superscript" script)
4257 (const :tag "Entities" entities))))
4259 (defcustom org-hide-emphasis-markers nil
4260 "Non-nil mean font-lock should hide the emphasis marker characters."
4261 :group 'org-appearance
4262 :type 'boolean)
4264 (defcustom org-hide-macro-markers nil
4265 "Non-nil mean font-lock should hide the brackets marking macro calls."
4266 :group 'org-appearance
4267 :type 'boolean)
4269 (defcustom org-pretty-entities nil
4270 "Non-nil means show entities as UTF8 characters.
4271 When nil, the \\name form remains in the buffer."
4272 :group 'org-appearance
4273 :version "24.1"
4274 :type 'boolean)
4276 (defcustom org-pretty-entities-include-sub-superscripts t
4277 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4278 :group 'org-appearance
4279 :version "24.1"
4280 :type 'boolean)
4282 (defvar org-emph-re nil
4283 "Regular expression for matching emphasis.
4284 After a match, the match groups contain these elements:
4285 0 The match of the full regular expression, including the characters
4286 before and after the proper match
4287 1 The character before the proper match, or empty at beginning of line
4288 2 The proper match, including the leading and trailing markers
4289 3 The leading marker like * or /, indicating the type of highlighting
4290 4 The text between the emphasis markers, not including the markers
4291 5 The character after the match, empty at the end of a line")
4292 (defvar org-verbatim-re nil
4293 "Regular expression for matching verbatim text.")
4294 (defvar org-emphasis-regexp-components) ; defined just below
4295 (defvar org-emphasis-alist) ; defined just below
4296 (defun org-set-emph-re (var val)
4297 "Set variable and compute the emphasis regular expression."
4298 (set var val)
4299 (when (and (boundp 'org-emphasis-alist)
4300 (boundp 'org-emphasis-regexp-components)
4301 org-emphasis-alist org-emphasis-regexp-components)
4302 (let* ((e org-emphasis-regexp-components)
4303 (pre (car e))
4304 (post (nth 1 e))
4305 (border (nth 2 e))
4306 (body (nth 3 e))
4307 (nl (nth 4 e))
4308 (body1 (concat body "*?"))
4309 (markers (mapconcat 'car org-emphasis-alist ""))
4310 (vmarkers (mapconcat
4311 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4312 org-emphasis-alist "")))
4313 ;; make sure special characters appear at the right position in the class
4314 (if (string-match "\\^" markers)
4315 (setq markers (concat (replace-match "" t t markers) "^")))
4316 (if (string-match "-" markers)
4317 (setq markers (concat (replace-match "" t t markers) "-")))
4318 (if (string-match "\\^" vmarkers)
4319 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4320 (if (string-match "-" vmarkers)
4321 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4322 (if (> nl 0)
4323 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4324 (int-to-string nl) "\\}")))
4325 ;; Make the regexp
4326 (setq org-emph-re
4327 (concat "\\([" pre "]\\|^\\)"
4328 "\\("
4329 "\\([" markers "]\\)"
4330 "\\("
4331 "[^" border "]\\|"
4332 "[^" border "]"
4333 body1
4334 "[^" border "]"
4335 "\\)"
4336 "\\3\\)"
4337 "\\([" post "]\\|$\\)"))
4338 (setq org-verbatim-re
4339 (concat "\\([" pre "]\\|^\\)"
4340 "\\("
4341 "\\([" vmarkers "]\\)"
4342 "\\("
4343 "[^" border "]\\|"
4344 "[^" border "]"
4345 body1
4346 "[^" border "]"
4347 "\\)"
4348 "\\3\\)"
4349 "\\([" post "]\\|$\\)")))))
4351 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4352 ;; set this option proved cumbersome. See this message/thread:
4353 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4354 (defvar org-emphasis-regexp-components
4355 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4356 "Components used to build the regular expression for emphasis.
4357 This is a list with five entries. Terminology: In an emphasis string
4358 like \" *strong word* \", we call the initial space PREMATCH, the final
4359 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4360 and \"trong wor\" is the body. The different components in this variable
4361 specify what is allowed/forbidden in each part:
4363 pre Chars allowed as prematch. Beginning of line will be allowed too.
4364 post Chars allowed as postmatch. End of line will be allowed too.
4365 border The chars *forbidden* as border characters.
4366 body-regexp A regexp like \".\" to match a body character. Don't use
4367 non-shy groups here, and don't allow newline here.
4368 newline The maximum number of newlines allowed in an emphasis exp.
4370 You need to reload Org or to restart Emacs after customizing this.")
4372 (defcustom org-emphasis-alist
4373 `(("*" bold)
4374 ("/" italic)
4375 ("_" underline)
4376 ("=" org-verbatim verbatim)
4377 ("~" org-code verbatim)
4378 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4379 "Alist of characters and faces to emphasize text.
4380 Text starting and ending with a special character will be emphasized,
4381 for example *bold*, _underlined_ and /italic/. This variable sets the
4382 marker characters and the face to be used by font-lock for highlighting
4383 in Org-mode Emacs buffers.
4385 You need to reload Org or to restart Emacs after customizing this."
4386 :group 'org-appearance
4387 :set 'org-set-emph-re
4388 :version "24.4"
4389 :package-version '(Org . "8.0")
4390 :type '(repeat
4391 (list
4392 (string :tag "Marker character")
4393 (choice
4394 (face :tag "Font-lock-face")
4395 (plist :tag "Face property list"))
4396 (option (const verbatim)))))
4398 (defvar org-protecting-blocks
4399 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4400 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4401 This is needed for font-lock setup.")
4403 ;;; Miscellaneous options
4405 (defgroup org-completion nil
4406 "Completion in Org-mode."
4407 :tag "Org Completion"
4408 :group 'org)
4410 (defcustom org-completion-use-ido nil
4411 "Non-nil means use ido completion wherever possible.
4412 Note that `ido-mode' must be active for this variable to be relevant.
4413 If you decide to turn this variable on, you might well want to turn off
4414 `org-outline-path-complete-in-steps'.
4415 See also `org-completion-use-iswitchb'."
4416 :group 'org-completion
4417 :type 'boolean)
4419 (defcustom org-completion-use-iswitchb nil
4420 "Non-nil means use iswitchb completion wherever possible.
4421 Note that `iswitchb-mode' must be active for this variable to be relevant.
4422 If you decide to turn this variable on, you might well want to turn off
4423 `org-outline-path-complete-in-steps'.
4424 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4425 :group 'org-completion
4426 :type 'boolean)
4428 (defcustom org-completion-fallback-command 'hippie-expand
4429 "The expansion command called by \\[pcomplete] in normal context.
4430 Normal means, no org-mode-specific context."
4431 :group 'org-completion
4432 :type 'function)
4434 ;;; Functions and variables from their packages
4435 ;; Declared here to avoid compiler warnings
4437 ;; XEmacs only
4438 (defvar outline-mode-menu-heading)
4439 (defvar outline-mode-menu-show)
4440 (defvar outline-mode-menu-hide)
4441 (defvar zmacs-regions) ; XEmacs regions
4443 ;; Emacs only
4444 (defvar mark-active)
4446 ;; Various packages
4447 (declare-function calendar-absolute-from-iso "cal-iso" (date))
4448 (declare-function calendar-forward-day "cal-move" (arg))
4449 (declare-function calendar-goto-date "cal-move" (date))
4450 (declare-function calendar-goto-today "cal-move" ())
4451 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4452 (defvar calc-embedded-close-formula)
4453 (defvar calc-embedded-open-formula)
4454 (declare-function cdlatex-tab "ext:cdlatex" ())
4455 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4456 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4457 (defvar font-lock-unfontify-region-function)
4458 (declare-function iswitchb-read-buffer "iswitchb"
4459 (prompt &optional default require-match start matches-set))
4460 (defvar iswitchb-temp-buflist)
4461 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4462 (defvar org-agenda-tags-todo-honor-ignore-options)
4463 (declare-function org-agenda-skip "org-agenda" ())
4464 (declare-function
4465 org-agenda-format-item "org-agenda"
4466 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4467 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4468 (declare-function org-agenda-change-all-lines "org-agenda"
4469 (newhead hdmarker &optional fixface just-this))
4470 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4471 (declare-function org-agenda-maybe-redo "org-agenda" ())
4472 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4473 (beg end))
4474 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4475 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4476 "org-agenda" (&optional end))
4477 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4478 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4479 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4480 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4481 (declare-function org-indent-mode "org-indent" (&optional arg))
4482 (declare-function parse-time-string "parse-time" (string))
4483 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4484 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4485 (defvar remember-data-file)
4486 (defvar texmathp-why)
4487 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4488 (declare-function table--at-cell-p "table" (position &optional object at-column))
4489 (declare-function calc-eval "calc" (str &optional separator &rest args))
4491 ;;;###autoload
4492 (defun turn-on-orgtbl ()
4493 "Unconditionally turn on `orgtbl-mode'."
4494 (require 'org-table)
4495 (orgtbl-mode 1))
4497 (defun org-at-table-p (&optional table-type)
4498 "Return t if the cursor is inside an org-type table.
4499 If TABLE-TYPE is non-nil, also check for table.el-type tables."
4500 (if org-enable-table-editor
4501 (save-excursion
4502 (beginning-of-line 1)
4503 (looking-at (if table-type org-table-any-line-regexp
4504 org-table-line-regexp)))
4505 nil))
4506 (defsubst org-table-p () (org-at-table-p))
4508 (defun org-at-table.el-p ()
4509 "Return t if and only if we are at a table.el table."
4510 (and (org-at-table-p 'any)
4511 (save-excursion
4512 (goto-char (org-table-begin 'any))
4513 (looking-at org-table1-hline-regexp))))
4515 (defun org-table-recognize-table.el ()
4516 "If there is a table.el table nearby, recognize it and move into it."
4517 (if org-table-tab-recognizes-table.el
4518 (if (org-at-table.el-p)
4519 (progn
4520 (beginning-of-line 1)
4521 (if (looking-at org-table-dataline-regexp)
4523 (if (looking-at org-table1-hline-regexp)
4524 (progn
4525 (beginning-of-line 2)
4526 (if (looking-at org-table-any-border-regexp)
4527 (beginning-of-line -1)))))
4528 (if (re-search-forward "|" (org-table-end t) t)
4529 (progn
4530 (require 'table)
4531 (if (table--at-cell-p (point))
4533 (message "recognizing table.el table...")
4534 (table-recognize-table)
4535 (message "recognizing table.el table...done")))
4536 (error "This should not happen"))
4538 nil)
4539 nil))
4541 (defun org-at-table-hline-p ()
4542 "Return t if the cursor is inside a hline in a table."
4543 (if org-enable-table-editor
4544 (save-excursion
4545 (beginning-of-line 1)
4546 (looking-at org-table-hline-regexp))
4547 nil))
4549 (defun org-table-map-tables (function &optional quietly)
4550 "Apply FUNCTION to the start of all tables in the buffer."
4551 (save-excursion
4552 (save-restriction
4553 (widen)
4554 (goto-char (point-min))
4555 (while (re-search-forward org-table-any-line-regexp nil t)
4556 (unless quietly
4557 (message "Mapping tables: %d%%" (/ (* 100.0 (point)) (buffer-size))))
4558 (beginning-of-line 1)
4559 (when (and (looking-at org-table-line-regexp)
4560 ;; Exclude tables in src/example/verbatim/clocktable blocks
4561 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4562 (save-excursion (funcall function))
4563 (or (looking-at org-table-line-regexp)
4564 (forward-char 1)))
4565 (re-search-forward org-table-any-border-regexp nil 1))))
4566 (unless quietly (message "Mapping tables: done")))
4568 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4569 (declare-function org-clock-update-mode-line "org-clock" ())
4570 (declare-function org-resolve-clocks "org-clock"
4571 (&optional also-non-dangling-p prompt last-valid))
4573 (defun org-at-TBLFM-p (&optional pos)
4574 "Return t when point (or POS) is in #+TBLFM line."
4575 (save-excursion
4576 (let ((pos pos)))
4577 (goto-char (or pos (point)))
4578 (beginning-of-line 1)
4579 (looking-at org-TBLFM-regexp)))
4581 (defvar org-clock-start-time)
4582 (defvar org-clock-marker (make-marker)
4583 "Marker recording the last clock-in.")
4584 (defvar org-clock-hd-marker (make-marker)
4585 "Marker recording the last clock-in, but the headline position.")
4586 (defvar org-clock-heading ""
4587 "The heading of the current clock entry.")
4588 (defun org-clock-is-active ()
4589 "Return the buffer where the clock is currently running.
4590 Return nil if no clock is running."
4591 (marker-buffer org-clock-marker))
4593 (defun org-check-running-clock ()
4594 "Check if the current buffer contains the running clock.
4595 If yes, offer to stop it and to save the buffer with the changes."
4596 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4597 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4598 (buffer-name))))
4599 (org-clock-out)
4600 (when (y-or-n-p "Save changed buffer?")
4601 (save-buffer))))
4603 (defun org-clocktable-try-shift (dir n)
4604 "Check if this line starts a clock table, if yes, shift the time block."
4605 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4606 (org-clocktable-shift dir n)))
4608 ;;;###autoload
4609 (defun org-clock-persistence-insinuate ()
4610 "Set up hooks for clock persistence."
4611 (require 'org-clock)
4612 (add-hook 'org-mode-hook 'org-clock-load)
4613 (add-hook 'kill-emacs-hook 'org-clock-save))
4615 (defgroup org-archive nil
4616 "Options concerning archiving in Org-mode."
4617 :tag "Org Archive"
4618 :group 'org-structure)
4620 (defcustom org-archive-location "%s_archive::"
4621 "The location where subtrees should be archived.
4623 The value of this variable is a string, consisting of two parts,
4624 separated by a double-colon. The first part is a filename and
4625 the second part is a headline.
4627 When the filename is omitted, archiving happens in the same file.
4628 %s in the filename will be replaced by the current file
4629 name (without the directory part). Archiving to a different file
4630 is useful to keep archived entries from contributing to the
4631 Org-mode Agenda.
4633 The archived entries will be filed as subtrees of the specified
4634 headline. When the headline is omitted, the subtrees are simply
4635 filed away at the end of the file, as top-level entries. Also in
4636 the heading you can use %s to represent the file name, this can be
4637 useful when using the same archive for a number of different files.
4639 Here are a few examples:
4640 \"%s_archive::\"
4641 If the current file is Projects.org, archive in file
4642 Projects.org_archive, as top-level trees. This is the default.
4644 \"::* Archived Tasks\"
4645 Archive in the current file, under the top-level headline
4646 \"* Archived Tasks\".
4648 \"~/org/archive.org::\"
4649 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4651 \"~/org/archive.org::* From %s\"
4652 Archive in file ~/org/archive.org (absolute path), under headlines
4653 \"From FILENAME\" where file name is the current file name.
4655 \"~/org/datetree.org::datetree/* Finished Tasks\"
4656 The \"datetree/\" string is special, signifying to archive
4657 items to the datetree. Items are placed in either the CLOSED
4658 date of the item, or the current date if there is no CLOSED date.
4659 The heading will be a subentry to the current date. There doesn't
4660 need to be a heading, but there always needs to be a slash after
4661 datetree. For example, to store archived items directly in the
4662 datetree, use \"~/org/datetree.org::datetree/\".
4664 \"basement::** Finished Tasks\"
4665 Archive in file ./basement (relative path), as level 3 trees
4666 below the level 2 heading \"** Finished Tasks\".
4668 You may set this option on a per-file basis by adding to the buffer a
4669 line like
4671 #+ARCHIVE: basement::** Finished Tasks
4673 You may also define it locally for a subtree by setting an ARCHIVE property
4674 in the entry. If such a property is found in an entry, or anywhere up
4675 the hierarchy, it will be used."
4676 :group 'org-archive
4677 :type 'string)
4679 (defcustom org-agenda-skip-archived-trees t
4680 "Non-nil means the agenda will skip any items located in archived trees.
4681 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4682 variable is no longer recommended, you should leave it at the value t.
4683 Instead, use the key `v' to cycle the archives-mode in the agenda."
4684 :group 'org-archive
4685 :group 'org-agenda-skip
4686 :type 'boolean)
4688 (defcustom org-columns-skip-archived-trees t
4689 "Non-nil means ignore archived trees when creating column view."
4690 :group 'org-archive
4691 :group 'org-properties
4692 :type 'boolean)
4694 (defcustom org-cycle-open-archived-trees nil
4695 "Non-nil means `org-cycle' will open archived trees.
4696 An archived tree is a tree marked with the tag ARCHIVE.
4697 When nil, archived trees will stay folded. You can still open them with
4698 normal outline commands like `show-all', but not with the cycling commands."
4699 :group 'org-archive
4700 :group 'org-cycle
4701 :type 'boolean)
4703 (defcustom org-sparse-tree-open-archived-trees nil
4704 "Non-nil means sparse tree construction shows matches in archived trees.
4705 When nil, matches in these trees are highlighted, but the trees are kept in
4706 collapsed state."
4707 :group 'org-archive
4708 :group 'org-sparse-trees
4709 :type 'boolean)
4711 (defcustom org-sparse-tree-default-date-type 'scheduled-or-deadline
4712 "The default date type when building a sparse tree.
4713 When this is nil, a date is a scheduled or a deadline timestamp.
4714 Otherwise, these types are allowed:
4716 all: all timestamps
4717 active: only active timestamps (<...>)
4718 inactive: only inactive timestamps (<...)
4719 scheduled: only scheduled timestamps
4720 deadline: only deadline timestamps"
4721 :type '(choice (const :tag "Scheduled or deadline" scheduled-or-deadline)
4722 (const :tag "All timestamps" all)
4723 (const :tag "Only active timestamps" active)
4724 (const :tag "Only inactive timestamps" inactive)
4725 (const :tag "Only scheduled timestamps" scheduled)
4726 (const :tag "Only deadline timestamps" deadline)
4727 (const :tag "Only closed timestamps" closed))
4728 :version "24.3"
4729 :group 'org-sparse-trees)
4731 (defun org-cycle-hide-archived-subtrees (state)
4732 "Re-hide all archived subtrees after a visibility state change."
4733 (when (and (not org-cycle-open-archived-trees)
4734 (not (memq state '(overview folded))))
4735 (save-excursion
4736 (let* ((globalp (memq state '(contents all)))
4737 (beg (if globalp (point-min) (point)))
4738 (end (if globalp (point-max) (org-end-of-subtree t))))
4739 (org-hide-archived-subtrees beg end)
4740 (goto-char beg)
4741 (if (looking-at (concat ".*:" org-archive-tag ":"))
4742 (message "%s" (substitute-command-keys
4743 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4745 (defun org-force-cycle-archived ()
4746 "Cycle subtree even if it is archived."
4747 (interactive)
4748 (setq this-command 'org-cycle)
4749 (let ((org-cycle-open-archived-trees t))
4750 (call-interactively 'org-cycle)))
4752 (defun org-hide-archived-subtrees (beg end)
4753 "Re-hide all archived subtrees after a visibility state change."
4754 (save-excursion
4755 (let* ((re (concat ":" org-archive-tag ":")))
4756 (goto-char beg)
4757 (while (re-search-forward re end t)
4758 (when (org-at-heading-p)
4759 (org-flag-subtree t)
4760 (org-end-of-subtree t))))))
4762 (declare-function outline-end-of-heading "outline" ())
4763 (declare-function outline-flag-region "outline" (from to flag))
4764 (defun org-flag-subtree (flag)
4765 (save-excursion
4766 (org-back-to-heading t)
4767 (outline-end-of-heading)
4768 (outline-flag-region (point)
4769 (progn (org-end-of-subtree t) (point))
4770 flag)))
4772 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4774 ;; Declare Column View Code
4776 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4777 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4778 (declare-function org-columns-compute "org-colview" (property))
4780 ;; Declare ID code
4782 (declare-function org-id-store-link "org-id")
4783 (declare-function org-id-locations-load "org-id")
4784 (declare-function org-id-locations-save "org-id")
4785 (defvar org-id-track-globally)
4787 ;;; Variables for pre-computed regular expressions, all buffer local
4789 (defvar org-todo-regexp nil
4790 "Matches any of the TODO state keywords.")
4791 (make-variable-buffer-local 'org-todo-regexp)
4792 (defvar org-not-done-regexp nil
4793 "Matches any of the TODO state keywords except the last one.")
4794 (make-variable-buffer-local 'org-not-done-regexp)
4795 (defvar org-not-done-heading-regexp nil
4796 "Matches a TODO headline that is not done.")
4797 (make-variable-buffer-local 'org-not-done-regexp)
4798 (defvar org-todo-line-regexp nil
4799 "Matches a headline and puts TODO state into group 2 if present.")
4800 (make-variable-buffer-local 'org-todo-line-regexp)
4801 (defvar org-complex-heading-regexp nil
4802 "Matches a headline and puts everything into groups:
4803 group 1: the stars
4804 group 2: The todo keyword, maybe
4805 group 3: Priority cookie
4806 group 4: True headline
4807 group 5: Tags")
4808 (make-variable-buffer-local 'org-complex-heading-regexp)
4809 (defvar org-complex-heading-regexp-format nil
4810 "Printf format to make regexp to match an exact headline.
4811 This regexp will match the headline of any node which has the
4812 exact headline text that is put into the format, but may have any
4813 TODO state, priority and tags.")
4814 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4815 (defvar org-todo-line-tags-regexp nil
4816 "Matches a headline and puts TODO state into group 2 if present.
4817 Also put tags into group 4 if tags are present.")
4818 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4820 (defconst org-plain-time-of-day-regexp
4821 (concat
4822 "\\(\\<[012]?[0-9]"
4823 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4824 "\\(--?"
4825 "\\(\\<[012]?[0-9]"
4826 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4827 "\\)?")
4828 "Regular expression to match a plain time or time range.
4829 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4830 groups carry important information:
4831 0 the full match
4832 1 the first time, range or not
4833 8 the second time, if it is a range.")
4835 (defconst org-plain-time-extension-regexp
4836 (concat
4837 "\\(\\<[012]?[0-9]"
4838 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4839 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4840 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4841 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4842 groups carry important information:
4843 0 the full match
4844 7 hours of duration
4845 9 minutes of duration")
4847 (defconst org-stamp-time-of-day-regexp
4848 (concat
4849 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4850 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4851 "\\(--?"
4852 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4853 "Regular expression to match a timestamp time or time range.
4854 After a match, the following groups carry important information:
4855 0 the full match
4856 1 date plus weekday, for back referencing to make sure both times are on the same day
4857 2 the first time, range or not
4858 4 the second time, if it is a range.")
4860 (defconst org-startup-options
4861 '(("fold" org-startup-folded t)
4862 ("overview" org-startup-folded t)
4863 ("nofold" org-startup-folded nil)
4864 ("showall" org-startup-folded nil)
4865 ("showeverything" org-startup-folded showeverything)
4866 ("content" org-startup-folded content)
4867 ("indent" org-startup-indented t)
4868 ("noindent" org-startup-indented nil)
4869 ("hidestars" org-hide-leading-stars t)
4870 ("showstars" org-hide-leading-stars nil)
4871 ("odd" org-odd-levels-only t)
4872 ("oddeven" org-odd-levels-only nil)
4873 ("align" org-startup-align-all-tables t)
4874 ("noalign" org-startup-align-all-tables nil)
4875 ("inlineimages" org-startup-with-inline-images t)
4876 ("noinlineimages" org-startup-with-inline-images nil)
4877 ("latexpreview" org-startup-with-latex-preview t)
4878 ("nolatexpreview" org-startup-with-latex-preview nil)
4879 ("customtime" org-display-custom-times t)
4880 ("logdone" org-log-done time)
4881 ("lognotedone" org-log-done note)
4882 ("nologdone" org-log-done nil)
4883 ("lognoteclock-out" org-log-note-clock-out t)
4884 ("nolognoteclock-out" org-log-note-clock-out nil)
4885 ("logrepeat" org-log-repeat state)
4886 ("lognoterepeat" org-log-repeat note)
4887 ("logdrawer" org-log-into-drawer t)
4888 ("nologdrawer" org-log-into-drawer nil)
4889 ("logstatesreversed" org-log-states-order-reversed t)
4890 ("nologstatesreversed" org-log-states-order-reversed nil)
4891 ("nologrepeat" org-log-repeat nil)
4892 ("logreschedule" org-log-reschedule time)
4893 ("lognotereschedule" org-log-reschedule note)
4894 ("nologreschedule" org-log-reschedule nil)
4895 ("logredeadline" org-log-redeadline time)
4896 ("lognoteredeadline" org-log-redeadline note)
4897 ("nologredeadline" org-log-redeadline nil)
4898 ("logrefile" org-log-refile time)
4899 ("lognoterefile" org-log-refile note)
4900 ("nologrefile" org-log-refile nil)
4901 ("fninline" org-footnote-define-inline t)
4902 ("nofninline" org-footnote-define-inline nil)
4903 ("fnlocal" org-footnote-section nil)
4904 ("fnauto" org-footnote-auto-label t)
4905 ("fnprompt" org-footnote-auto-label nil)
4906 ("fnconfirm" org-footnote-auto-label confirm)
4907 ("fnplain" org-footnote-auto-label plain)
4908 ("fnadjust" org-footnote-auto-adjust t)
4909 ("nofnadjust" org-footnote-auto-adjust nil)
4910 ("constcgs" constants-unit-system cgs)
4911 ("constSI" constants-unit-system SI)
4912 ("noptag" org-tag-persistent-alist nil)
4913 ("hideblocks" org-hide-block-startup t)
4914 ("nohideblocks" org-hide-block-startup nil)
4915 ("beamer" org-startup-with-beamer-mode t)
4916 ("entitiespretty" org-pretty-entities t)
4917 ("entitiesplain" org-pretty-entities nil))
4918 "Variable associated with STARTUP options for org-mode.
4919 Each element is a list of three items: the startup options (as written
4920 in the #+STARTUP line), the corresponding variable, and the value to set
4921 this variable to if the option is found. An optional forth element PUSH
4922 means to push this value onto the list in the variable.")
4924 (defcustom org-group-tags t
4925 "When non-nil (the default), use group tags.
4926 This can be turned on/off through `org-toggle-tags-groups'."
4927 :group 'org-tags
4928 :group 'org-startup
4929 :type 'boolean)
4931 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4933 (defun org-toggle-tags-groups ()
4934 "Toggle support for group tags.
4935 Support for group tags is controlled by the option
4936 `org-group-tags', which is non-nil by default."
4937 (interactive)
4938 (setq org-group-tags (not org-group-tags))
4939 (cond ((and (derived-mode-p 'org-agenda-mode)
4940 org-group-tags)
4941 (org-agenda-redo))
4942 ((derived-mode-p 'org-mode)
4943 (let ((org-inhibit-startup t)) (org-mode))))
4944 (message "Groups tags support has been turned %s"
4945 (if org-group-tags "on" "off")))
4947 (defun org-set-regexps-and-options (&optional tags-only)
4948 "Precompute regular expressions used in the current buffer.
4949 When optional argument TAGS-ONLY is non-nil, only compute tags
4950 related expressions."
4951 (when (derived-mode-p 'org-mode)
4952 (let ((alist (org--setup-collect-keywords
4953 (org-make-options-regexp
4954 (append '("FILETAGS" "TAGS" "SETUPFILE")
4955 (and (not tags-only)
4956 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4957 "LINK" "PRIORITIES" "PROPERTY" "SEQ_TODO"
4958 "STARTUP" "TODO" "TYP_TODO")))))))
4959 (org--setup-process-tags
4960 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4961 (unless tags-only
4962 ;; File properties.
4963 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4964 ;; Archive location.
4965 (let ((archive (cdr (assq 'archive alist))))
4966 (when archive (org-set-local 'org-archive-location archive)))
4967 ;; Category.
4968 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4969 (when cat
4970 (org-set-local 'org-category (intern cat))
4971 (org-set-local 'org-file-properties
4972 (org--update-property-plist
4973 "CATEGORY" cat org-file-properties))))
4974 ;; Columns.
4975 (let ((column (cdr (assq 'columns alist))))
4976 (when column (org-set-local 'org-columns-default-format column)))
4977 ;; Constants.
4978 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4979 ;; Link abbreviations.
4980 (let ((links (cdr (assq 'link alist))))
4981 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4982 ;; Priorities.
4983 (let ((priorities (cdr (assq 'priorities alist))))
4984 (when priorities
4985 (org-set-local 'org-highest-priority (nth 0 priorities))
4986 (org-set-local 'org-lowest-priority (nth 1 priorities))
4987 (org-set-local 'org-default-priority (nth 2 priorities))))
4988 ;; Startup options.
4989 (let ((startup (cdr (assq 'startup alist))))
4990 (dolist (option startup)
4991 (let ((entry (assoc-string option org-startup-options t)))
4992 (when entry
4993 (let ((var (nth 1 entry))
4994 (val (nth 2 entry)))
4995 (if (not (nth 3 entry)) (org-set-local var val)
4996 (unless (listp (symbol-value var))
4997 (org-set-local var nil))
4998 (add-to-list var val)))))))
4999 ;; TODO keywords.
5000 (org-set-local 'org-todo-kwd-alist nil)
5001 (org-set-local 'org-todo-key-alist nil)
5002 (org-set-local 'org-todo-key-trigger nil)
5003 (org-set-local 'org-todo-keywords-1 nil)
5004 (org-set-local 'org-done-keywords nil)
5005 (org-set-local 'org-todo-heads nil)
5006 (org-set-local 'org-todo-sets nil)
5007 (org-set-local 'org-todo-log-states nil)
5008 (let ((todo-sequences
5009 (reverse
5010 (or (cdr (assq 'todo alist))
5011 (let ((d (default-value 'org-todo-keywords)))
5012 (if (not (stringp (car d))) d
5013 ;; XXX: Backward compatibility code.
5014 (list (cons org-todo-interpretation d))))))))
5015 (dolist (sequence todo-sequences)
5016 (let* ((sequence (or (run-hook-with-args-until-success
5017 'org-todo-setup-filter-hook sequence)
5018 sequence))
5019 (sequence-type (car sequence))
5020 (keywords (cdr sequence))
5021 (sep (member "|" keywords))
5022 names alist)
5023 (dolist (k (remove "|" keywords))
5024 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5026 (error "Invalid TODO keyword %s" k))
5027 (let ((name (match-string 1 k))
5028 (key (match-string 2 k))
5029 (log (org-extract-log-state-settings k)))
5030 (push name names)
5031 (push (cons name (and key (string-to-char key))) alist)
5032 (when log (push log org-todo-log-states))))
5033 (let* ((names (nreverse names))
5034 (done (if sep (org-remove-keyword-keys (cdr sep))
5035 (last names)))
5036 (head (car names))
5037 (tail (list sequence-type head (car done) (org-last done))))
5038 (add-to-list 'org-todo-heads head 'append)
5039 (push names org-todo-sets)
5040 (setq org-done-keywords (append org-done-keywords done nil))
5041 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5042 (setq org-todo-key-alist
5043 (append org-todo-key-alist
5044 (and alist
5045 (append '((:startgroup))
5046 (nreverse alist)
5047 '((:endgroup))))))
5048 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5049 (setq org-todo-sets (nreverse org-todo-sets)
5050 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5051 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5052 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5053 ;; Compute the regular expressions and other local variables.
5054 ;; Using `org-outline-regexp-bol' would complicate them much,
5055 ;; because of the fixed white space at the end of that string.
5056 (if (not org-done-keywords)
5057 (setq org-done-keywords
5058 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5059 (setq org-not-done-keywords
5060 (org-delete-all org-done-keywords
5061 (copy-sequence org-todo-keywords-1))
5062 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5063 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5064 org-not-done-heading-regexp
5065 (format org-heading-keyword-regexp-format org-not-done-regexp)
5066 org-todo-line-regexp
5067 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5068 org-complex-heading-regexp
5069 (concat "^\\(\\*+\\)"
5070 "\\(?: +" org-todo-regexp "\\)?"
5071 "\\(?: +\\(\\[#.\\]\\)\\)?"
5072 "\\(?: +\\(.*?\\)\\)??"
5073 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5074 "[ \t]*$")
5075 org-complex-heading-regexp-format
5076 (concat "^\\(\\*+\\)"
5077 "\\(?: +" org-todo-regexp "\\)?"
5078 "\\(?: +\\(\\[#.\\]\\)\\)?"
5079 "\\(?: +"
5080 ;; Stats cookies can be stuck to body.
5081 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5082 "\\(%s\\)"
5083 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5084 "\\)"
5085 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5086 "[ \t]*$")
5087 org-todo-line-tags-regexp
5088 (concat "^\\(\\*+\\)"
5089 "\\(?: +" org-todo-regexp "\\)?"
5090 "\\(?: +\\(.*?\\)\\)??"
5091 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5092 "[ \t]*$"))
5093 (org-compute-latex-and-related-regexp)))))
5095 (defun org--setup-collect-keywords (regexp &optional files alist)
5096 "Return setup keywords values as an alist.
5098 REGEXP matches a subset of setup keywords. FILES is a list of
5099 file names already visited. It is used to avoid circular setup
5100 files. ALIST, when non-nil, is the alist computed so far.
5102 Return value contains the following keys: `archive', `category',
5103 `columns', `constants', `filetags', `link', `priorities',
5104 `property', `startup', `tags' and `todo'."
5105 (org-with-wide-buffer
5106 (goto-char (point-min))
5107 (let ((case-fold-search t))
5108 (while (re-search-forward regexp nil t)
5109 (let ((element (org-element-at-point)))
5110 (when (eq (org-element-type element) 'keyword)
5111 (let ((key (org-element-property :key element))
5112 (value (org-element-property :value element)))
5113 (cond
5114 ((equal key "ARCHIVE")
5115 (when (org-string-nw-p value)
5116 (push (cons 'archive value) alist)))
5117 ((equal key "CATEGORY") (push (cons 'category value) alist))
5118 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5119 ((equal key "CONSTANTS")
5120 (let* ((constants (assq 'constants alist))
5121 (store (cdr constants)))
5122 (dolist (pair (org-split-string value))
5123 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5124 pair)
5125 (let* ((name (match-string 1 pair))
5126 (value (match-string 2 pair))
5127 (old (assoc name store)))
5128 (if old (setcdr old value)
5129 (push (cons name value) store)))))
5130 (if constants (setcdr constants store)
5131 (push (cons 'constants store) alist))))
5132 ((equal key "FILETAGS")
5133 (when (org-string-nw-p value)
5134 (let ((old (assq 'filetags alist))
5135 (new (apply #'nconc
5136 (mapcar (lambda (x) (org-split-string x ":"))
5137 (org-split-string value)))))
5138 (if old (setcdr old (append new (cdr old)))
5139 (push (cons 'filetags new) alist)))))
5140 ((equal key "LINK")
5141 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5142 (let ((links (assq 'link alist))
5143 (pair (cons (org-match-string-no-properties 1 value)
5144 (org-match-string-no-properties 2 value))))
5145 (if links (push pair (cdr links))
5146 (push (list 'link pair) alist)))))
5147 ((equal key "PRIORITIES")
5148 (push (cons 'priorities
5149 (let ((prio (org-split-string value)))
5150 (if (< (length prio) 3) '(?A ?C ?B)
5151 (mapcar #'string-to-char prio))))
5152 alist))
5153 ((equal key "PROPERTY")
5154 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5155 (let* ((property (assq 'property alist))
5156 (value (org--update-property-plist
5157 (org-match-string-no-properties 1 value)
5158 (org-match-string-no-properties 2 value)
5159 (cdr property))))
5160 (if property (setcdr property value)
5161 (push (cons 'property value) alist)))))
5162 ((equal key "STARTUP")
5163 (let ((startup (assq 'startup alist)))
5164 (if startup
5165 (setcdr startup
5166 (append (cdr startup) (org-split-string value)))
5167 (push (cons 'startup (org-split-string value)) alist))))
5168 ((equal key "TAGS")
5169 (let ((tag-cell (assq 'tags alist)))
5170 (if tag-cell
5171 (setcdr tag-cell
5172 (append (cdr tag-cell)
5173 '("\\n")
5174 (org-split-string value)))
5175 (push (cons 'tags (org-split-string value)) alist))))
5176 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5177 (let ((todo (assq 'todo alist))
5178 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5179 (org-split-string value))))
5180 (if todo (push value (cdr todo))
5181 (push (list 'todo value) alist))))
5182 ((equal key "SETUPFILE")
5183 (unless buffer-read-only ; Do not check in Gnus messages.
5184 (let ((f (and (org-string-nw-p value)
5185 (expand-file-name
5186 (org-remove-double-quotes value)))))
5187 (when (and f (file-readable-p f) (not (member f files)))
5188 (with-temp-buffer
5189 (insert-file-contents f)
5190 (setq alist
5191 ;; Fake Org mode to benefit from cache
5192 ;; without recurring needlessly.
5193 (let ((major-mode 'org-mode))
5194 (org--setup-collect-keywords
5195 regexp (cons f files) alist)))))))))))))))
5196 alist)
5198 (defun org--setup-process-tags (tags filetags)
5199 "Precompute variables used for tags.
5200 TAGS is a list of tags and tag group symbols, as strings.
5201 FILETAGS is a list of tags, as strings."
5202 ;; Process the file tags.
5203 (org-set-local 'org-file-tags
5204 (mapcar #'org-add-prop-inherited filetags))
5205 ;; Provide default tags if no local tags are found.
5206 (when (and (not tags) org-tag-alist)
5207 (setq tags
5208 (mapcar (lambda (tag)
5209 (case (car tag)
5210 (:startgroup "{")
5211 (:endgroup "}")
5212 (:grouptags ":")
5213 (:newline "\\n")
5214 (otherwise (concat (car tag)
5215 (and (characterp (cdr tag))
5216 (format "(%c)" (cdr tag)))))))
5217 org-tag-alist)))
5218 ;; Process the tags.
5219 (org-set-local 'org-tag-groups-alist nil)
5220 (org-set-local 'org-tag-alist nil)
5221 (let (group-flag)
5222 (dolist (e tags)
5223 (cond
5224 ((equal e "{")
5225 (push '(:startgroup) org-tag-alist)
5226 (setq group-flag t))
5227 ((equal e "}")
5228 (push '(:endgroup) org-tag-alist)
5229 (setq group-flag nil))
5230 ((equal e ":")
5231 (push '(:grouptags) org-tag-alist)
5232 (setq group-flag 'append))
5233 ((equal e "\\n") (push '(:newline) org-tag-alist))
5234 ((string-match (org-re "\\`\\([[:alnum:]_@#%]+\\)\\(?:(\\(.\\))\\)?\\'")
5236 (let ((tag (match-string 1 e))
5237 (key (and (match-beginning 2)
5238 (string-to-char (match-string 2 e)))))
5239 (cond ((eq group-flag 'append)
5240 (setcar org-tag-groups-alist
5241 (append (car org-tag-groups-alist) (list tag))))
5242 (group-flag (push (list tag) org-tag-groups-alist)))
5243 (unless (assoc tag org-tag-alist)
5244 (push (cons tag key) org-tag-alist)))))))
5245 (setq org-tag-alist (nreverse org-tag-alist)))
5247 (defun org-file-contents (file &optional noerror)
5248 "Return the contents of FILE, as a string."
5249 (if (and file (file-readable-p file))
5250 (with-temp-buffer
5251 (insert-file-contents file)
5252 (buffer-string))
5253 (funcall (if noerror 'message 'error)
5254 "Cannot read file \"%s\"%s"
5255 file
5256 (let ((from (buffer-file-name (buffer-base-buffer))))
5257 (if from (concat " (referenced in file \"" from "\")") "")))))
5259 (defun org-extract-log-state-settings (x)
5260 "Extract the log state setting from a TODO keyword string.
5261 This will extract info from a string like \"WAIT(w@/!)\"."
5262 (let (kw key log1 log2)
5263 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5264 (setq kw (match-string 1 x)
5265 key (and (match-end 2) (match-string 2 x))
5266 log1 (and (match-end 3) (match-string 3 x))
5267 log2 (and (match-end 4) (match-string 4 x)))
5268 (and (or log1 log2)
5269 (list kw
5270 (and log1 (if (equal log1 "!") 'time 'note))
5271 (and log2 (if (equal log2 "!") 'time 'note)))))))
5273 (defun org-remove-keyword-keys (list)
5274 "Remove a pair of parenthesis at the end of each string in LIST."
5275 (mapcar (lambda (x)
5276 (if (string-match "(.*)$" x)
5277 (substring x 0 (match-beginning 0))
5279 list))
5281 (defun org-assign-fast-keys (alist)
5282 "Assign fast keys to a keyword-key alist.
5283 Respect keys that are already there."
5284 (let (new e (alt ?0))
5285 (while (setq e (pop alist))
5286 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5287 (cdr e)) ;; Key already assigned.
5288 (push e new)
5289 (let ((clist (string-to-list (downcase (car e))))
5290 (used (append new alist)))
5291 (when (= (car clist) ?@)
5292 (pop clist))
5293 (while (and clist (rassoc (car clist) used))
5294 (pop clist))
5295 (unless clist
5296 (while (rassoc alt used)
5297 (incf alt)))
5298 (push (cons (car e) (or (car clist) alt)) new))))
5299 (nreverse new)))
5301 ;;; Some variables used in various places
5303 (defvar org-window-configuration nil
5304 "Used in various places to store a window configuration.")
5305 (defvar org-selected-window nil
5306 "Used in various places to store a window configuration.")
5307 (defvar org-finish-function nil
5308 "Function to be called when `C-c C-c' is used.
5309 This is for getting out of special buffers like capture.")
5312 ;; FIXME: Occasionally check by commenting these, to make sure
5313 ;; no other functions uses these, forgetting to let-bind them.
5314 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5315 (defvar org-last-state)
5316 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5318 ;; Defined somewhere in this file, but used before definition.
5319 (defvar org-entities) ;; defined in org-entities.el
5320 (defvar org-struct-menu)
5321 (defvar org-org-menu)
5322 (defvar org-tbl-menu)
5324 ;;;; Define the Org-mode
5326 ;; We use a before-change function to check if a table might need
5327 ;; an update.
5328 (defvar org-table-may-need-update t
5329 "Indicates that a table might need an update.
5330 This variable is set by `org-before-change-function'.
5331 `org-table-align' sets it back to nil.")
5332 (defun org-before-change-function (beg end)
5333 "Every change indicates that a table might need an update."
5334 (setq org-table-may-need-update t))
5335 (defvar org-mode-map)
5336 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5337 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5338 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5339 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5340 (defvar org-table-buffer-is-an nil)
5342 (defvar bidi-paragraph-direction)
5343 (defvar buffer-face-mode-face)
5345 (require 'outline)
5346 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5347 (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"))
5348 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5350 ;; Other stuff we need.
5351 (require 'time-date)
5352 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5353 (require 'easymenu)
5354 (require 'overlay)
5356 ;; (require 'org-macs) moved higher up in the file before it is first used
5357 (require 'org-entities)
5358 ;; (require 'org-compat) moved higher up in the file before it is first used
5359 (require 'org-faces)
5360 (require 'org-list)
5361 (require 'org-pcomplete)
5362 (require 'org-src)
5363 (require 'org-footnote)
5364 (require 'org-macro)
5366 ;; babel
5367 (require 'ob)
5369 ;;;###autoload
5370 (define-derived-mode org-mode outline-mode "Org"
5371 "Outline-based notes management and organizer, alias
5372 \"Carsten's outline-mode for keeping track of everything.\"
5374 Org-mode develops organizational tasks around a NOTES file which
5375 contains information about projects as plain text. Org-mode is
5376 implemented on top of outline-mode, which is ideal to keep the content
5377 of large files well structured. It supports ToDo items, deadlines and
5378 time stamps, which magically appear in the diary listing of the Emacs
5379 calendar. Tables are easily created with a built-in table editor.
5380 Plain text URL-like links connect to websites, emails (VM), Usenet
5381 messages (Gnus), BBDB entries, and any files related to the project.
5382 For printing and sharing of notes, an Org-mode file (or a part of it)
5383 can be exported as a structured ASCII or HTML file.
5385 The following commands are available:
5387 \\{org-mode-map}"
5389 ;; Get rid of Outline menus, they are not needed
5390 ;; Need to do this here because define-derived-mode sets up
5391 ;; the keymap so late. Still, it is a waste to call this each time
5392 ;; we switch another buffer into org-mode.
5393 (if (featurep 'xemacs)
5394 (when (boundp 'outline-mode-menu-heading)
5395 ;; Assume this is Greg's port, it uses easymenu
5396 (easy-menu-remove outline-mode-menu-heading)
5397 (easy-menu-remove outline-mode-menu-show)
5398 (easy-menu-remove outline-mode-menu-hide))
5399 (define-key org-mode-map [menu-bar headings] 'undefined)
5400 (define-key org-mode-map [menu-bar hide] 'undefined)
5401 (define-key org-mode-map [menu-bar show] 'undefined))
5403 (org-load-modules-maybe)
5404 (easy-menu-add org-org-menu)
5405 (easy-menu-add org-tbl-menu)
5406 (org-install-agenda-files-menu)
5407 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5408 (add-to-invisibility-spec '(org-cwidth))
5409 (add-to-invisibility-spec '(org-hide-block . t))
5410 (when (featurep 'xemacs)
5411 (org-set-local 'line-move-ignore-invisible t))
5412 (org-set-local 'outline-regexp org-outline-regexp)
5413 (org-set-local 'outline-level 'org-outline-level)
5414 (setq bidi-paragraph-direction 'left-to-right)
5415 (when (and org-ellipsis
5416 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5417 (fboundp 'make-glyph-code))
5418 (unless org-display-table
5419 (setq org-display-table (make-display-table)))
5420 (set-display-table-slot
5421 org-display-table 4
5422 (vconcat (mapcar
5423 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5424 org-ellipsis)))
5425 (if (stringp org-ellipsis) org-ellipsis "..."))))
5426 (setq buffer-display-table org-display-table))
5427 (org-set-regexps-and-options)
5428 (org-set-font-lock-defaults)
5429 (when (and org-tag-faces (not org-tags-special-faces-re))
5430 ;; tag faces set outside customize.... force initialization.
5431 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5432 ;; Calc embedded
5433 (org-set-local 'calc-embedded-open-mode "# ")
5434 ;; Modify a few syntax entries
5435 (modify-syntax-entry ?@ "w")
5436 (modify-syntax-entry ?\" "\"")
5437 (modify-syntax-entry ?\\ "_")
5438 (modify-syntax-entry ?~ "_")
5439 (if org-startup-truncated (setq truncate-lines t))
5440 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5441 (org-set-local 'font-lock-unfontify-region-function
5442 'org-unfontify-region)
5443 ;; Activate before-change-function
5444 (org-set-local 'org-table-may-need-update t)
5445 (org-add-hook 'before-change-functions 'org-before-change-function nil
5446 'local)
5447 ;; Check for running clock before killing a buffer
5448 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5449 ;; Initialize macros templates.
5450 (org-macro-initialize-templates)
5451 ;; Initialize radio targets.
5452 (org-update-radio-target-regexp)
5453 ;; Indentation.
5454 (org-set-local 'indent-line-function 'org-indent-line)
5455 (org-set-local 'indent-region-function 'org-indent-region)
5456 ;; Filling and auto-filling.
5457 (org-setup-filling)
5458 ;; Comments.
5459 (org-setup-comments-handling)
5460 ;; Initialize cache.
5461 (org-element-cache-reset)
5462 ;; Beginning/end of defun
5463 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5464 (org-set-local 'end-of-defun-function
5465 (lambda ()
5466 (if (not (org-at-heading-p))
5467 (org-forward-element)
5468 (org-forward-element)
5469 (forward-char -1))))
5470 ;; Next error for sparse trees
5471 (org-set-local 'next-error-function 'org-occur-next-match)
5472 ;; Make sure dependence stuff works reliably, even for users who set it
5473 ;; too late :-(
5474 (if org-enforce-todo-dependencies
5475 (add-hook 'org-blocker-hook
5476 'org-block-todo-from-children-or-siblings-or-parent)
5477 (remove-hook 'org-blocker-hook
5478 'org-block-todo-from-children-or-siblings-or-parent))
5479 (if org-enforce-todo-checkbox-dependencies
5480 (add-hook 'org-blocker-hook
5481 'org-block-todo-from-checkboxes)
5482 (remove-hook 'org-blocker-hook
5483 'org-block-todo-from-checkboxes))
5485 ;; Align options lines
5486 (org-set-local
5487 'align-mode-rules-list
5488 '((org-in-buffer-settings
5489 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5490 (modes . '(org-mode)))))
5492 ;; Imenu
5493 (org-set-local 'imenu-create-index-function
5494 'org-imenu-get-tree)
5496 ;; Make isearch reveal context
5497 (if (or (featurep 'xemacs)
5498 (not (boundp 'outline-isearch-open-invisible-function)))
5499 ;; Emacs 21 and XEmacs make use of the hook
5500 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5501 ;; Emacs 22 deals with this through a special variable
5502 (org-set-local 'outline-isearch-open-invisible-function
5503 (lambda (&rest ignore) (org-show-context 'isearch))))
5505 ;; Setup the pcomplete hooks
5506 (set (make-local-variable 'pcomplete-command-completion-function)
5507 'org-pcomplete-initial)
5508 (set (make-local-variable 'pcomplete-command-name-function)
5509 'org-command-at-point)
5510 (set (make-local-variable 'pcomplete-default-completion-function)
5511 'ignore)
5512 (set (make-local-variable 'pcomplete-parse-arguments-function)
5513 'org-parse-arguments)
5514 (set (make-local-variable 'pcomplete-termination-string) "")
5515 (when (>= emacs-major-version 23)
5516 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5518 ;; If empty file that did not turn on org-mode automatically, make it to.
5519 (if (and org-insert-mode-line-in-empty-file
5520 (org-called-interactively-p 'any)
5521 (= (point-min) (point-max)))
5522 (insert "# -*- mode: org -*-\n\n"))
5523 (unless org-inhibit-startup
5524 (org-unmodified
5525 (and org-startup-with-beamer-mode (org-beamer-mode))
5526 (when org-startup-align-all-tables
5527 (org-table-map-tables 'org-table-align 'quietly))
5528 (when org-startup-with-inline-images
5529 (org-display-inline-images))
5530 (when org-startup-with-latex-preview
5531 (org-toggle-latex-fragment))
5532 (unless org-inhibit-startup-visibility-stuff
5533 (org-set-startup-visibility))
5534 (org-refresh-effort-properties)))
5535 ;; Try to set org-hide correctly
5536 (let ((foreground (org-find-invisible-foreground)))
5537 (if foreground
5538 (set-face-foreground 'org-hide foreground))))
5540 ;; Update `customize-package-emacs-version-alist'
5541 (add-to-list 'customize-package-emacs-version-alist
5542 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5543 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5544 ("8.2.6" . "24.4")))
5546 (defvar org-mode-transpose-word-syntax-table
5547 (let ((st (make-syntax-table text-mode-syntax-table)))
5548 (mapc (lambda(c) (modify-syntax-entry
5549 (string-to-char (car c)) "w p" st))
5550 org-emphasis-alist)
5551 st))
5553 (when (fboundp 'abbrev-table-put)
5554 (abbrev-table-put org-mode-abbrev-table
5555 :parents (list text-mode-abbrev-table)))
5557 (defun org-find-invisible-foreground ()
5558 (let ((candidates (remove
5559 "unspecified-bg"
5560 (nconc
5561 (list (face-background 'default)
5562 (face-background 'org-default))
5563 (mapcar
5564 (lambda (alist)
5565 (when (boundp alist)
5566 (cdr (assoc 'background-color (symbol-value alist)))))
5567 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5568 (list (face-foreground 'org-hide))))))
5569 (car (remove nil candidates))))
5571 (defun org-current-time (&optional rounding-minutes past)
5572 "Current time, possibly rounded to ROUNDING-MINUTES.
5573 When ROUNDING-MINUTES is not an integer, fall back on the car of
5574 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5575 the rounding returns a past time."
5576 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5577 (car org-time-stamp-rounding-minutes)))
5578 (time (decode-time)) res)
5579 (if (< r 1)
5580 (current-time)
5581 (setq res
5582 (apply 'encode-time
5583 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5584 (nthcdr 2 time))))
5585 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5586 (seconds-to-time (- (org-float-time res) (* r 60)))
5587 res))))
5589 (defun org-today ()
5590 "Return today date, considering `org-extend-today-until'."
5591 (time-to-days
5592 (time-subtract (current-time)
5593 (list 0 (* 3600 org-extend-today-until) 0))))
5595 ;;;; Font-Lock stuff, including the activators
5597 (defvar org-mouse-map (make-sparse-keymap))
5598 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5599 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5600 (when org-mouse-1-follows-link
5601 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5602 (when org-tab-follows-link
5603 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5604 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5606 (require 'font-lock)
5608 (defconst org-non-link-chars "]\t\n\r<>")
5609 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5610 "file+sys" "news" "shell" "elisp" "doi" "message"
5611 "help"))
5612 (defvar org-link-types-re nil
5613 "Matches a link that has a url-like prefix like \"http:\"")
5614 (defvar org-link-re-with-space nil
5615 "Matches a link with spaces, optional angular brackets around it.")
5616 (defvar org-link-re-with-space2 nil
5617 "Matches a link with spaces, optional angular brackets around it.")
5618 (defvar org-link-re-with-space3 nil
5619 "Matches a link with spaces, only for internal part in bracket links.")
5620 (defvar org-angle-link-re nil
5621 "Matches link with angular brackets, spaces are allowed.")
5622 (defvar org-plain-link-re nil
5623 "Matches plain link, without spaces.")
5624 (defvar org-bracket-link-regexp nil
5625 "Matches a link in double brackets.")
5626 (defvar org-bracket-link-analytic-regexp nil
5627 "Regular expression used to analyze links.
5628 Here is what the match groups contain after a match:
5629 1: http:
5630 2: http
5631 3: path
5632 4: [desc]
5633 5: desc")
5634 (defvar org-bracket-link-analytic-regexp++ nil
5635 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5636 (defvar org-any-link-re nil
5637 "Regular expression matching any link.")
5639 (defconst org-match-sexp-depth 3
5640 "Number of stacked braces for sub/superscript matching.")
5642 (defun org-create-multibrace-regexp (left right n)
5643 "Create a regular expression which will match a balanced sexp.
5644 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5645 as single character strings.
5646 The regexp returned will match the entire expression including the
5647 delimiters. It will also define a single group which contains the
5648 match except for the outermost delimiters. The maximum depth of
5649 stacked delimiters is N. Escaping delimiters is not possible."
5650 (let* ((nothing (concat "[^" left right "]*?"))
5651 (or "\\|")
5652 (re nothing)
5653 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5654 (while (> n 1)
5655 (setq n (1- n)
5656 re (concat re or next)
5657 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5658 (concat left "\\(" re "\\)" right)))
5660 (defconst org-match-substring-regexp
5661 (concat
5662 "\\(\\S-\\)\\([_^]\\)\\("
5663 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5664 "\\|"
5665 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5666 "\\|"
5667 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5668 "The regular expression matching a sub- or superscript.")
5670 (defconst org-match-substring-with-braces-regexp
5671 (concat
5672 "\\(\\S-\\)\\([_^]\\)"
5673 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5674 "The regular expression matching a sub- or superscript, forcing braces.")
5676 (defun org-make-link-regexps ()
5677 "Update the link regular expressions.
5678 This should be called after the variable `org-link-types' has changed."
5679 (let ((types-re (regexp-opt org-link-types t)))
5680 (setq org-link-types-re
5681 (concat "\\`" types-re ":")
5682 org-link-re-with-space
5683 (concat "<?" types-re ":"
5684 "\\([^" org-non-link-chars " ]"
5685 "[^" org-non-link-chars "]*"
5686 "[^" org-non-link-chars " ]\\)>?")
5687 org-link-re-with-space2
5688 (concat "<?" types-re ":"
5689 "\\([^" org-non-link-chars " ]"
5690 "[^\t\n\r]*"
5691 "[^" org-non-link-chars " ]\\)>?")
5692 org-link-re-with-space3
5693 (concat "<?" types-re ":"
5694 "\\([^" org-non-link-chars " ]"
5695 "[^\t\n\r]*\\)")
5696 org-angle-link-re
5697 (concat "<" types-re ":"
5698 "\\([^" org-non-link-chars " ]"
5699 "[^" org-non-link-chars "]*"
5700 "\\)>")
5701 org-plain-link-re
5702 (concat
5703 "\\<" types-re ":"
5704 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5705 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5706 org-bracket-link-regexp
5707 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5708 org-bracket-link-analytic-regexp
5709 (concat
5710 "\\[\\["
5711 "\\(" types-re ":\\)?"
5712 "\\([^]]+\\)"
5713 "\\]"
5714 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5715 "\\]")
5716 org-bracket-link-analytic-regexp++
5717 (concat
5718 "\\[\\["
5719 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5720 "\\([^]]+\\)"
5721 "\\]"
5722 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5723 "\\]")
5724 org-any-link-re
5725 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5726 org-angle-link-re "\\)\\|\\("
5727 org-plain-link-re "\\)"))))
5729 (org-make-link-regexps)
5731 (defvar org-emph-face nil)
5733 (defun org-do-emphasis-faces (limit)
5734 "Run through the buffer and emphasize strings."
5735 (let (rtn a)
5736 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5737 (let* ((border (char-after (match-beginning 3)))
5738 (bre (regexp-quote (char-to-string border))))
5739 (if (and (not (= border (char-after (match-beginning 4))))
5740 (not (save-match-data
5741 (string-match (concat bre ".*" bre)
5742 (replace-regexp-in-string
5743 "\n" " "
5744 (substring (match-string 2) 1 -1))))))
5745 (progn
5746 (setq rtn t)
5747 (setq a (assoc (match-string 3) org-emphasis-alist))
5748 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5749 'face
5750 (nth 1 a))
5751 (and (nth 2 a)
5752 (org-remove-flyspell-overlays-in
5753 (match-beginning 0) (match-end 0)))
5754 (add-text-properties (match-beginning 2) (match-end 2)
5755 '(font-lock-multiline t org-emphasis t))
5756 (when org-hide-emphasis-markers
5757 (add-text-properties (match-end 4) (match-beginning 5)
5758 '(invisible org-link))
5759 (add-text-properties (match-beginning 3) (match-end 3)
5760 '(invisible org-link))))))
5761 (goto-char (1+ (match-beginning 0))))
5762 rtn))
5764 (defun org-emphasize (&optional char)
5765 "Insert or change an emphasis, i.e. a font like bold or italic.
5766 If there is an active region, change that region to a new emphasis.
5767 If there is no region, just insert the marker characters and position
5768 the cursor between them.
5769 CHAR should be the marker character. If it is a space, it means to
5770 remove the emphasis of the selected region.
5771 If CHAR is not given (for example in an interactive call) it will be
5772 prompted for."
5773 (interactive)
5774 (let ((erc org-emphasis-regexp-components)
5775 (prompt "")
5776 (string "") beg end move c s)
5777 (if (org-region-active-p)
5778 (setq beg (region-beginning) end (region-end)
5779 string (buffer-substring beg end))
5780 (setq move t))
5782 (unless char
5783 (message "Emphasis marker or tag: [%s]"
5784 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5785 (setq char (read-char-exclusive)))
5786 (if (equal char ?\ )
5787 (setq s "" move nil)
5788 (unless (assoc (char-to-string char) org-emphasis-alist)
5789 (user-error "No such emphasis marker: \"%c\"" char))
5790 (setq s (char-to-string char)))
5791 (while (and (> (length string) 1)
5792 (equal (substring string 0 1) (substring string -1))
5793 (assoc (substring string 0 1) org-emphasis-alist))
5794 (setq string (substring string 1 -1)))
5795 (setq string (concat s string s))
5796 (if beg (delete-region beg end))
5797 (unless (or (bolp)
5798 (string-match (concat "[" (nth 0 erc) "\n]")
5799 (char-to-string (char-before (point)))))
5800 (insert " "))
5801 (unless (or (eobp)
5802 (string-match (concat "[" (nth 1 erc) "\n]")
5803 (char-to-string (char-after (point)))))
5804 (insert " ") (backward-char 1))
5805 (insert string)
5806 (and move (backward-char 1))))
5808 (defconst org-nonsticky-props
5809 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5811 (defsubst org-rear-nonsticky-at (pos)
5812 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5814 (defun org-activate-plain-links (limit)
5815 "Add link properties for plain links."
5816 (let (f hl)
5817 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5818 (not (member 'org-tag
5819 (get-text-property (1- (match-beginning 0)) 'face)))
5820 (not (org-in-src-block-p)))
5821 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5822 (setq f (get-text-property (match-beginning 0) 'face))
5823 (setq hl (org-match-string-no-properties 0))
5824 (if (or (eq f 'org-tag)
5825 (and (listp f) (memq 'org-tag f)))
5827 (add-text-properties (match-beginning 0) (match-end 0)
5828 (list 'mouse-face 'highlight
5829 'face 'org-link
5830 'htmlize-link `(:uri ,hl)
5831 'keymap org-mouse-map))
5832 (org-rear-nonsticky-at (match-end 0)))
5833 t)))
5835 (defun org-activate-code (limit)
5836 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5837 (progn
5838 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5839 (remove-text-properties (match-beginning 0) (match-end 0)
5840 '(display t invisible t intangible t))
5841 t)))
5843 (defcustom org-src-fontify-natively t
5844 "When non-nil, fontify code in code blocks."
5845 :type 'boolean
5846 :version "24.4"
5847 :package-version '(Org . "8.3")
5848 :group 'org-appearance
5849 :group 'org-babel)
5851 (defcustom org-allow-promoting-top-level-subtree nil
5852 "When non-nil, allow promoting a top level subtree.
5853 The leading star of the top level headline will be replaced
5854 by a #."
5855 :type 'boolean
5856 :version "24.1"
5857 :group 'org-appearance)
5859 (defun org-fontify-meta-lines-and-blocks (limit)
5860 (condition-case nil
5861 (org-fontify-meta-lines-and-blocks-1 limit)
5862 (error (message "org-mode fontification error"))))
5864 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5865 "Fontify #+ lines and blocks."
5866 (let ((case-fold-search t))
5867 (if (re-search-forward
5868 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5869 limit t)
5870 (let ((beg (match-beginning 0))
5871 (block-start (match-end 0))
5872 (block-end nil)
5873 (lang (match-string 7))
5874 (beg1 (line-beginning-position 2))
5875 (dc1 (downcase (match-string 2)))
5876 (dc3 (downcase (match-string 3)))
5877 end end1 quoting block-type ovl)
5878 (cond
5879 ((member dc1 '("+html:" "+ascii:" "+latex:"))
5880 ;; a single line of backend-specific content
5881 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5882 (remove-text-properties (match-beginning 0) (match-end 0)
5883 '(display t invisible t intangible t))
5884 (add-text-properties (match-beginning 1) (match-end 3)
5885 '(font-lock-fontified t face org-meta-line))
5886 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5887 '(font-lock-fontified t face org-block))
5888 ; for backend-specific code
5890 ((and (match-end 4) (equal dc3 "+begin"))
5891 ;; Truly a block
5892 (setq block-type (downcase (match-string 5))
5893 quoting (member block-type org-protecting-blocks))
5894 (when (re-search-forward
5895 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5896 nil t) ;; on purpose, we look further than LIMIT
5897 (setq end (min (point-max) (match-end 0))
5898 end1 (min (point-max) (1- (match-beginning 0))))
5899 (setq block-end (match-beginning 0))
5900 (when quoting
5901 (org-remove-flyspell-overlays-in beg1 end1)
5902 (remove-text-properties beg end
5903 '(display t invisible t intangible t)))
5904 (add-text-properties
5905 beg end '(font-lock-fontified t font-lock-multiline t))
5906 (add-text-properties beg beg1 '(face org-meta-line))
5907 (org-remove-flyspell-overlays-in beg beg1)
5908 (add-text-properties ; For end_src
5909 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5910 (org-remove-flyspell-overlays-in end1 end)
5911 (cond
5912 ((and lang (not (string= lang "")) org-src-fontify-natively)
5913 (org-src-font-lock-fontify-block lang block-start block-end)
5914 (add-text-properties beg1 block-end '(src-block t)))
5915 (quoting
5916 (add-text-properties beg1 (min (point-max) (1+ end1))
5917 '(face org-block))) ; end of source block
5918 ((not org-fontify-quote-and-verse-blocks))
5919 ((string= block-type "quote")
5920 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5921 ((string= block-type "verse")
5922 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5923 (add-text-properties beg beg1 '(face org-block-begin-line))
5924 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5925 '(face org-block-end-line))
5927 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5928 (org-remove-flyspell-overlays-in
5929 (match-beginning 0)
5930 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5931 (add-text-properties
5932 beg (match-end 3)
5933 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5934 '(font-lock-fontified t invisible t)
5935 '(font-lock-fontified t face org-document-info-keyword)))
5936 (add-text-properties
5937 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5938 (if (string-equal dc1 "+title:")
5939 '(font-lock-fontified t face org-document-title)
5940 '(font-lock-fontified t face org-document-info))))
5941 ((or (equal dc1 "+results")
5942 (member dc1 '("+begin:" "+end:" "+caption:" "+label:"
5943 "+orgtbl:" "+tblfm:" "+tblname:" "+results:"
5944 "+call:" "+header:" "+headers:" "+name:"))
5945 (and (match-end 4) (equal dc3 "+attr")))
5946 (org-remove-flyspell-overlays-in
5947 (match-beginning 0)
5948 (if (equal "+caption:" dc1) (match-end 2) (match-end 0)))
5949 (add-text-properties
5950 beg (match-end 0)
5951 '(font-lock-fontified t face org-meta-line))
5953 ((member dc3 '(" " ""))
5954 (org-remove-flyspell-overlays-in beg (match-end 0))
5955 (add-text-properties
5956 beg (match-end 0)
5957 '(font-lock-fontified t face font-lock-comment-face)))
5958 (t ;; just any other in-buffer setting, but not indented
5959 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5960 (add-text-properties
5961 beg (match-end 0)
5962 '(font-lock-fontified t face org-meta-line))
5963 t))))))
5965 (defun org-fontify-drawers (limit)
5966 "Fontify drawers."
5967 (when (re-search-forward org-drawer-regexp limit t)
5968 (add-text-properties
5969 (match-beginning 0) (match-end 0)
5970 '(font-lock-fontified t face org-special-keyword))
5971 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5974 (defun org-fontify-macros (limit)
5975 "Fontify macros."
5976 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5977 (add-text-properties
5978 (match-beginning 0) (match-end 0)
5979 '(font-lock-fontified t face org-macro))
5980 (when org-hide-macro-markers
5981 (add-text-properties (match-end 2) (match-beginning 2)
5982 '(invisible t))
5983 (add-text-properties (match-beginning 1) (match-end 1)
5984 '(invisible t)))
5985 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5988 (defun org-activate-angle-links (limit)
5989 "Add text properties for angle links."
5990 (if (and (re-search-forward org-angle-link-re limit t)
5991 (not (org-in-src-block-p)))
5992 (progn
5993 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5994 (add-text-properties (match-beginning 0) (match-end 0)
5995 (list 'mouse-face 'highlight
5996 'keymap org-mouse-map))
5997 (org-rear-nonsticky-at (match-end 0))
5998 t)))
6000 (defun org-activate-footnote-links (limit)
6001 "Add text properties for footnotes."
6002 (let ((fn (org-footnote-next-reference-or-definition limit)))
6003 (when fn
6004 (let* ((beg (nth 1 fn))
6005 (end (nth 2 fn))
6006 (label (car fn))
6007 (referencep (/= (line-beginning-position) beg)))
6008 (when (and referencep (nth 3 fn))
6009 (save-excursion
6010 (goto-char beg)
6011 (search-forward (or label "fn:"))
6012 (org-remove-flyspell-overlays-in beg (match-end 0))))
6013 (add-text-properties beg end
6014 (list 'mouse-face 'highlight
6015 'keymap org-mouse-map
6016 'help-echo
6017 (if referencep "Footnote reference"
6018 "Footnote definition")
6019 'font-lock-fontified t
6020 'font-lock-multiline t
6021 'face 'org-footnote))))))
6023 (defun org-activate-bracket-links (limit)
6024 "Add text properties for bracketed links."
6025 (if (and (re-search-forward org-bracket-link-regexp limit t)
6026 (not (org-in-src-block-p)))
6027 (let* ((hl (org-match-string-no-properties 1))
6028 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6029 (ip (org-maybe-intangible
6030 (list 'invisible 'org-link
6031 'keymap org-mouse-map 'mouse-face 'highlight
6032 'font-lock-multiline t 'help-echo help
6033 'htmlize-link `(:uri ,hl))))
6034 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6035 'font-lock-multiline t 'help-echo help
6036 'htmlize-link `(:uri ,hl))))
6037 ;; We need to remove the invisible property here. Table narrowing
6038 ;; may have made some of this invisible.
6039 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6040 (remove-text-properties (match-beginning 0) (match-end 0)
6041 '(invisible nil))
6042 (if (match-end 3)
6043 (progn
6044 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6045 (org-rear-nonsticky-at (match-beginning 3))
6046 (add-text-properties (match-beginning 3) (match-end 3) vp)
6047 (org-rear-nonsticky-at (match-end 3))
6048 (add-text-properties (match-end 3) (match-end 0) ip)
6049 (org-rear-nonsticky-at (match-end 0)))
6050 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6051 (org-rear-nonsticky-at (match-beginning 1))
6052 (add-text-properties (match-beginning 1) (match-end 1) vp)
6053 (org-rear-nonsticky-at (match-end 1))
6054 (add-text-properties (match-end 1) (match-end 0) ip)
6055 (org-rear-nonsticky-at (match-end 0)))
6056 t)))
6058 (defun org-activate-dates (limit)
6059 "Add text properties for dates."
6060 (if (and (re-search-forward org-tsr-regexp-both limit t)
6061 (not (equal (char-before (match-beginning 0)) 91)))
6062 (progn
6063 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6064 (add-text-properties (match-beginning 0) (match-end 0)
6065 (list 'mouse-face 'highlight
6066 'keymap org-mouse-map))
6067 (org-rear-nonsticky-at (match-end 0))
6068 (when org-display-custom-times
6069 (if (match-end 3)
6070 (org-display-custom-time (match-beginning 3) (match-end 3)))
6071 (org-display-custom-time (match-beginning 1) (match-end 1)))
6072 t)))
6074 (defvar org-target-link-regexp nil
6075 "Regular expression matching radio targets in plain text.")
6076 (make-variable-buffer-local 'org-target-link-regexp)
6078 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6079 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6080 border border border))
6081 "Regular expression matching a link target.")
6083 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6084 "Regular expression matching a radio target.")
6086 (defconst org-any-target-regexp
6087 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6088 "Regular expression matching any target.")
6090 (defun org-activate-target-links (limit)
6091 "Add text properties for target matches."
6092 (when org-target-link-regexp
6093 (let ((case-fold-search t))
6094 (if (re-search-forward org-target-link-regexp limit t)
6095 (progn
6096 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6097 (add-text-properties (match-beginning 1) (match-end 1)
6098 (list 'mouse-face 'highlight
6099 'keymap org-mouse-map
6100 'help-echo "Radio target link"
6101 'org-linked-text t))
6102 (org-rear-nonsticky-at (match-end 1))
6103 t)))))
6105 (defun org-update-radio-target-regexp ()
6106 "Find all radio targets in this file and update the regular expression.
6107 Also refresh fontification if needed."
6108 (interactive)
6109 (let ((old-regexp org-target-link-regexp)
6110 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6111 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6112 (targets
6113 (org-with-wide-buffer
6114 (goto-char (point-min))
6115 (let (rtn)
6116 (while (re-search-forward org-radio-target-regexp nil t)
6117 ;; Make sure point is really within the object.
6118 (backward-char)
6119 (let ((obj (org-element-context)))
6120 (when (eq (org-element-type obj) 'radio-target)
6121 (add-to-list 'rtn (org-element-property :value obj)))))
6122 rtn))))
6123 (setq org-target-link-regexp
6124 (and targets
6125 (concat before-re
6126 (mapconcat
6127 (lambda (x)
6128 (replace-regexp-in-string
6129 " +" "\\s-+" (regexp-quote x) t t))
6130 targets
6131 "\\|")
6132 after-re)))
6133 (unless (equal old-regexp org-target-link-regexp)
6134 ;; Clean-up cache.
6135 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6136 ((not org-target-link-regexp) old-regexp)
6138 (concat before-re
6139 (mapconcat
6140 (lambda (re)
6141 (substring re (length before-re)
6142 (- (length after-re))))
6143 (list old-regexp org-target-link-regexp)
6144 "\\|")
6145 after-re)))))
6146 (org-with-wide-buffer
6147 (goto-char (point-min))
6148 (while (re-search-forward regexp nil t)
6149 (org-element-cache-refresh (match-beginning 1)))))
6150 ;; Re fontify buffer.
6151 (when (memq 'radio org-highlight-links)
6152 (org-restart-font-lock)))))
6154 (defun org-hide-wide-columns (limit)
6155 (let (s e)
6156 (setq s (text-property-any (point) (or limit (point-max))
6157 'org-cwidth t))
6158 (when s
6159 (setq e (next-single-property-change s 'org-cwidth))
6160 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6161 (goto-char e)
6162 t)))
6164 (defvar org-latex-and-related-regexp nil
6165 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6167 (defun org-compute-latex-and-related-regexp ()
6168 "Compute regular expression for LaTeX, entities and sub/superscript.
6169 Result depends on variable `org-highlight-latex-and-related'."
6170 (org-set-local
6171 'org-latex-and-related-regexp
6172 (let* ((re-sub
6173 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6174 ((eq org-use-sub-superscripts '{})
6175 (list org-match-substring-with-braces-regexp))
6176 (org-use-sub-superscripts (list org-match-substring-regexp))))
6177 (re-latex
6178 (when (memq 'latex org-highlight-latex-and-related)
6179 (let ((matchers (plist-get org-format-latex-options :matchers)))
6180 (delq nil
6181 (mapcar (lambda (x)
6182 (and (member (car x) matchers) (nth 1 x)))
6183 org-latex-regexps)))))
6184 (re-entities
6185 (when (memq 'entities org-highlight-latex-and-related)
6186 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6187 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6189 (defun org-do-latex-and-related (limit)
6190 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6191 LIMIT bounds the search for syntax to highlight. Stop at first
6192 highlighted object, if any. Return t if some highlighting was
6193 done, nil otherwise."
6194 (when (org-string-nw-p org-latex-and-related-regexp)
6195 (catch 'found
6196 (while (re-search-forward org-latex-and-related-regexp limit t)
6197 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6198 'face))
6199 '(org-code org-verbatim underline))
6200 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6201 '(?_ ?^))
6203 0)))
6204 (font-lock-prepend-text-property
6205 (+ offset (match-beginning 0)) (match-end 0)
6206 'face 'org-latex-and-related)
6207 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6208 '(font-lock-multiline t)))
6209 (throw 'found t)))
6210 nil)))
6212 (defun org-restart-font-lock ()
6213 "Restart `font-lock-mode', to force refontification."
6214 (when (and (boundp 'font-lock-mode) font-lock-mode)
6215 (font-lock-mode -1)
6216 (font-lock-mode 1)))
6218 (defun org-activate-tags (limit)
6219 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6220 (progn
6221 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6222 (add-text-properties (match-beginning 1) (match-end 1)
6223 (list 'mouse-face 'highlight
6224 'keymap org-mouse-map))
6225 (org-rear-nonsticky-at (match-end 1))
6226 t)))
6228 (defun org-outline-level ()
6229 "Compute the outline level of the heading at point.
6230 If this is called at a normal headline, the level is the number of stars.
6231 Use `org-reduced-level' to remove the effect of `org-odd-levels'."
6232 (save-excursion
6233 (if (not (ignore-errors (org-back-to-heading t)))
6235 (looking-at org-outline-regexp)
6236 (1- (- (match-end 0) (match-beginning 0))))))
6238 (defvar org-font-lock-keywords nil)
6240 (defsubst org-re-property (property &optional literal allow-null)
6241 "Return a regexp matching a PROPERTY line.
6243 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6244 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6245 non-nil, match properties even without a value.
6247 Match group 3 is set to the value when it exists. If there is no
6248 value and ALLOW-NULL is non-nil, it is set to the empty string."
6249 (concat
6250 "^\\(?4:[ \t]*\\)"
6251 (format "\\(?1::\\(?2:%s\\):\\)"
6252 (if literal property (regexp-quote property)))
6253 (if allow-null
6254 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$"
6255 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$")))
6257 (defconst org-property-re
6258 (org-re-property "\\S-+" 'literal t)
6259 "Regular expression matching a property line.
6260 There are four matching groups:
6261 1: :PROPKEY: including the leading and trailing colon,
6262 2: PROPKEY without the leading and trailing colon,
6263 3: PROPVAL without leading or trailing spaces,
6264 4: the indentation of the current line,
6265 5: trailing whitespace.")
6267 (defvar org-font-lock-hook nil
6268 "Functions to be called for special font lock stuff.")
6270 (defvar org-font-lock-set-keywords-hook nil
6271 "Functions that can manipulate `org-font-lock-extra-keywords'.
6272 This is called after `org-font-lock-extra-keywords' is defined, but before
6273 it is installed to be used by font lock. This can be useful if something
6274 needs to be inserted at a specific position in the font-lock sequence.")
6276 (defun org-font-lock-hook (limit)
6277 "Run `org-font-lock-hook' within LIMIT."
6278 (run-hook-with-args 'org-font-lock-hook limit))
6280 (defun org-set-font-lock-defaults ()
6281 "Set font lock defaults for the current buffer."
6282 (let* ((em org-fontify-emphasized-text)
6283 (lk org-highlight-links)
6284 (org-font-lock-extra-keywords
6285 (list
6286 ;; Call the hook
6287 '(org-font-lock-hook)
6288 ;; Headlines
6289 `(,(if org-fontify-whole-heading-line
6290 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6291 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6292 (1 (org-get-level-face 1))
6293 (2 (org-get-level-face 2))
6294 (3 (org-get-level-face 3)))
6295 ;; Table lines
6296 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6297 (1 'org-table t))
6298 ;; Table internals
6299 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6300 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6301 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6302 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6303 ;; Drawers
6304 '(org-fontify-drawers)
6305 ;; Properties
6306 (list org-property-re
6307 '(1 'org-special-keyword t)
6308 '(3 'org-property-value t))
6309 ;; Links
6310 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6311 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6312 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6313 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6314 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6315 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6316 (if (memq 'footnote lk) '(org-activate-footnote-links))
6317 ;; Targets.
6318 (list org-any-target-regexp '(0 'org-target t))
6319 ;; Diary sexps.
6320 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6321 ;; Macro
6322 '(org-fontify-macros)
6323 '(org-hide-wide-columns (0 nil append))
6324 ;; TODO keyword
6325 (list (format org-heading-keyword-regexp-format
6326 org-todo-regexp)
6327 '(2 (org-get-todo-face 2) t))
6328 ;; DONE
6329 (if org-fontify-done-headline
6330 (list (format org-heading-keyword-regexp-format
6331 (concat
6332 "\\(?:"
6333 (mapconcat 'regexp-quote org-done-keywords "\\|")
6334 "\\)"))
6335 '(2 'org-headline-done t))
6336 nil)
6337 ;; Priorities
6338 '(org-font-lock-add-priority-faces)
6339 ;; Tags
6340 '(org-font-lock-add-tag-faces)
6341 ;; Tags groups
6342 (if (and org-group-tags org-tag-groups-alist)
6343 (list (concat org-outline-regexp-bol ".+\\(:"
6344 (regexp-opt (mapcar 'car org-tag-groups-alist))
6345 ":\\).*$")
6346 '(1 'org-tag-group prepend)))
6347 ;; Special keywords
6348 (list (concat "\\<" org-comment-string) '(0 'org-special-keyword t))
6349 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6350 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6351 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6352 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6353 ;; Emphasis
6354 (if em
6355 (if (featurep 'xemacs)
6356 '(org-do-emphasis-faces (0 nil append))
6357 '(org-do-emphasis-faces)))
6358 ;; Checkboxes
6359 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6360 1 'org-checkbox prepend)
6361 (if (cdr (assq 'checkbox org-list-automatic-rules))
6362 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6363 (0 (org-get-checkbox-statistics-face) t)))
6364 ;; Description list items
6365 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6366 1 'org-list-dt prepend)
6367 ;; ARCHIVEd headings
6368 (list (concat
6369 org-outline-regexp-bol
6370 "\\(.*:" org-archive-tag ":.*\\)")
6371 '(1 'org-archived prepend))
6372 ;; Specials
6373 '(org-do-latex-and-related)
6374 '(org-fontify-entities)
6375 '(org-raise-scripts)
6376 ;; Code
6377 '(org-activate-code (1 'org-code t))
6378 ;; COMMENT
6379 (list (format
6380 "^\\*\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6381 org-todo-regexp
6382 org-comment-string)
6383 '(9 'org-special-keyword t))
6384 ;; Blocks and meta lines
6385 '(org-fontify-meta-lines-and-blocks))))
6386 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6387 (run-hooks 'org-font-lock-set-keywords-hook)
6388 ;; Now set the full font-lock-keywords
6389 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6390 (org-set-local 'font-lock-defaults
6391 '(org-font-lock-keywords t nil nil backward-paragraph))
6392 (kill-local-variable 'font-lock-keywords) nil))
6394 (defun org-toggle-pretty-entities ()
6395 "Toggle the composition display of entities as UTF8 characters."
6396 (interactive)
6397 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6398 (org-restart-font-lock)
6399 (if org-pretty-entities
6400 (message "Entities are now displayed as UTF8 characters")
6401 (save-restriction
6402 (widen)
6403 (org-decompose-region (point-min) (point-max))
6404 (message "Entities are now displayed as plain text"))))
6406 (defvar org-custom-properties-overlays nil
6407 "List of overlays used for custom properties.")
6408 (make-variable-buffer-local 'org-custom-properties-overlays)
6410 (defun org-toggle-custom-properties-visibility ()
6411 "Display or hide properties in `org-custom-properties'."
6412 (interactive)
6413 (if org-custom-properties-overlays
6414 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6415 (setq org-custom-properties-overlays nil))
6416 (when org-custom-properties
6417 (org-with-wide-buffer
6418 (goto-char (point-min))
6419 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6420 (while (re-search-forward regexp nil t)
6421 (let ((end (cdr (save-match-data (org-get-property-block)))))
6422 (when (and end (< (point) end))
6423 ;; Hide first custom property in current drawer.
6424 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6425 (overlay-put o 'invisible t)
6426 (overlay-put o 'org-custom-property t)
6427 (push o org-custom-properties-overlays))
6428 ;; Hide additional custom properties in the same drawer.
6429 (while (re-search-forward regexp end t)
6430 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6431 (overlay-put o 'invisible t)
6432 (overlay-put o 'org-custom-property t)
6433 (push o org-custom-properties-overlays)))))
6434 ;; Each entry is limited to a single property drawer.
6435 (outline-next-heading)))))))
6437 (defun org-fontify-entities (limit)
6438 "Find an entity to fontify."
6439 (let (ee)
6440 (when org-pretty-entities
6441 (catch 'match
6442 (while (re-search-forward
6443 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6444 limit t)
6445 (if (and (not (org-at-comment-p))
6446 (setq ee (org-entity-get (match-string 1)))
6447 (= (length (nth 6 ee)) 1))
6448 (let*
6449 ((end (if (equal (match-string 2) "{}")
6450 (match-end 2)
6451 (match-end 1))))
6452 (add-text-properties
6453 (match-beginning 0) end
6454 (list 'font-lock-fontified t))
6455 (compose-region (match-beginning 0) end
6456 (nth 6 ee) nil)
6457 (backward-char 1)
6458 (throw 'match t))))
6459 nil))))
6461 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6462 "Fontify string S like in Org-mode."
6463 (with-temp-buffer
6464 (insert s)
6465 (let ((org-odd-levels-only odd-levels))
6466 (org-mode)
6467 (font-lock-ensure)
6468 (buffer-string))))
6470 (defvar org-m nil)
6471 (defvar org-l nil)
6472 (defvar org-f nil)
6473 (defun org-get-level-face (n)
6474 "Get the right face for match N in font-lock matching of headlines."
6475 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6476 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6477 (if org-cycle-level-faces
6478 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6479 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6480 (cond
6481 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6482 ((eq n 2) org-f)
6483 (t (if org-level-color-stars-only nil org-f))))
6486 (defun org-get-todo-face (kwd)
6487 "Get the right face for a TODO keyword KWD.
6488 If KWD is a number, get the corresponding match group."
6489 (if (numberp kwd) (setq kwd (match-string kwd)))
6490 (or (org-face-from-face-or-color
6491 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6492 (and (member kwd org-done-keywords) 'org-done)
6493 'org-todo))
6495 (defun org-face-from-face-or-color (context inherit face-or-color)
6496 "Create a face list that inherits INHERIT, but sets the foreground color.
6497 When FACE-OR-COLOR is not a string, just return it."
6498 (if (stringp face-or-color)
6499 (list :inherit inherit
6500 (cdr (assoc context org-faces-easy-properties))
6501 face-or-color)
6502 face-or-color))
6504 (defun org-font-lock-add-tag-faces (limit)
6505 "Add the special tag faces."
6506 (when (and org-tag-faces org-tags-special-faces-re)
6507 (while (re-search-forward org-tags-special-faces-re limit t)
6508 (add-text-properties (match-beginning 1) (match-end 1)
6509 (list 'face (org-get-tag-face 1)
6510 'font-lock-fontified t))
6511 (backward-char 1))))
6513 (defun org-font-lock-add-priority-faces (limit)
6514 "Add the special priority faces."
6515 (while (re-search-forward "\\[#\\([A-Z0-9]\\)\\]" limit t)
6516 (when (save-match-data (org-at-heading-p))
6517 (add-text-properties
6518 (match-beginning 0) (match-end 0)
6519 (list 'face (or (org-face-from-face-or-color
6520 'priority 'org-priority
6521 (cdr (assoc (char-after (match-beginning 1))
6522 org-priority-faces)))
6523 'org-priority)
6524 'font-lock-fontified t)))))
6526 (defun org-get-tag-face (kwd)
6527 "Get the right face for a TODO keyword KWD.
6528 If KWD is a number, get the corresponding match group."
6529 (if (numberp kwd) (setq kwd (match-string kwd)))
6530 (or (org-face-from-face-or-color
6531 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
6532 'org-tag))
6534 (defun org-unfontify-region (beg end &optional maybe_loudly)
6535 "Remove fontification and activation overlays from links."
6536 (font-lock-default-unfontify-region beg end)
6537 (let* ((buffer-undo-list t)
6538 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6539 (inhibit-modification-hooks t)
6540 deactivate-mark buffer-file-name buffer-file-truename)
6541 (org-decompose-region beg end)
6542 (remove-text-properties beg end
6543 '(mouse-face t keymap t org-linked-text t
6544 invisible t intangible t
6545 org-emphasis t))
6546 (org-remove-font-lock-display-properties beg end)))
6548 (defconst org-script-display '(((raise -0.3) (height 0.7))
6549 ((raise 0.3) (height 0.7))
6550 ((raise -0.5))
6551 ((raise 0.5)))
6552 "Display properties for showing superscripts and subscripts.")
6554 (defun org-remove-font-lock-display-properties (beg end)
6555 "Remove specific display properties that have been added by font lock.
6556 The will remove the raise properties that are used to show superscripts
6557 and subscripts."
6558 (let (next prop)
6559 (while (< beg end)
6560 (setq next (next-single-property-change beg 'display nil end)
6561 prop (get-text-property beg 'display))
6562 (if (member prop org-script-display)
6563 (put-text-property beg next 'display nil))
6564 (setq beg next))))
6566 (defun org-raise-scripts (limit)
6567 "Add raise properties to sub/superscripts."
6568 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6569 (if (re-search-forward
6570 (if (eq org-use-sub-superscripts t)
6571 org-match-substring-regexp
6572 org-match-substring-with-braces-regexp)
6573 limit t)
6574 (let* ((pos (point)) table-p comment-p
6575 (mpos (match-beginning 3))
6576 (emph-p (get-text-property mpos 'org-emphasis))
6577 (link-p (get-text-property mpos 'mouse-face))
6578 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6579 (goto-char (point-at-bol))
6580 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6581 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6582 (goto-char pos)
6583 ;; Handle a_b^c
6584 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6585 (if (or comment-p emph-p link-p keyw-p)
6587 (put-text-property (match-beginning 3) (match-end 0)
6588 'display
6589 (if (equal (char-after (match-beginning 2)) ?^)
6590 (nth (if table-p 3 1) org-script-display)
6591 (nth (if table-p 2 0) org-script-display)))
6592 (add-text-properties (match-beginning 2) (match-end 2)
6593 (list 'invisible t
6594 'org-dwidth t 'org-dwidth-n 1))
6595 (if (and (eq (char-after (match-beginning 3)) ?{)
6596 (eq (char-before (match-end 3)) ?}))
6597 (progn
6598 (add-text-properties
6599 (match-beginning 3) (1+ (match-beginning 3))
6600 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6601 (add-text-properties
6602 (1- (match-end 3)) (match-end 3)
6603 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6604 t)))))
6606 ;;;; Visibility cycling, including org-goto and indirect buffer
6608 ;;; Cycling
6610 (defvar org-cycle-global-status nil)
6611 (make-variable-buffer-local 'org-cycle-global-status)
6612 (put 'org-cycle-global-status 'org-state t)
6613 (defvar org-cycle-subtree-status nil)
6614 (make-variable-buffer-local 'org-cycle-subtree-status)
6615 (put 'org-cycle-subtree-status 'org-state t)
6617 (defvar org-inlinetask-min-level)
6619 (defun org-unlogged-message (&rest args)
6620 "Display a message, but avoid logging it in the *Messages* buffer."
6621 (let ((message-log-max nil))
6622 (apply 'message args)))
6624 ;;;###autoload
6625 (defun org-cycle (&optional arg)
6626 "TAB-action and visibility cycling for Org-mode.
6628 This is the command invoked in Org-mode by the TAB key. Its main purpose
6629 is outline visibility cycling, but it also invokes other actions
6630 in special contexts.
6632 - When this function is called with a prefix argument, rotate the entire
6633 buffer through 3 states (global cycling)
6634 1. OVERVIEW: Show only top-level headlines.
6635 2. CONTENTS: Show all headlines of all levels, but no body text.
6636 3. SHOW ALL: Show everything.
6637 When called with two `C-u C-u' prefixes, switch to the startup visibility,
6638 determined by the variable `org-startup-folded', and by any VISIBILITY
6639 properties in the buffer.
6640 When called with three `C-u C-u C-u' prefixed, show the entire buffer,
6641 including any drawers.
6643 - When inside a table, re-align the table and move to the next field.
6645 - When point is at the beginning of a headline, rotate the subtree started
6646 by this line through 3 different states (local cycling)
6647 1. FOLDED: Only the main headline is shown.
6648 2. CHILDREN: The main headline and the direct children are shown.
6649 From this state, you can move to one of the children
6650 and zoom in further.
6651 3. SUBTREE: Show the entire subtree, including body text.
6652 If there is no subtree, switch directly from CHILDREN to FOLDED.
6654 - When point is at the beginning of an empty headline and the variable
6655 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6656 of the headline by demoting and promoting it to likely levels. This
6657 speeds up creation document structure by pressing TAB once or several
6658 times right after creating a new headline.
6660 - When there is a numeric prefix, go up to a heading with level ARG, do
6661 a `show-subtree' and return to the previous cursor position. If ARG
6662 is negative, go up that many levels.
6664 - When point is not at the beginning of a headline, execute the global
6665 binding for TAB, which is re-indenting the line. See the option
6666 `org-cycle-emulate-tab' for details.
6668 - Special case: if point is at the beginning of the buffer and there is
6669 no headline in line 1, this function will act as if called with prefix arg
6670 (C-u TAB, same as S-TAB) also when called without prefix arg.
6671 But only if also the variable `org-cycle-global-at-bob' is t."
6672 (interactive "P")
6673 (org-load-modules-maybe)
6674 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6675 (and org-cycle-level-after-item/entry-creation
6676 (or (org-cycle-level)
6677 (org-cycle-item-indentation))))
6678 (let* ((limit-level
6679 (or org-cycle-max-level
6680 (and (boundp 'org-inlinetask-min-level)
6681 org-inlinetask-min-level
6682 (1- org-inlinetask-min-level))))
6683 (nstars (and limit-level
6684 (if org-odd-levels-only
6685 (and limit-level (1- (* limit-level 2)))
6686 limit-level)))
6687 (org-outline-regexp
6688 (if (not (derived-mode-p 'org-mode))
6689 outline-regexp
6690 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6691 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6692 (not (looking-at org-outline-regexp))))
6693 (org-cycle-hook
6694 (if bob-special
6695 (delq 'org-optimize-window-after-visibility-change
6696 (copy-sequence org-cycle-hook))
6697 org-cycle-hook))
6698 (pos (point)))
6700 (if (or bob-special (equal arg '(4)))
6701 ;; special case: use global cycling
6702 (setq arg t))
6704 (cond
6706 ((equal arg '(16))
6707 (setq last-command 'dummy)
6708 (org-set-startup-visibility)
6709 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6711 ((equal arg '(64))
6712 (show-all)
6713 (org-unlogged-message "Entire buffer visible, including drawers"))
6715 ;; Try cdlatex TAB completion
6716 ((org-try-cdlatex-tab))
6718 ;; Table: enter it or move to the next field.
6719 ((org-at-table-p 'any)
6720 (if (org-at-table.el-p)
6721 (message "Use C-c ' to edit table.el tables")
6722 (if arg (org-table-edit-field t)
6723 (org-table-justify-field-maybe)
6724 (call-interactively 'org-table-next-field))))
6726 ((run-hook-with-args-until-success
6727 'org-tab-after-check-for-table-hook))
6729 ;; Global cycling: delegate to `org-cycle-internal-global'.
6730 ((eq arg t) (org-cycle-internal-global))
6732 ;; Drawers: delegate to `org-flag-drawer'.
6733 ((save-excursion
6734 (beginning-of-line 1)
6735 (looking-at org-drawer-regexp))
6736 (org-flag-drawer ; toggle block visibility
6737 (not (get-char-property (match-end 0) 'invisible))))
6739 ;; Show-subtree, ARG levels up from here.
6740 ((integerp arg)
6741 (save-excursion
6742 (org-back-to-heading)
6743 (outline-up-heading (if (< arg 0) (- arg)
6744 (- (funcall outline-level) arg)))
6745 (org-show-subtree)))
6747 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6748 ((and (featurep 'org-inlinetask)
6749 (org-inlinetask-at-task-p)
6750 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6751 (org-inlinetask-toggle-visibility))
6753 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6754 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6755 (save-excursion (beginning-of-line 1)
6756 (looking-at org-outline-regexp)))
6757 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6758 (org-cycle-internal-local))
6760 ;; From there: TAB emulation and template completion.
6761 (buffer-read-only (org-back-to-heading))
6763 ((run-hook-with-args-until-success
6764 'org-tab-after-check-for-cycling-hook))
6766 ((org-try-structure-completion))
6768 ((run-hook-with-args-until-success
6769 'org-tab-before-tab-emulation-hook))
6771 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6772 (or (not (bolp))
6773 (not (looking-at org-outline-regexp))))
6774 (call-interactively (global-key-binding "\t")))
6776 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6777 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6778 (or (and (eq org-cycle-emulate-tab 'white)
6779 (= (match-end 0) (point-at-eol)))
6780 (and (eq org-cycle-emulate-tab 'whitestart)
6781 (>= (match-end 0) pos))))
6783 (eq org-cycle-emulate-tab t))
6784 (call-interactively (global-key-binding "\t")))
6786 (t (save-excursion
6787 (org-back-to-heading)
6788 (org-cycle)))))))
6790 (defun org-cycle-internal-global ()
6791 "Do the global cycling action."
6792 ;; Hack to avoid display of messages for .org attachments in Gnus
6793 (let ((ga (string-match "\\*fontification" (buffer-name))))
6794 (cond
6795 ((and (eq last-command this-command)
6796 (eq org-cycle-global-status 'overview))
6797 ;; We just created the overview - now do table of contents
6798 ;; This can be slow in very large buffers, so indicate action
6799 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6800 (unless ga (org-unlogged-message "CONTENTS..."))
6801 (org-content)
6802 (unless ga (org-unlogged-message "CONTENTS...done"))
6803 (setq org-cycle-global-status 'contents)
6804 (run-hook-with-args 'org-cycle-hook 'contents))
6806 ((and (eq last-command this-command)
6807 (eq org-cycle-global-status 'contents))
6808 ;; We just showed the table of contents - now show everything
6809 (run-hook-with-args 'org-pre-cycle-hook 'all)
6810 (show-all)
6811 (unless ga (org-unlogged-message "SHOW ALL"))
6812 (setq org-cycle-global-status 'all)
6813 (run-hook-with-args 'org-cycle-hook 'all))
6816 ;; Default action: go to overview
6817 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6818 (org-overview)
6819 (unless ga (org-unlogged-message "OVERVIEW"))
6820 (setq org-cycle-global-status 'overview)
6821 (run-hook-with-args 'org-cycle-hook 'overview)))))
6823 (defvar org-called-with-limited-levels nil
6824 "Non-nil when `org-with-limited-levels' is currently active.")
6826 (defun org-cycle-internal-local ()
6827 "Do the local cycling action."
6828 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6829 ;; First, determine end of headline (EOH), end of subtree or item
6830 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6831 (save-excursion
6832 (if (org-at-item-p)
6833 (progn
6834 (beginning-of-line)
6835 (setq struct (org-list-struct))
6836 (setq eoh (point-at-eol))
6837 (setq eos (org-list-get-item-end-before-blank (point) struct))
6838 (setq has-children (org-list-has-child-p (point) struct)))
6839 (org-back-to-heading)
6840 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6841 (setq eos (save-excursion (org-end-of-subtree t t)
6842 (when (bolp) (backward-char)) (point)))
6843 (setq has-children
6844 (or (save-excursion
6845 (let ((level (funcall outline-level)))
6846 (outline-next-heading)
6847 (and (org-at-heading-p t)
6848 (> (funcall outline-level) level))))
6849 (save-excursion
6850 (org-list-search-forward (org-item-beginning-re) eos t)))))
6851 ;; Determine end invisible part of buffer (EOL)
6852 (beginning-of-line 2)
6853 ;; XEmacs doesn't have `next-single-char-property-change'
6854 (if (featurep 'xemacs)
6855 (while (and (not (eobp)) ;; this is like `next-line'
6856 (get-char-property (1- (point)) 'invisible))
6857 (beginning-of-line 2))
6858 (while (and (not (eobp)) ;; this is like `next-line'
6859 (get-char-property (1- (point)) 'invisible))
6860 (goto-char (next-single-char-property-change (point) 'invisible))
6861 (and (eolp) (beginning-of-line 2))))
6862 (setq eol (point)))
6863 ;; Find out what to do next and set `this-command'
6864 (cond
6865 ((= eos eoh)
6866 ;; Nothing is hidden behind this heading
6867 (unless (org-before-first-heading-p)
6868 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6869 (org-unlogged-message "EMPTY ENTRY")
6870 (setq org-cycle-subtree-status nil)
6871 (save-excursion
6872 (goto-char eos)
6873 (outline-next-heading)
6874 (if (outline-invisible-p) (org-flag-heading nil))))
6875 ((and (or (>= eol eos)
6876 (not (string-match "\\S-" (buffer-substring eol eos))))
6877 (or has-children
6878 (not (setq children-skipped
6879 org-cycle-skip-children-state-if-no-children))))
6880 ;; Entire subtree is hidden in one line: children view
6881 (unless (org-before-first-heading-p)
6882 (run-hook-with-args 'org-pre-cycle-hook 'children))
6883 (if (org-at-item-p)
6884 (org-list-set-item-visibility (point-at-bol) struct 'children)
6885 (org-show-entry)
6886 (org-with-limited-levels (show-children))
6887 ;; FIXME: This slows down the func way too much.
6888 ;; How keep drawers hidden in subtree anyway?
6889 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6890 ;; (org-cycle-hide-drawers 'subtree))
6892 ;; Fold every list in subtree to top-level items.
6893 (when (eq org-cycle-include-plain-lists 'integrate)
6894 (save-excursion
6895 (org-back-to-heading)
6896 (while (org-list-search-forward (org-item-beginning-re) eos t)
6897 (beginning-of-line 1)
6898 (let* ((struct (org-list-struct))
6899 (prevs (org-list-prevs-alist struct))
6900 (end (org-list-get-bottom-point struct)))
6901 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6902 (org-list-get-all-items (point) struct prevs))
6903 (goto-char (if (< end eos) end eos)))))))
6904 (org-unlogged-message "CHILDREN")
6905 (save-excursion
6906 (goto-char eos)
6907 (outline-next-heading)
6908 (if (outline-invisible-p) (org-flag-heading nil)))
6909 (setq org-cycle-subtree-status 'children)
6910 (unless (org-before-first-heading-p)
6911 (run-hook-with-args 'org-cycle-hook 'children)))
6912 ((or children-skipped
6913 (and (eq last-command this-command)
6914 (eq org-cycle-subtree-status 'children)))
6915 ;; We just showed the children, or no children are there,
6916 ;; now show everything.
6917 (unless (org-before-first-heading-p)
6918 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6919 (outline-flag-region eoh eos nil)
6920 (org-unlogged-message
6921 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6922 (setq org-cycle-subtree-status 'subtree)
6923 (unless (org-before-first-heading-p)
6924 (run-hook-with-args 'org-cycle-hook 'subtree)))
6926 ;; Default action: hide the subtree.
6927 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6928 (outline-flag-region eoh eos t)
6929 (org-unlogged-message "FOLDED")
6930 (setq org-cycle-subtree-status 'folded)
6931 (unless (org-before-first-heading-p)
6932 (run-hook-with-args 'org-cycle-hook 'folded))))))
6934 ;;;###autoload
6935 (defun org-global-cycle (&optional arg)
6936 "Cycle the global visibility. For details see `org-cycle'.
6937 With \\[universal-argument] prefix arg, switch to startup visibility.
6938 With a numeric prefix, show all headlines up to that level."
6939 (interactive "P")
6940 (let ((org-cycle-include-plain-lists
6941 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6942 (cond
6943 ((integerp arg)
6944 (show-all)
6945 (hide-sublevels arg)
6946 (setq org-cycle-global-status 'contents))
6947 ((equal arg '(4))
6948 (org-set-startup-visibility)
6949 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6951 (org-cycle '(4))))))
6953 (defun org-set-startup-visibility ()
6954 "Set the visibility required by startup options and properties."
6955 (cond
6956 ((eq org-startup-folded t)
6957 (org-overview))
6958 ((eq org-startup-folded 'content)
6959 (org-content))
6960 ((or (eq org-startup-folded 'showeverything)
6961 (eq org-startup-folded nil))
6962 (show-all)))
6963 (unless (eq org-startup-folded 'showeverything)
6964 (if org-hide-block-startup (org-hide-block-all))
6965 (org-set-visibility-according-to-property 'no-cleanup)
6966 (org-cycle-hide-archived-subtrees 'all)
6967 (org-cycle-hide-drawers 'all)
6968 (org-cycle-show-empty-lines t)))
6970 (defun org-set-visibility-according-to-property (&optional no-cleanup)
6971 "Switch subtree visibilities according to :VISIBILITY: property."
6972 (interactive)
6973 (let (org-show-entry-below state)
6974 (save-excursion
6975 (goto-char (point-min))
6976 (while (re-search-forward
6977 "^[ \t]*:VISIBILITY:[ \t]+\\([a-z]+\\)"
6978 nil t)
6979 (setq state (match-string 1))
6980 (save-excursion
6981 (org-back-to-heading t)
6982 (hide-subtree)
6983 (org-reveal)
6984 (cond
6985 ((equal state '("fold" "folded"))
6986 (hide-subtree))
6987 ((equal state "children")
6988 (org-show-hidden-entry)
6989 (show-children))
6990 ((equal state "content")
6991 (save-excursion
6992 (save-restriction
6993 (org-narrow-to-subtree)
6994 (org-content))))
6995 ((member state '("all" "showall"))
6996 (show-subtree)))))
6997 (unless no-cleanup
6998 (org-cycle-hide-archived-subtrees 'all)
6999 (org-cycle-hide-drawers 'all)
7000 (org-cycle-show-empty-lines 'all)))))
7002 ;; This function uses outline-regexp instead of the more fundamental
7003 ;; org-outline-regexp so that org-cycle-global works outside of Org
7004 ;; buffers, where outline-regexp is needed.
7005 (defun org-overview ()
7006 "Switch to overview mode, showing only top-level headlines.
7007 This shows all headlines with a level equal or greater than the level
7008 of the first headline in the buffer. This is important, because if the
7009 first headline is not level one, then (hide-sublevels 1) gives confusing
7010 results."
7011 (interactive)
7012 (save-excursion
7013 (let ((level
7014 (save-excursion
7015 (goto-char (point-min))
7016 (if (re-search-forward (concat "^" outline-regexp) nil t)
7017 (progn
7018 (goto-char (match-beginning 0))
7019 (funcall outline-level))))))
7020 (and level (hide-sublevels level)))))
7022 (defun org-content (&optional arg)
7023 "Show all headlines in the buffer, like a table of contents.
7024 With numerical argument N, show content up to level N."
7025 (interactive "P")
7026 (org-overview)
7027 (save-excursion
7028 ;; Visit all headings and show their offspring
7029 (and (integerp arg) (org-overview))
7030 (goto-char (point-max))
7031 (catch 'exit
7032 (while (and (progn (condition-case nil
7033 (outline-previous-visible-heading 1)
7034 (error (goto-char (point-min))))
7036 (looking-at org-outline-regexp))
7037 (if (integerp arg)
7038 (show-children (1- arg))
7039 (show-branches))
7040 (if (bobp) (throw 'exit nil))))))
7042 (defun org-optimize-window-after-visibility-change (state)
7043 "Adjust the window after a change in outline visibility.
7044 This function is the default value of the hook `org-cycle-hook'."
7045 (when (get-buffer-window (current-buffer))
7046 (cond
7047 ((eq state 'content) nil)
7048 ((eq state 'all) nil)
7049 ((eq state 'folded) nil)
7050 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7051 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7053 (defun org-remove-empty-overlays-at (pos)
7054 "Remove outline overlays that do not contain non-white stuff."
7055 (mapc
7056 (lambda (o)
7057 (and (eq 'outline (overlay-get o 'invisible))
7058 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7059 (overlay-end o))))
7060 (delete-overlay o)))
7061 (overlays-at pos)))
7063 (defun org-clean-visibility-after-subtree-move ()
7064 "Fix visibility issues after moving a subtree."
7065 ;; First, find a reasonable region to look at:
7066 ;; Start two siblings above, end three below
7067 (let* ((beg (save-excursion
7068 (and (org-get-last-sibling)
7069 (org-get-last-sibling))
7070 (point)))
7071 (end (save-excursion
7072 (and (org-get-next-sibling)
7073 (org-get-next-sibling)
7074 (org-get-next-sibling))
7075 (if (org-at-heading-p)
7076 (point-at-eol)
7077 (point))))
7078 (level (looking-at "\\*+"))
7079 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7080 (save-excursion
7081 (save-restriction
7082 (narrow-to-region beg end)
7083 (when re
7084 ;; Properly fold already folded siblings
7085 (goto-char (point-min))
7086 (while (re-search-forward re nil t)
7087 (if (and (not (outline-invisible-p))
7088 (save-excursion
7089 (goto-char (point-at-eol)) (outline-invisible-p)))
7090 (hide-entry))))
7091 (org-cycle-show-empty-lines 'overview)
7092 (org-cycle-hide-drawers 'overview)))))
7094 (defun org-cycle-show-empty-lines (state)
7095 "Show empty lines above all visible headlines.
7096 The region to be covered depends on STATE when called through
7097 `org-cycle-hook'. Lisp program can use t for STATE to get the
7098 entire buffer covered. Note that an empty line is only shown if there
7099 are at least `org-cycle-separator-lines' empty lines before the headline."
7100 (when (not (= org-cycle-separator-lines 0))
7101 (save-excursion
7102 (let* ((n (abs org-cycle-separator-lines))
7103 (re (cond
7104 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7105 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7106 (t (let ((ns (number-to-string (- n 2))))
7107 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7108 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7109 beg end b e)
7110 (cond
7111 ((memq state '(overview contents t))
7112 (setq beg (point-min) end (point-max)))
7113 ((memq state '(children folded))
7114 (setq beg (point) end (progn (org-end-of-subtree t t)
7115 (beginning-of-line 2)
7116 (point)))))
7117 (when beg
7118 (goto-char beg)
7119 (while (re-search-forward re end t)
7120 (unless (get-char-property (match-end 1) 'invisible)
7121 (setq e (match-end 1))
7122 (if (< org-cycle-separator-lines 0)
7123 (setq b (save-excursion
7124 (goto-char (match-beginning 0))
7125 (org-back-over-empty-lines)
7126 (if (save-excursion
7127 (goto-char (max (point-min) (1- (point))))
7128 (org-at-heading-p))
7129 (1- (point))
7130 (point))))
7131 (setq b (match-beginning 1)))
7132 (outline-flag-region b e nil)))))))
7133 ;; Never hide empty lines at the end of the file.
7134 (save-excursion
7135 (goto-char (point-max))
7136 (outline-previous-heading)
7137 (outline-end-of-heading)
7138 (if (and (looking-at "[ \t\n]+")
7139 (= (match-end 0) (point-max)))
7140 (outline-flag-region (point) (match-end 0) nil))))
7142 (defun org-show-empty-lines-in-parent ()
7143 "Move to the parent and re-show empty lines before visible headlines."
7144 (save-excursion
7145 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7146 (org-cycle-show-empty-lines context))))
7148 (defun org-files-list ()
7149 "Return `org-agenda-files' list, plus all open org-mode files.
7150 This is useful for operations that need to scan all of a user's
7151 open and agenda-wise Org files."
7152 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7153 (dolist (buf (buffer-list))
7154 (with-current-buffer buf
7155 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7156 (let ((file (expand-file-name (buffer-file-name))))
7157 (unless (member file files)
7158 (push file files))))))
7159 files))
7161 (defsubst org-entry-beginning-position ()
7162 "Return the beginning position of the current entry."
7163 (save-excursion (outline-back-to-heading t) (point)))
7165 (defsubst org-entry-end-position ()
7166 "Return the end position of the current entry."
7167 (save-excursion (outline-next-heading) (point)))
7169 (defun org-cycle-hide-drawers (state &optional exceptions)
7170 "Re-hide all drawers after a visibility state change.
7171 When non-nil, optional argument EXCEPTIONS is a list of strings
7172 specifying which drawers should not be hidden."
7173 (when (and (derived-mode-p 'org-mode)
7174 (not (memq state '(overview folded contents))))
7175 (save-excursion
7176 (let* ((globalp (memq state '(contents all)))
7177 (beg (if globalp (point-min) (point)))
7178 (end (if globalp (point-max)
7179 (if (eq state 'children)
7180 (save-excursion (outline-next-heading) (point))
7181 (org-end-of-subtree t)))))
7182 (goto-char beg)
7183 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7184 (unless (member-ignore-case (match-string 1) exceptions)
7185 (let ((drawer (org-element-at-point)))
7186 (when (memq (org-element-type drawer) '(drawer property-drawer))
7187 (org-flag-drawer t drawer)
7188 ;; Make sure to skip drawer entirely or we might flag
7189 ;; it another time when matching its ending line with
7190 ;; `org-drawer-regexp'.
7191 (goto-char (org-element-property :end drawer))))))))))
7193 (defun org-cycle-hide-inline-tasks (state)
7194 "Re-hide inline tasks when switching to 'contents or 'children
7195 visibility state."
7196 (case state
7197 (contents
7198 (when (org-bound-and-true-p org-inlinetask-min-level)
7199 (hide-sublevels (1- org-inlinetask-min-level))))
7200 (children
7201 (when (featurep 'org-inlinetask)
7202 (save-excursion
7203 (while (and (outline-next-heading)
7204 (org-inlinetask-at-task-p))
7205 (org-inlinetask-toggle-visibility)
7206 (org-inlinetask-goto-end)))))))
7208 (defun org-flag-drawer (flag &optional element)
7209 "When FLAG is non-nil, hide the drawer we are at.
7210 Otherwise make it visible. When optional argument ELEMENT is
7211 a parsed drawer, as returned by `org-element-at-point', hide or
7212 show that drawer instead."
7213 (when (save-excursion
7214 (beginning-of-line)
7215 (org-looking-at-p org-drawer-regexp))
7216 (let ((drawer (or element (org-element-at-point))))
7217 (when (memq (org-element-type drawer) '(drawer property-drawer))
7218 (let ((post (org-element-property :post-affiliated drawer)))
7219 (save-excursion
7220 (outline-flag-region
7221 (progn (goto-char post) (line-end-position))
7222 (progn (goto-char (org-element-property :end drawer))
7223 (skip-chars-backward " \r\t\n")
7224 (line-end-position))
7225 flag))
7226 ;; When the drawer is hidden away, make sure point lies in
7227 ;; a visible part of the buffer.
7228 (when (and flag (> (line-beginning-position) post))
7229 (goto-char post)))))))
7231 (defun org-subtree-end-visible-p ()
7232 "Is the end of the current subtree visible?"
7233 (pos-visible-in-window-p
7234 (save-excursion (org-end-of-subtree t) (point))))
7236 (defun org-first-headline-recenter ()
7237 "Move cursor to the first headline and recenter the headline."
7238 (goto-char (point-min))
7239 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7240 (set-window-start (selected-window) (point-at-bol))))
7242 ;;; Saving and restoring visibility
7244 (defun org-outline-overlay-data (&optional use-markers)
7245 "Return a list of the locations of all outline overlays.
7246 These are overlays with the `invisible' property value `outline'.
7247 The return value is a list of cons cells, with start and stop
7248 positions for each overlay.
7249 If USE-MARKERS is set, return the positions as markers."
7250 (let (beg end)
7251 (save-excursion
7252 (save-restriction
7253 (widen)
7254 (delq nil
7255 (mapcar (lambda (o)
7256 (when (eq (overlay-get o 'invisible) 'outline)
7257 (setq beg (overlay-start o)
7258 end (overlay-end o))
7259 (and beg end (> end beg)
7260 (if use-markers
7261 (cons (copy-marker beg)
7262 (copy-marker end t))
7263 (cons beg end)))))
7264 (overlays-in (point-min) (point-max))))))))
7266 (defun org-set-outline-overlay-data (data)
7267 "Create visibility overlays for all positions in DATA.
7268 DATA should have been made by `org-outline-overlay-data'."
7269 (let (o)
7270 (save-excursion
7271 (save-restriction
7272 (widen)
7273 (show-all)
7274 (mapc (lambda (c)
7275 (outline-flag-region (car c) (cdr c) t))
7276 data)))))
7278 ;;; Folding of blocks
7280 (defvar org-hide-block-overlays nil
7281 "Overlays hiding blocks.")
7282 (make-variable-buffer-local 'org-hide-block-overlays)
7284 (defun org-block-map (function &optional start end)
7285 "Call FUNCTION at the head of all source blocks in the current buffer.
7286 Optional arguments START and END can be used to limit the range."
7287 (let ((start (or start (point-min)))
7288 (end (or end (point-max))))
7289 (save-excursion
7290 (goto-char start)
7291 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7292 (save-excursion
7293 (save-match-data
7294 (goto-char (match-beginning 0))
7295 (funcall function)))))))
7297 (defun org-hide-block-toggle-all ()
7298 "Toggle the visibility of all blocks in the current buffer."
7299 (org-block-map 'org-hide-block-toggle))
7301 (defun org-hide-block-all ()
7302 "Fold all blocks in the current buffer."
7303 (interactive)
7304 (org-show-block-all)
7305 (org-block-map 'org-hide-block-toggle-maybe))
7307 (defun org-show-block-all ()
7308 "Unfold all blocks in the current buffer."
7309 (interactive)
7310 (mapc 'delete-overlay org-hide-block-overlays)
7311 (setq org-hide-block-overlays nil))
7313 (defun org-hide-block-toggle-maybe ()
7314 "Toggle visibility of block at point.
7315 Unlike to `org-hide-block-toggle', this function does not throw
7316 an error. Return a non-nil value when toggling is successful."
7317 (interactive)
7318 (ignore-errors (org-hide-block-toggle)))
7320 (defun org-hide-block-toggle (&optional force)
7321 "Toggle the visibility of the current block.
7322 When optional argument FORCE is `off', make block visible. If it
7323 is non-nil, hide it unconditionally. Throw an error when not at
7324 a block. Return a non-nil value when toggling is successful."
7325 (interactive)
7326 (let ((element (org-element-at-point)))
7327 (unless (memq (org-element-type element)
7328 '(center-block comment-block dynamic-block example-block
7329 export-block quote-block special-block
7330 src-block verse-block))
7331 (user-error "Not at a block"))
7332 (let* ((start (save-excursion
7333 (goto-char (org-element-property :post-affiliated element))
7334 (line-end-position)))
7335 (end (save-excursion
7336 (goto-char (org-element-property :end element))
7337 (skip-chars-backward " \r\t\n")
7338 (line-end-position)))
7339 (overlays (overlays-at start)))
7340 (cond
7341 ;; Do nothing when not before or at the block opening line or
7342 ;; at the block closing line.
7343 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7344 ((and (not (eq force 'off))
7345 (not (memq t (mapcar
7346 (lambda (o)
7347 (eq (overlay-get o 'invisible) 'org-hide-block))
7348 overlays))))
7349 (let ((ov (make-overlay start end)))
7350 (overlay-put ov 'invisible 'org-hide-block)
7351 ;; Make the block accessible to `isearch'.
7352 (overlay-put
7353 ov 'isearch-open-invisible
7354 (lambda (ov)
7355 (when (memq ov org-hide-block-overlays)
7356 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7357 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7358 (delete-overlay ov))))
7359 (push ov org-hide-block-overlays)
7360 ;; When the block is hidden away, make sure point is left in
7361 ;; a visible part of the buffer.
7362 (when (> (line-beginning-position) start)
7363 (goto-char start)
7364 (beginning-of-line))
7365 ;; Signal successful toggling.
7367 ((or (not force) (eq force 'off))
7368 (dolist (ov overlays t)
7369 (when (memq ov org-hide-block-overlays)
7370 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7371 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7372 (delete-overlay ov))))))))
7374 ;; org-tab-after-check-for-cycling-hook
7375 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7376 ;; Remove overlays when changing major mode
7377 (add-hook 'org-mode-hook
7378 (lambda () (org-add-hook 'change-major-mode-hook
7379 'org-show-block-all 'append 'local)))
7381 ;;; Org-goto
7383 (defvar org-goto-window-configuration nil)
7384 (defvar org-goto-marker nil)
7385 (defvar org-goto-map)
7386 (defun org-goto-map ()
7387 "Set the keymap `org-goto'."
7388 (setq org-goto-map
7389 (let ((map (make-sparse-keymap)))
7390 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7391 mouse-drag-region universal-argument org-occur))
7392 cmd)
7393 (while (setq cmd (pop cmds))
7394 (substitute-key-definition cmd cmd map global-map)))
7395 (suppress-keymap map)
7396 (org-defkey map "\C-m" 'org-goto-ret)
7397 (org-defkey map [(return)] 'org-goto-ret)
7398 (org-defkey map [(left)] 'org-goto-left)
7399 (org-defkey map [(right)] 'org-goto-right)
7400 (org-defkey map [(control ?g)] 'org-goto-quit)
7401 (org-defkey map "\C-i" 'org-cycle)
7402 (org-defkey map [(tab)] 'org-cycle)
7403 (org-defkey map [(down)] 'outline-next-visible-heading)
7404 (org-defkey map [(up)] 'outline-previous-visible-heading)
7405 (if org-goto-auto-isearch
7406 (if (fboundp 'define-key-after)
7407 (define-key-after map [t] 'org-goto-local-auto-isearch)
7408 nil)
7409 (org-defkey map "q" 'org-goto-quit)
7410 (org-defkey map "n" 'outline-next-visible-heading)
7411 (org-defkey map "p" 'outline-previous-visible-heading)
7412 (org-defkey map "f" 'outline-forward-same-level)
7413 (org-defkey map "b" 'outline-backward-same-level)
7414 (org-defkey map "u" 'outline-up-heading))
7415 (org-defkey map "/" 'org-occur)
7416 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7417 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7418 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7419 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7420 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7421 map)))
7423 (defconst org-goto-help
7424 "Browse buffer copy, to find location or copy text.%s
7425 RET=jump to location C-g=quit and return to previous location
7426 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7428 (defvar org-goto-start-pos) ; dynamically scoped parameter
7430 (defun org-goto (&optional alternative-interface)
7431 "Look up a different location in the current file, keeping current visibility.
7433 When you want look-up or go to a different location in a
7434 document, the fastest way is often to fold the entire buffer and
7435 then dive into the tree. This method has the disadvantage, that
7436 the previous location will be folded, which may not be what you
7437 want.
7439 This command works around this by showing a copy of the current
7440 buffer in an indirect buffer, in overview mode. You can dive
7441 into the tree in that copy, use org-occur and incremental search
7442 to find a location. When pressing RET or `Q', the command
7443 returns to the original buffer in which the visibility is still
7444 unchanged. After RET it will also jump to the location selected
7445 in the indirect buffer and expose the headline hierarchy above.
7447 With a prefix argument, use the alternative interface: e.g. if
7448 `org-goto-interface' is 'outline use 'outline-path-completion."
7449 (interactive "P")
7450 (org-goto-map)
7451 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7452 (org-refile-use-outline-path t)
7453 (org-refile-target-verify-function nil)
7454 (interface
7455 (if (not alternative-interface)
7456 org-goto-interface
7457 (if (eq org-goto-interface 'outline)
7458 'outline-path-completion
7459 'outline)))
7460 (org-goto-start-pos (point))
7461 (selected-point
7462 (if (eq interface 'outline)
7463 (car (org-get-location (current-buffer) org-goto-help))
7464 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7465 (org-refile-check-position pa)
7466 (nth 3 pa)))))
7467 (if selected-point
7468 (progn
7469 (org-mark-ring-push org-goto-start-pos)
7470 (goto-char selected-point)
7471 (if (or (outline-invisible-p) (org-invisible-p2))
7472 (org-show-context 'org-goto)))
7473 (message "Quit"))))
7475 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7476 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7477 (defvar org-goto-local-auto-isearch-map) ; defined below
7479 (defun org-get-location (buf help)
7480 "Let the user select a location in the Org-mode buffer BUF.
7481 This function uses a recursive edit. It returns the selected position
7482 or nil."
7483 (org-no-popups
7484 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7485 (isearch-hide-immediately nil)
7486 (isearch-search-fun-function
7487 (lambda () 'org-goto-local-search-headings))
7488 (org-goto-selected-point org-goto-exit-command))
7489 (save-excursion
7490 (save-window-excursion
7491 (delete-other-windows)
7492 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7493 (org-pop-to-buffer-same-window
7494 (condition-case nil
7495 (make-indirect-buffer (current-buffer) "*org-goto*")
7496 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7497 (with-output-to-temp-buffer "*Org Help*"
7498 (princ (format help (if org-goto-auto-isearch
7499 " Just type for auto-isearch."
7500 " n/p/f/b/u to navigate, q to quit."))))
7501 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7502 (setq buffer-read-only nil)
7503 (let ((org-startup-truncated t)
7504 (org-startup-folded nil)
7505 (org-startup-align-all-tables nil))
7506 (org-mode)
7507 (org-overview))
7508 (setq buffer-read-only t)
7509 (if (and (boundp 'org-goto-start-pos)
7510 (integer-or-marker-p org-goto-start-pos))
7511 (let ((org-show-hierarchy-above t)
7512 (org-show-siblings t)
7513 (org-show-following-heading t))
7514 (goto-char org-goto-start-pos)
7515 (and (outline-invisible-p) (org-show-context)))
7516 (goto-char (point-min)))
7517 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7518 (message "Select location and press RET")
7519 (use-local-map org-goto-map)
7520 (recursive-edit)))
7521 (kill-buffer "*org-goto*")
7522 (cons org-goto-selected-point org-goto-exit-command))))
7524 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7525 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7526 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7527 (if (fboundp 'isearch-other-control-char)
7528 (progn
7529 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7530 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7531 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7532 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7533 (define-key org-goto-local-auto-isearch-map [return] nil))
7535 (defun org-goto-local-search-headings (string bound noerror)
7536 "Search and make sure that any matches are in headlines."
7537 (catch 'return
7538 (while (if isearch-forward
7539 (search-forward string bound noerror)
7540 (search-backward string bound noerror))
7541 (when (let ((context (mapcar 'car (save-match-data (org-context)))))
7542 (and (member :headline context)
7543 (not (member :tags context))))
7544 (throw 'return (point))))))
7546 (defun org-goto-local-auto-isearch ()
7547 "Start isearch."
7548 (interactive)
7549 (goto-char (point-min))
7550 (let ((keys (this-command-keys)))
7551 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7552 (isearch-mode t)
7553 (isearch-process-search-char (string-to-char keys)))))
7555 (defun org-goto-ret (&optional arg)
7556 "Finish `org-goto' by going to the new location."
7557 (interactive "P")
7558 (setq org-goto-selected-point (point)
7559 org-goto-exit-command 'return)
7560 (throw 'exit nil))
7562 (defun org-goto-left ()
7563 "Finish `org-goto' by going to the new location."
7564 (interactive)
7565 (if (org-at-heading-p)
7566 (progn
7567 (beginning-of-line 1)
7568 (setq org-goto-selected-point (point)
7569 org-goto-exit-command 'left)
7570 (throw 'exit nil))
7571 (user-error "Not on a heading")))
7573 (defun org-goto-right ()
7574 "Finish `org-goto' by going to the new location."
7575 (interactive)
7576 (if (org-at-heading-p)
7577 (progn
7578 (setq org-goto-selected-point (point)
7579 org-goto-exit-command 'right)
7580 (throw 'exit nil))
7581 (user-error "Not on a heading")))
7583 (defun org-goto-quit ()
7584 "Finish `org-goto' without cursor motion."
7585 (interactive)
7586 (setq org-goto-selected-point nil)
7587 (setq org-goto-exit-command 'quit)
7588 (throw 'exit nil))
7590 ;;; Indirect buffer display of subtrees
7592 (defvar org-indirect-dedicated-frame nil
7593 "This is the frame being used for indirect tree display.")
7594 (defvar org-last-indirect-buffer nil)
7596 (defun org-tree-to-indirect-buffer (&optional arg)
7597 "Create indirect buffer and narrow it to current subtree.
7598 With a numerical prefix ARG, go up to this level and then take that tree.
7599 If ARG is negative, go up that many levels.
7601 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7602 indirect buffer previously made with this command, to avoid proliferation of
7603 indirect buffers. However, when you call the command with a \
7604 \\[universal-argument] prefix, or
7605 when `org-indirect-buffer-display' is `new-frame', the last buffer
7606 is kept so that you can work with several indirect buffers at the same time.
7607 If `org-indirect-buffer-display' is `dedicated-frame', the \
7608 \\[universal-argument] prefix also
7609 requests that a new frame be made for the new buffer, so that the dedicated
7610 frame is not changed."
7611 (interactive "P")
7612 (let ((cbuf (current-buffer))
7613 (cwin (selected-window))
7614 (pos (point))
7615 beg end level heading ibuf)
7616 (save-excursion
7617 (org-back-to-heading t)
7618 (when (numberp arg)
7619 (setq level (org-outline-level))
7620 (if (< arg 0) (setq arg (+ level arg)))
7621 (while (> (setq level (org-outline-level)) arg)
7622 (org-up-heading-safe)))
7623 (setq beg (point)
7624 heading (org-get-heading))
7625 (org-end-of-subtree t t)
7626 (if (org-at-heading-p) (backward-char 1))
7627 (setq end (point)))
7628 (if (and (buffer-live-p org-last-indirect-buffer)
7629 (not (eq org-indirect-buffer-display 'new-frame))
7630 (not arg))
7631 (kill-buffer org-last-indirect-buffer))
7632 (setq ibuf (org-get-indirect-buffer cbuf heading)
7633 org-last-indirect-buffer ibuf)
7634 (cond
7635 ((or (eq org-indirect-buffer-display 'new-frame)
7636 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7637 (select-frame (make-frame))
7638 (delete-other-windows)
7639 (org-pop-to-buffer-same-window ibuf)
7640 (org-set-frame-title heading))
7641 ((eq org-indirect-buffer-display 'dedicated-frame)
7642 (raise-frame
7643 (select-frame (or (and org-indirect-dedicated-frame
7644 (frame-live-p org-indirect-dedicated-frame)
7645 org-indirect-dedicated-frame)
7646 (setq org-indirect-dedicated-frame (make-frame)))))
7647 (delete-other-windows)
7648 (org-pop-to-buffer-same-window ibuf)
7649 (org-set-frame-title (concat "Indirect: " heading)))
7650 ((eq org-indirect-buffer-display 'current-window)
7651 (org-pop-to-buffer-same-window ibuf))
7652 ((eq org-indirect-buffer-display 'other-window)
7653 (pop-to-buffer ibuf))
7654 (t (error "Invalid value")))
7655 (if (featurep 'xemacs)
7656 (save-excursion (org-mode) (turn-on-font-lock)))
7657 (narrow-to-region beg end)
7658 (show-all)
7659 (goto-char pos)
7660 (run-hook-with-args 'org-cycle-hook 'all)
7661 (and (window-live-p cwin) (select-window cwin))))
7663 (defun org-get-indirect-buffer (&optional buffer heading)
7664 (setq buffer (or buffer (current-buffer)))
7665 (let ((n 1) (base (buffer-name buffer)) bname)
7666 (while (buffer-live-p
7667 (get-buffer
7668 (setq bname
7669 (concat base "-"
7670 (if heading (concat heading "-" (number-to-string n))
7671 (number-to-string n))))))
7672 (setq n (1+ n)))
7673 (condition-case nil
7674 (make-indirect-buffer buffer bname 'clone)
7675 (error (make-indirect-buffer buffer bname)))))
7677 (defun org-set-frame-title (title)
7678 "Set the title of the current frame to the string TITLE."
7679 ;; FIXME: how to name a single frame in XEmacs???
7680 (unless (featurep 'xemacs)
7681 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7683 ;;;; Structure editing
7685 ;;; Inserting headlines
7687 (defun org-previous-line-empty-p (&optional next)
7688 "Is the previous line a blank line?
7689 When NEXT is non-nil, check the next line instead."
7690 (save-excursion
7691 (and (not (bobp))
7692 (or (beginning-of-line (if next 2 0)) t)
7693 (save-match-data
7694 (looking-at "[ \t]*$")))))
7696 (defun org-insert-heading (&optional arg invisible-ok)
7697 "Insert a new heading or an item with the same depth at point.
7699 If point is at the beginning of a heading or a list item, insert
7700 a new heading or a new item above the current one. If point is
7701 at the beginning of a normal line, turn the line into a heading.
7703 If point is in the middle of a headline or a list item, split the
7704 headline or the item and create a new headline/item with the text
7705 in the current line after point \(see `org-M-RET-may-split-line'
7706 on how to modify this behavior).
7708 With one universal prefix argument, set the user option
7709 `org-insert-heading-respect-content' to t for the duration of
7710 the command. This modifies the behavior described above in this
7711 ways: on list items and at the beginning of normal lines, force
7712 the insertion of a heading after the current subtree.
7714 With two universal prefix arguments, insert the heading at the
7715 end of the grandparent subtree. For example, if point is within
7716 a 2nd-level heading, then it will insert a 2nd-level heading at
7717 the end of the 1st-level parent heading.
7719 If point is at the beginning of a headline, insert a sibling
7720 before the current headline. If point is not at the beginning,
7721 split the line and create a new headline with the text in the
7722 current line after point \(see `org-M-RET-may-split-line' on how
7723 to modify this behavior).
7725 If point is at the beginning of a normal line, turn this line
7726 into a heading.
7728 When INVISIBLE-OK is set, stop at invisible headlines when going
7729 back. This is important for non-interactive uses of the
7730 command."
7731 (interactive "P")
7732 (if (org-called-interactively-p 'any) (org-reveal))
7733 (let ((itemp (org-in-item-p))
7734 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7735 (respect-content (or org-insert-heading-respect-content
7736 (equal arg '(4))))
7737 (initial-content "")
7738 (adjust-empty-lines t))
7740 (cond
7742 ((or (= (buffer-size) 0)
7743 (and (not (save-excursion
7744 (and (ignore-errors (org-back-to-heading invisible-ok))
7745 (org-at-heading-p))))
7746 (or arg (not itemp))))
7747 ;; At beginning of buffer or so high up that only a heading
7748 ;; makes sense.
7749 (cond ((and (bolp) (not respect-content)) (insert "* "))
7750 ((not respect-content)
7751 (unless may-split (end-of-line))
7752 (insert "\n* "))
7753 ((re-search-forward org-outline-regexp-bol nil t)
7754 (beginning-of-line)
7755 (insert "* \n")
7756 (backward-char))
7757 (t (goto-char (point-max))
7758 (insert "\n* ")))
7759 (run-hooks 'org-insert-heading-hook))
7761 ((and itemp (not (member arg '((4) (16)))))
7762 ;; Insert an item
7763 (org-insert-item))
7766 ;; Maybe move at the end of the subtree
7767 (when (equal arg '(16))
7768 (org-up-heading-safe)
7769 (org-end-of-subtree t))
7770 ;; Insert a heading
7771 (save-restriction
7772 (widen)
7773 (let* ((level nil)
7774 (on-heading (org-at-heading-p))
7775 (empty-line-p (if on-heading
7776 (org-previous-line-empty-p)
7777 ;; We will decide later
7778 nil))
7779 ;; Get a level string to fall back on
7780 (fix-level
7781 (if (org-before-first-heading-p) "*"
7782 (save-excursion
7783 (org-back-to-heading t)
7784 (if (org-previous-line-empty-p) (setq empty-line-p t))
7785 (looking-at org-outline-regexp)
7786 (make-string (1- (length (match-string 0))) ?*))))
7787 (stars
7788 (save-excursion
7789 (condition-case nil
7790 (progn
7791 (org-back-to-heading invisible-ok)
7792 (when (and (not on-heading)
7793 (featurep 'org-inlinetask)
7794 (integerp org-inlinetask-min-level)
7795 (>= (length (match-string 0))
7796 org-inlinetask-min-level))
7797 ;; Find a heading level before the inline task
7798 (while (and (setq level (org-up-heading-safe))
7799 (>= level org-inlinetask-min-level)))
7800 (if (org-at-heading-p)
7801 (org-back-to-heading invisible-ok)
7802 (error "This should not happen")))
7803 (unless (and (save-excursion
7804 (save-match-data
7805 (org-backward-heading-same-level
7806 1 invisible-ok))
7807 (= (point) (match-beginning 0)))
7808 (not (org-previous-line-empty-p t)))
7809 (setq empty-line-p (or empty-line-p
7810 (org-previous-line-empty-p))))
7811 (match-string 0))
7812 (error (or fix-level "* ")))))
7813 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7814 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7815 pos hide-previous previous-pos)
7817 ;; If we insert after content, move there and clean up whitespace
7818 (when (and respect-content
7819 (not (org-looking-at-p org-outline-regexp-bol)))
7820 (if (not (org-before-first-heading-p))
7821 (org-end-of-subtree nil t)
7822 (re-search-forward org-outline-regexp-bol)
7823 (beginning-of-line 0))
7824 (skip-chars-backward " \r\n")
7825 (and (not (looking-back "^\\*+"))
7826 (looking-at "[ \t]+") (replace-match ""))
7827 (unless (eobp) (forward-char 1))
7828 (when (looking-at "^\\*")
7829 (unless (bobp) (backward-char 1))
7830 (insert "\n")))
7832 ;; If we are splitting, grab the text that should be moved to the new headline
7833 (when may-split
7834 (if (org-on-heading-p)
7835 ;; This is a heading, we split intelligently (keeping tags)
7836 (let ((pos (point)))
7837 (goto-char (point-at-bol))
7838 (unless (looking-at org-complex-heading-regexp)
7839 (error "This should not happen"))
7840 (when (and (match-beginning 4)
7841 (> pos (match-beginning 4))
7842 (< pos (match-end 4)))
7843 (setq initial-content (buffer-substring pos (match-end 4)))
7844 (goto-char pos)
7845 (delete-region (point) (match-end 4))
7846 (if (looking-at "[ \t]*$")
7847 (replace-match "")
7848 (insert (make-string (length initial-content) ?\ )))
7849 (setq initial-content (org-trim initial-content)))
7850 (goto-char pos))
7851 ;; a normal line
7852 (setq initial-content
7853 (org-trim (buffer-substring (point) (point-at-eol))))
7854 (delete-region (point) (point-at-eol))))
7856 ;; If we are at the beginning of the line, insert before it. Else after
7857 (cond
7858 ((and (bolp) (looking-at "[ \t]*$")))
7859 ((and (bolp) (not (looking-at "[ \t]*$")))
7860 (open-line 1))
7862 (goto-char (point-at-eol))
7863 (insert "\n")))
7865 ;; Insert the new heading
7866 (insert stars)
7867 (just-one-space)
7868 (insert initial-content)
7869 (when adjust-empty-lines
7870 (if (or (not blank)
7871 (and blank (not (org-previous-line-empty-p))))
7872 (org-N-empty-lines-before-current (if blank 1 0))))
7873 (run-hooks 'org-insert-heading-hook)))))))
7875 (defun org-N-empty-lines-before-current (N)
7876 "Make the number of empty lines before current exactly N.
7877 So this will delete or add empty lines."
7878 (save-excursion
7879 (beginning-of-line)
7880 (let ((p (point)))
7881 (skip-chars-backward " \r\t\n")
7882 (unless (bolp) (forward-line))
7883 (delete-region (point) p))
7884 (when (> N 0) (insert (make-string N ?\n)))))
7886 (defun org-get-heading (&optional no-tags no-todo)
7887 "Return the heading of the current entry, without the stars.
7888 When NO-TAGS is non-nil, don't include tags.
7889 When NO-TODO is non-nil, don't include TODO keywords."
7890 (save-excursion
7891 (org-back-to-heading t)
7892 (cond
7893 ((and no-tags no-todo)
7894 (looking-at org-complex-heading-regexp)
7895 (match-string 4))
7896 (no-tags
7897 (looking-at (concat org-outline-regexp
7898 "\\(.*?\\)"
7899 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7900 (match-string 1))
7901 (no-todo
7902 (looking-at org-todo-line-regexp)
7903 (match-string 3))
7904 (t (looking-at org-heading-regexp)
7905 (match-string 2)))))
7907 (defvar orgstruct-mode) ; defined below
7909 (defun org-heading-components ()
7910 "Return the components of the current heading.
7911 This is a list with the following elements:
7912 - the level as an integer
7913 - the reduced level, different if `org-odd-levels-only' is set.
7914 - the TODO keyword, or nil
7915 - the priority character, like ?A, or nil if no priority is given
7916 - the headline text itself, or the tags string if no headline text
7917 - the tags string, or nil."
7918 (save-excursion
7919 (org-back-to-heading t)
7920 (if (let (case-fold-search)
7921 (looking-at
7922 (if orgstruct-mode
7923 org-heading-regexp
7924 org-complex-heading-regexp)))
7925 (if orgstruct-mode
7926 (list (length (match-string 1))
7927 (org-reduced-level (length (match-string 1)))
7930 (match-string 2)
7931 nil)
7932 (list (length (match-string 1))
7933 (org-reduced-level (length (match-string 1)))
7934 (org-match-string-no-properties 2)
7935 (and (match-end 3) (aref (match-string 3) 2))
7936 (org-match-string-no-properties 4)
7937 (org-match-string-no-properties 5))))))
7939 (defun org-get-entry ()
7940 "Get the entry text, after heading, entire subtree."
7941 (save-excursion
7942 (org-back-to-heading t)
7943 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7945 (defun org-insert-heading-after-current ()
7946 "Insert a new heading with same level as current, after current subtree."
7947 (interactive)
7948 (org-back-to-heading)
7949 (org-insert-heading)
7950 (org-move-subtree-down)
7951 (end-of-line 1))
7953 (defun org-insert-heading-respect-content (&optional invisible-ok)
7954 "Insert heading with `org-insert-heading-respect-content' set to t."
7955 (interactive)
7956 (org-insert-heading '(4) invisible-ok))
7958 (defun org-insert-todo-heading-respect-content (&optional force-state)
7959 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7960 (interactive)
7961 (org-insert-todo-heading force-state '(4)))
7963 (defun org-insert-todo-heading (arg &optional force-heading)
7964 "Insert a new heading with the same level and TODO state as current heading.
7965 If the heading has no TODO state, or if the state is DONE, use the first
7966 state (TODO by default). Also with one prefix arg, force first state. With
7967 two prefix args, force inserting at the end of the parent subtree."
7968 (interactive "P")
7969 (when (or force-heading (not (org-insert-item 'checkbox)))
7970 (org-insert-heading (or (and (equal arg '(16)) '(16))
7971 force-heading))
7972 (save-excursion
7973 (org-back-to-heading)
7974 (outline-previous-heading)
7975 (looking-at org-todo-line-regexp))
7976 (let*
7977 ((new-mark-x
7978 (if (or (equal arg '(4))
7979 (not (match-beginning 2))
7980 (member (match-string 2) org-done-keywords))
7981 (car org-todo-keywords-1)
7982 (match-string 2)))
7983 (new-mark
7985 (run-hook-with-args-until-success
7986 'org-todo-get-default-hook new-mark-x nil)
7987 new-mark-x)))
7988 (beginning-of-line 1)
7989 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
7990 (if org-treat-insert-todo-heading-as-state-change
7991 (org-todo new-mark)
7992 (insert new-mark " "))))
7993 (when org-provide-todo-statistics
7994 (org-update-parent-todo-statistics))))
7996 (defun org-insert-subheading (arg)
7997 "Insert a new subheading and demote it.
7998 Works for outline headings and for plain lists alike."
7999 (interactive "P")
8000 (org-insert-heading arg)
8001 (cond
8002 ((org-at-heading-p) (org-do-demote))
8003 ((org-at-item-p) (org-indent-item))))
8005 (defun org-insert-todo-subheading (arg)
8006 "Insert a new subheading with TODO keyword or checkbox and demote it.
8007 Works for outline headings and for plain lists alike."
8008 (interactive "P")
8009 (org-insert-todo-heading arg)
8010 (cond
8011 ((org-at-heading-p) (org-do-demote))
8012 ((org-at-item-p) (org-indent-item))))
8014 ;;; Promotion and Demotion
8016 (defvar org-after-demote-entry-hook nil
8017 "Hook run after an entry has been demoted.
8018 The cursor will be at the beginning of the entry.
8019 When a subtree is being demoted, the hook will be called for each node.")
8021 (defvar org-after-promote-entry-hook nil
8022 "Hook run after an entry has been promoted.
8023 The cursor will be at the beginning of the entry.
8024 When a subtree is being promoted, the hook will be called for each node.")
8026 (defun org-promote-subtree ()
8027 "Promote the entire subtree.
8028 See also `org-promote'."
8029 (interactive)
8030 (save-excursion
8031 (org-with-limited-levels (org-map-tree 'org-promote)))
8032 (org-fix-position-after-promote))
8034 (defun org-demote-subtree ()
8035 "Demote the entire subtree. See `org-demote'.
8036 See also `org-promote'."
8037 (interactive)
8038 (save-excursion
8039 (org-with-limited-levels (org-map-tree 'org-demote)))
8040 (org-fix-position-after-promote))
8043 (defun org-do-promote ()
8044 "Promote the current heading higher up the tree.
8045 If the region is active in `transient-mark-mode', promote all headings
8046 in the region."
8047 (interactive)
8048 (save-excursion
8049 (if (org-region-active-p)
8050 (org-map-region 'org-promote (region-beginning) (region-end))
8051 (org-promote)))
8052 (org-fix-position-after-promote))
8054 (defun org-do-demote ()
8055 "Demote the current heading lower down the tree.
8056 If the region is active in `transient-mark-mode', demote all headings
8057 in the region."
8058 (interactive)
8059 (save-excursion
8060 (if (org-region-active-p)
8061 (org-map-region 'org-demote (region-beginning) (region-end))
8062 (org-demote)))
8063 (org-fix-position-after-promote))
8065 (defun org-fix-position-after-promote ()
8066 "Make sure that after pro/demotion cursor position is right."
8067 (let ((pos (point)))
8068 (when (save-excursion
8069 (beginning-of-line 1)
8070 (looking-at org-todo-line-regexp)
8071 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8072 (cond ((eobp) (insert " "))
8073 ((eolp) (insert " "))
8074 ((equal (char-after) ?\ ) (forward-char 1))))))
8076 (defun org-current-level ()
8077 "Return the level of the current entry, or nil if before the first headline.
8078 The level is the number of stars at the beginning of the headline."
8079 (save-excursion
8080 (org-with-limited-levels
8081 (if (ignore-errors (org-back-to-heading t))
8082 (funcall outline-level)))))
8084 (defun org-get-previous-line-level ()
8085 "Return the outline depth of the last headline before the current line.
8086 Returns 0 for the first headline in the buffer, and nil if before the
8087 first headline."
8088 (and (org-current-level)
8089 (or (and (/= (line-beginning-position) (point-min))
8090 (save-excursion (beginning-of-line 0) (org-current-level)))
8091 0)))
8093 (defun org-reduced-level (l)
8094 "Compute the effective level of a heading.
8095 This takes into account the setting of `org-odd-levels-only'."
8096 (cond
8097 ((zerop l) 0)
8098 (org-odd-levels-only (1+ (floor (/ l 2))))
8099 (t l)))
8101 (defun org-level-increment ()
8102 "Return the number of stars that will be added or removed at a
8103 time to headlines when structure editing, based on the value of
8104 `org-odd-levels-only'."
8105 (if org-odd-levels-only 2 1))
8107 (defun org-get-valid-level (level &optional change)
8108 "Rectify a level change under the influence of `org-odd-levels-only'
8109 LEVEL is a current level, CHANGE is by how much the level should be
8110 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8111 even level numbers will become the next higher odd number."
8112 (if org-odd-levels-only
8113 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8114 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8115 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8116 (max 1 (+ level (or change 0)))))
8118 (if (boundp 'define-obsolete-function-alias)
8119 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8120 (define-obsolete-function-alias 'org-get-legal-level
8121 'org-get-valid-level)
8122 (define-obsolete-function-alias 'org-get-legal-level
8123 'org-get-valid-level "23.1")))
8125 (defun org-promote ()
8126 "Promote the current heading higher up the tree.
8127 If the region is active in `transient-mark-mode', promote all headings
8128 in the region."
8129 (org-back-to-heading t)
8130 (let* ((level (save-match-data (funcall outline-level)))
8131 (after-change-functions (remove 'flyspell-after-change-function
8132 after-change-functions))
8133 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8134 (diff (abs (- level (length up-head) -1))))
8135 (cond ((and (= level 1) org-called-with-limited-levels
8136 org-allow-promoting-top-level-subtree)
8137 (replace-match "# " nil t))
8138 ((= level 1)
8139 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8140 (t (replace-match up-head nil t)))
8141 ;; Fixup tag positioning
8142 (unless (= level 1)
8143 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8144 (if org-adapt-indentation (org-fixup-indentation (- diff))))
8145 (run-hooks 'org-after-promote-entry-hook)))
8147 (defun org-demote ()
8148 "Demote the current heading lower down the tree.
8149 If the region is active in `transient-mark-mode', demote all headings
8150 in the region."
8151 (org-back-to-heading t)
8152 (let* ((level (save-match-data (funcall outline-level)))
8153 (after-change-functions (remove 'flyspell-after-change-function
8154 after-change-functions))
8155 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8156 (diff (abs (- level (length down-head) -1))))
8157 (replace-match down-head nil t)
8158 ;; Fixup tag positioning
8159 (and org-auto-align-tags (org-set-tags nil 'ignore-column))
8160 (if org-adapt-indentation (org-fixup-indentation diff))
8161 (run-hooks 'org-after-demote-entry-hook)))
8163 (defun org-cycle-level ()
8164 "Cycle the level of an empty headline through possible states.
8165 This goes first to child, then to parent, level, then up the hierarchy.
8166 After top level, it switches back to sibling level."
8167 (interactive)
8168 (let ((org-adapt-indentation nil))
8169 (when (org-point-at-end-of-empty-headline)
8170 (setq this-command 'org-cycle-level) ; Only needed for caching
8171 (let ((cur-level (org-current-level))
8172 (prev-level (org-get-previous-line-level)))
8173 (cond
8174 ;; If first headline in file, promote to top-level.
8175 ((= prev-level 0)
8176 (loop repeat (/ (- cur-level 1) (org-level-increment))
8177 do (org-do-promote)))
8178 ;; If same level as prev, demote one.
8179 ((= prev-level cur-level)
8180 (org-do-demote))
8181 ;; If parent is top-level, promote to top level if not already.
8182 ((= prev-level 1)
8183 (loop repeat (/ (- cur-level 1) (org-level-increment))
8184 do (org-do-promote)))
8185 ;; If top-level, return to prev-level.
8186 ((= cur-level 1)
8187 (loop repeat (/ (- prev-level 1) (org-level-increment))
8188 do (org-do-demote)))
8189 ;; If less than prev-level, promote one.
8190 ((< cur-level prev-level)
8191 (org-do-promote))
8192 ;; If deeper than prev-level, promote until higher than
8193 ;; prev-level.
8194 ((> cur-level prev-level)
8195 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8196 do (org-do-promote))))
8197 t))))
8199 (defun org-map-tree (fun)
8200 "Call FUN for every heading underneath the current one."
8201 (org-back-to-heading)
8202 (let ((level (funcall outline-level)))
8203 (save-excursion
8204 (funcall fun)
8205 (while (and (progn
8206 (outline-next-heading)
8207 (> (funcall outline-level) level))
8208 (not (eobp)))
8209 (funcall fun)))))
8211 (defun org-map-region (fun beg end)
8212 "Call FUN for every heading between BEG and END."
8213 (let ((org-ignore-region t))
8214 (save-excursion
8215 (setq end (copy-marker end))
8216 (goto-char beg)
8217 (if (and (re-search-forward org-outline-regexp-bol nil t)
8218 (< (point) end))
8219 (funcall fun))
8220 (while (and (progn
8221 (outline-next-heading)
8222 (< (point) end))
8223 (not (eobp)))
8224 (funcall fun)))))
8226 (defvar org-property-end-re) ; silence byte-compiler
8227 (defun org-fixup-indentation (diff)
8228 "Change the indentation in the current entry by DIFF.
8229 However, if any line in the current entry has no indentation, or if it
8230 would end up with no indentation after the change, nothing at all is done."
8231 (save-excursion
8232 (let ((end (save-excursion (outline-next-heading)
8233 (point-marker)))
8234 (prohibit (if (> diff 0)
8235 "^\\S-"
8236 (concat "^ \\{0," (int-to-string (- diff)) "\\}\\S-")))
8237 col)
8238 (unless (save-excursion (end-of-line 1)
8239 (re-search-forward prohibit end t))
8240 (while (and (< (point) end)
8241 (re-search-forward "^[ \t]+" end t))
8242 (goto-char (match-end 0))
8243 (setq col (current-column))
8244 (if (< diff 0) (replace-match ""))
8245 (org-indent-to-column (+ diff col))))
8246 (move-marker end nil))))
8248 (defun org-convert-to-odd-levels ()
8249 "Convert an org-mode file with all levels allowed to one with odd levels.
8250 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8251 level 5 etc."
8252 (interactive)
8253 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8254 (let ((outline-level 'org-outline-level)
8255 (org-odd-levels-only nil) n)
8256 (save-excursion
8257 (goto-char (point-min))
8258 (while (re-search-forward "^\\*\\*+ " nil t)
8259 (setq n (- (length (match-string 0)) 2))
8260 (while (>= (setq n (1- n)) 0)
8261 (org-demote))
8262 (end-of-line 1))))))
8264 (defun org-convert-to-oddeven-levels ()
8265 "Convert an org-mode file with only odd levels to one with odd/even levels.
8266 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8267 file contains a section with an even level, conversion would
8268 destroy the structure of the file. An error is signaled in this
8269 case."
8270 (interactive)
8271 (goto-char (point-min))
8272 ;; First check if there are no even levels
8273 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8274 (org-show-context t)
8275 (error "Not all levels are odd in this file. Conversion not possible"))
8276 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8277 (let ((outline-regexp org-outline-regexp)
8278 (outline-level 'org-outline-level)
8279 (org-odd-levels-only nil) n)
8280 (save-excursion
8281 (goto-char (point-min))
8282 (while (re-search-forward "^\\*\\*+ " nil t)
8283 (setq n (/ (1- (length (match-string 0))) 2))
8284 (while (>= (setq n (1- n)) 0)
8285 (org-promote))
8286 (end-of-line 1))))))
8288 (defun org-tr-level (n)
8289 "Make N odd if required."
8290 (if org-odd-levels-only (1+ (/ n 2)) n))
8292 ;;; Vertical tree motion, cutting and pasting of subtrees
8294 (defun org-move-subtree-up (&optional arg)
8295 "Move the current subtree up past ARG headlines of the same level."
8296 (interactive "p")
8297 (org-move-subtree-down (- (prefix-numeric-value arg))))
8299 (defun org-move-subtree-down (&optional arg)
8300 "Move the current subtree down past ARG headlines of the same level."
8301 (interactive "p")
8302 (setq arg (prefix-numeric-value arg))
8303 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8304 'org-get-last-sibling))
8305 (ins-point (make-marker))
8306 (cnt (abs arg))
8307 (col (current-column))
8308 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8309 ;; Select the tree
8310 (org-back-to-heading)
8311 (setq beg0 (point))
8312 (save-excursion
8313 (setq ne-beg (org-back-over-empty-lines))
8314 (setq beg (point)))
8315 (save-match-data
8316 (save-excursion (outline-end-of-heading)
8317 (setq folded (outline-invisible-p)))
8318 (progn (org-end-of-subtree nil t)
8319 (unless (eobp) (backward-char))))
8320 (outline-next-heading)
8321 (setq ne-end (org-back-over-empty-lines))
8322 (setq end (point))
8323 (goto-char beg0)
8324 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8325 ;; include less whitespace
8326 (save-excursion
8327 (goto-char beg)
8328 (forward-line (- ne-beg ne-end))
8329 (setq beg (point))))
8330 ;; Find insertion point, with error handling
8331 (while (> cnt 0)
8332 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8333 (progn (goto-char beg0)
8334 (user-error "Cannot move past superior level or buffer limit")))
8335 (setq cnt (1- cnt)))
8336 (if (> arg 0)
8337 ;; Moving forward - still need to move over subtree
8338 (progn (org-end-of-subtree t t)
8339 (save-excursion
8340 (org-back-over-empty-lines)
8341 (or (bolp) (newline)))))
8342 (setq ne-ins (org-back-over-empty-lines))
8343 (move-marker ins-point (point))
8344 (setq txt (buffer-substring beg end))
8345 (org-save-markers-in-region beg end)
8346 (delete-region beg end)
8347 (org-remove-empty-overlays-at beg)
8348 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8349 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8350 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8351 (let ((bbb (point)))
8352 (insert-before-markers txt)
8353 (org-reinstall-markers-in-region bbb)
8354 (move-marker ins-point bbb))
8355 (or (bolp) (insert "\n"))
8356 (setq ins-end (point))
8357 (goto-char ins-point)
8358 (org-skip-whitespace)
8359 (when (and (< arg 0)
8360 (org-first-sibling-p)
8361 (> ne-ins ne-beg))
8362 ;; Move whitespace back to beginning
8363 (save-excursion
8364 (goto-char ins-end)
8365 (let ((kill-whole-line t))
8366 (kill-line (- ne-ins ne-beg)) (point)))
8367 (insert (make-string (- ne-ins ne-beg) ?\n)))
8368 (move-marker ins-point nil)
8369 (if folded
8370 (hide-subtree)
8371 (org-show-entry)
8372 (show-children)
8373 (org-cycle-hide-drawers 'children))
8374 (org-clean-visibility-after-subtree-move)
8375 ;; move back to the initial column we were at
8376 (move-to-column col)))
8378 (defvar org-subtree-clip ""
8379 "Clipboard for cut and paste of subtrees.
8380 This is actually only a copy of the kill, because we use the normal kill
8381 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8383 (defvar org-subtree-clip-folded nil
8384 "Was the last copied subtree folded?
8385 This is used to fold the tree back after pasting.")
8387 (defun org-cut-subtree (&optional n)
8388 "Cut the current subtree into the clipboard.
8389 With prefix arg N, cut this many sequential subtrees.
8390 This is a short-hand for marking the subtree and then cutting it."
8391 (interactive "p")
8392 (org-copy-subtree n 'cut))
8394 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8395 "Copy the current subtree it in the clipboard.
8396 With prefix arg N, copy this many sequential subtrees.
8397 This is a short-hand for marking the subtree and then copying it.
8398 If CUT is non-nil, actually cut the subtree.
8399 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8400 of some markers in the region, even if CUT is non-nil. This is
8401 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8402 (interactive "p")
8403 (let (beg end folded (beg0 (point)))
8404 (if (org-called-interactively-p 'any)
8405 (org-back-to-heading nil) ; take what looks like a subtree
8406 (org-back-to-heading t)) ; take what is really there
8407 (setq beg (point))
8408 (skip-chars-forward " \t\r\n")
8409 (save-match-data
8410 (if nosubtrees
8411 (outline-next-heading)
8412 (save-excursion (outline-end-of-heading)
8413 (setq folded (outline-invisible-p)))
8414 (ignore-errors (org-forward-heading-same-level (1- n) t))
8415 (org-end-of-subtree t t)))
8416 (setq end (point))
8417 (goto-char beg0)
8418 (when (> end beg)
8419 (setq org-subtree-clip-folded folded)
8420 (when (or cut force-store-markers)
8421 (org-save-markers-in-region beg end))
8422 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8423 (setq org-subtree-clip (current-kill 0))
8424 (message "%s: Subtree(s) with %d characters"
8425 (if cut "Cut" "Copied")
8426 (length org-subtree-clip)))))
8428 (defun org-paste-subtree (&optional level tree for-yank remove)
8429 "Paste the clipboard as a subtree, with modification of headline level.
8430 The entire subtree is promoted or demoted in order to match a new headline
8431 level.
8433 If the cursor is at the beginning of a headline, the same level as
8434 that headline is used to paste the tree.
8436 If not, the new level is derived from the *visible* headings
8437 before and after the insertion point, and taken to be the inferior headline
8438 level of the two. So if the previous visible heading is level 3 and the
8439 next is level 4 (or vice versa), level 4 will be used for insertion.
8440 This makes sure that the subtree remains an independent subtree and does
8441 not swallow low level entries.
8443 You can also force a different level, either by using a numeric prefix
8444 argument, or by inserting the heading marker by hand. For example, if the
8445 cursor is after \"*****\", then the tree will be shifted to level 5.
8447 If optional TREE is given, use this text instead of the kill ring.
8449 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8450 move back over whitespace before inserting, and move point to the end of
8451 the inserted text when done.
8453 When REMOVE is non-nil, remove the subtree from the clipboard."
8454 (interactive "P")
8455 (setq tree (or tree (and kill-ring (current-kill 0))))
8456 (unless (org-kill-is-subtree-p tree)
8457 (user-error "%s"
8458 (substitute-command-keys
8459 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8460 (org-with-limited-levels
8461 (let* ((visp (not (outline-invisible-p)))
8462 (txt tree)
8463 (^re_ "\\(\\*+\\)[ \t]*")
8464 (old-level (if (string-match org-outline-regexp-bol txt)
8465 (- (match-end 0) (match-beginning 0) 1)
8466 -1))
8467 (force-level (cond (level (prefix-numeric-value level))
8468 ((and (looking-at "[ \t]*$")
8469 (string-match
8470 "^\\*+$" (buffer-substring
8471 (point-at-bol) (point))))
8472 (- (match-end 0) (match-beginning 0)))
8473 ((and (bolp)
8474 (looking-at org-outline-regexp))
8475 (- (match-end 0) (point) 1))))
8476 (previous-level (save-excursion
8477 (condition-case nil
8478 (progn
8479 (outline-previous-visible-heading 1)
8480 (if (looking-at ^re_)
8481 (- (match-end 0) (match-beginning 0) 1)
8483 (error 1))))
8484 (next-level (save-excursion
8485 (condition-case nil
8486 (progn
8487 (or (looking-at org-outline-regexp)
8488 (outline-next-visible-heading 1))
8489 (if (looking-at ^re_)
8490 (- (match-end 0) (match-beginning 0) 1)
8492 (error 1))))
8493 (new-level (or force-level (max previous-level next-level)))
8494 (shift (if (or (= old-level -1)
8495 (= new-level -1)
8496 (= old-level new-level))
8498 (- new-level old-level)))
8499 (delta (if (> shift 0) -1 1))
8500 (func (if (> shift 0) 'org-demote 'org-promote))
8501 (org-odd-levels-only nil)
8502 beg end newend)
8503 ;; Remove the forced level indicator
8504 (if force-level
8505 (delete-region (point-at-bol) (point)))
8506 ;; Paste
8507 (beginning-of-line (if (bolp) 1 2))
8508 (setq beg (point))
8509 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8510 (insert-before-markers txt)
8511 (unless (string-match "\n\\'" txt) (insert "\n"))
8512 (setq newend (point))
8513 (org-reinstall-markers-in-region beg)
8514 (setq end (point))
8515 (goto-char beg)
8516 (skip-chars-forward " \t\n\r")
8517 (setq beg (point))
8518 (if (and (outline-invisible-p) visp)
8519 (save-excursion (outline-show-heading)))
8520 ;; Shift if necessary
8521 (unless (= shift 0)
8522 (save-restriction
8523 (narrow-to-region beg end)
8524 (while (not (= shift 0))
8525 (org-map-region func (point-min) (point-max))
8526 (setq shift (+ delta shift)))
8527 (goto-char (point-min))
8528 (setq newend (point-max))))
8529 (when (or (org-called-interactively-p 'interactive) for-yank)
8530 (message "Clipboard pasted as level %d subtree" new-level))
8531 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8532 kill-ring
8533 (eq org-subtree-clip (current-kill 0))
8534 org-subtree-clip-folded)
8535 ;; The tree was folded before it was killed/copied
8536 (hide-subtree))
8537 (and for-yank (goto-char newend))
8538 (and remove (setq kill-ring (cdr kill-ring))))))
8540 (defun org-kill-is-subtree-p (&optional txt)
8541 "Check if the current kill is an outline subtree, or a set of trees.
8542 Returns nil if kill does not start with a headline, or if the first
8543 headline level is not the largest headline level in the tree.
8544 So this will actually accept several entries of equal levels as well,
8545 which is OK for `org-paste-subtree'.
8546 If optional TXT is given, check this string instead of the current kill."
8547 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8548 (re (org-get-limited-outline-regexp))
8549 (^re (concat "^" re))
8550 (start-level (and kill
8551 (string-match
8552 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8553 kill)
8554 (- (match-end 2) (match-beginning 2) 1)))
8555 (start (1+ (or (match-beginning 2) -1))))
8556 (if (not start-level)
8557 (progn
8558 nil) ;; does not even start with a heading
8559 (catch 'exit
8560 (while (setq start (string-match ^re kill (1+ start)))
8561 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8562 (throw 'exit nil)))
8563 t))))
8565 (defvar org-markers-to-move nil
8566 "Markers that should be moved with a cut-and-paste operation.
8567 Those markers are stored together with their positions relative to
8568 the start of the region.")
8570 (defun org-save-markers-in-region (beg end)
8571 "Check markers in region.
8572 If these markers are between BEG and END, record their position relative
8573 to BEG, so that after moving the block of text, we can put the markers back
8574 into place.
8575 This function gets called just before an entry or tree gets cut from the
8576 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8577 called immediately, to move the markers with the entries."
8578 (setq org-markers-to-move nil)
8579 (when (featurep 'org-clock)
8580 (org-clock-save-markers-for-cut-and-paste beg end))
8581 (when (featurep 'org-agenda)
8582 (org-agenda-save-markers-for-cut-and-paste beg end)))
8584 (defun org-check-and-save-marker (marker beg end)
8585 "Check if MARKER is between BEG and END.
8586 If yes, remember the marker and the distance to BEG."
8587 (when (and (marker-buffer marker)
8588 (equal (marker-buffer marker) (current-buffer)))
8589 (if (and (>= marker beg) (< marker end))
8590 (push (cons marker (- marker beg)) org-markers-to-move))))
8592 (defun org-reinstall-markers-in-region (beg)
8593 "Move all remembered markers to their position relative to BEG."
8594 (mapc (lambda (x)
8595 (move-marker (car x) (+ beg (cdr x))))
8596 org-markers-to-move)
8597 (setq org-markers-to-move nil))
8599 (defun org-narrow-to-subtree ()
8600 "Narrow buffer to the current subtree."
8601 (interactive)
8602 (save-excursion
8603 (save-match-data
8604 (org-with-limited-levels
8605 (narrow-to-region
8606 (progn (org-back-to-heading t) (point))
8607 (progn (org-end-of-subtree t t)
8608 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8609 (point)))))))
8611 (defun org-narrow-to-block ()
8612 "Narrow buffer to the current block."
8613 (interactive)
8614 (let* ((case-fold-search t)
8615 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8616 "^[ \t]*#\\+end_.*")))
8617 (if blockp
8618 (narrow-to-region (car blockp) (cdr blockp))
8619 (user-error "Not in a block"))))
8621 (defun org-clone-subtree-with-time-shift (n &optional shift)
8622 "Clone the task (subtree) at point N times.
8623 The clones will be inserted as siblings.
8625 In interactive use, the user will be prompted for the number of
8626 clones to be produced. If the entry has a timestamp, the user
8627 will also be prompted for a time shift, which may be a repeater
8628 as used in time stamps, for example `+3d'. To disable this,
8629 you can call the function with a universal prefix argument.
8631 When a valid repeater is given and the entry contains any time
8632 stamps, the clones will become a sequence in time, with time
8633 stamps in the subtree shifted for each clone produced. If SHIFT
8634 is nil or the empty string, time stamps will be left alone. The
8635 ID property of the original subtree is removed.
8637 If the original subtree did contain time stamps with a repeater,
8638 the following will happen:
8639 - the repeater will be removed in each clone
8640 - an additional clone will be produced, with the current, unshifted
8641 date(s) in the entry.
8642 - the original entry will be placed *after* all the clones, with
8643 repeater intact.
8644 - the start days in the repeater in the original entry will be shifted
8645 to past the last clone.
8646 In this way you can spell out a number of instances of a repeating task,
8647 and still retain the repeater to cover future instances of the task."
8648 (interactive "nNumber of clones to produce: ")
8649 (let ((shift
8650 (or shift
8651 (if (and (not (equal current-prefix-arg '(4)))
8652 (save-excursion
8653 (re-search-forward org-ts-regexp-both
8654 (save-excursion
8655 (org-end-of-subtree t)
8656 (point)) t)))
8657 (read-from-minibuffer
8658 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8659 ""))) ;; No time shift
8660 (n-no-remove -1)
8661 (drawer-re org-drawer-regexp)
8662 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8663 beg end template task idprop
8664 shift-n shift-what doshift nmin nmax)
8665 (if (not (and (integerp n) (> n 0)))
8666 (user-error "Invalid number of replications %s" n))
8667 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8668 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8669 shift)))
8670 (user-error "Invalid shift specification %s" shift))
8671 (when doshift
8672 (setq shift-n (string-to-number (match-string 1 shift))
8673 shift-what (cdr (assoc (match-string 2 shift)
8674 '(("d" . day) ("w" . week)
8675 ("m" . month) ("y" . year))))))
8676 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8677 (setq nmin 1 nmax n)
8678 (org-back-to-heading t)
8679 (setq beg (point))
8680 (setq idprop (org-entry-get nil "ID"))
8681 (org-end-of-subtree t t)
8682 (or (bolp) (insert "\n"))
8683 (setq end (point))
8684 (setq template (buffer-substring beg end))
8685 (when (and doshift
8686 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8687 (delete-region beg end)
8688 (setq end beg)
8689 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8690 (goto-char end)
8691 (loop for n from nmin to nmax do
8692 ;; prepare clone
8693 (with-temp-buffer
8694 (insert template)
8695 (org-mode)
8696 (goto-char (point-min))
8697 (org-show-subtree)
8698 (and idprop (if org-clone-delete-id
8699 (org-entry-delete nil "ID")
8700 (org-id-get-create t)))
8701 (unless (= n 0)
8702 (while (re-search-forward org-clock-re nil t)
8703 (kill-whole-line))
8704 (goto-char (point-min))
8705 (while (re-search-forward drawer-re nil t)
8706 (org-remove-empty-drawer-at (point))))
8707 (goto-char (point-min))
8708 (when doshift
8709 (while (re-search-forward org-ts-regexp-both nil t)
8710 (org-timestamp-change (* n shift-n) shift-what))
8711 (unless (= n n-no-remove)
8712 (goto-char (point-min))
8713 (while (re-search-forward org-ts-regexp nil t)
8714 (save-excursion
8715 (goto-char (match-beginning 0))
8716 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8717 (delete-region (match-beginning 1) (match-end 1)))))))
8718 (setq task (buffer-string)))
8719 (insert task))
8720 (goto-char beg)))
8722 ;;; Outline Sorting
8724 (defun org-sort (with-case)
8725 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8726 Optional argument WITH-CASE means sort case-sensitively."
8727 (interactive "P")
8728 (cond
8729 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8730 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8732 (org-call-with-arg 'org-sort-entries with-case))))
8734 (defun org-sort-remove-invisible (s)
8735 "Remove invisible links from string S."
8736 (remove-text-properties 0 (length s) org-rm-props s)
8737 (while (string-match org-bracket-link-regexp s)
8738 (setq s (replace-match (if (match-end 2)
8739 (match-string 3 s)
8740 (match-string 1 s)) t t s)))
8741 (let ((st (format " %s " s)))
8742 (while (string-match org-emph-re st)
8743 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8744 (setq s (substring st 1 -1)))
8747 (defvar org-priority-regexp) ; defined later in the file
8749 (defvar org-after-sorting-entries-or-items-hook nil
8750 "Hook that is run after a bunch of entries or items have been sorted.
8751 When children are sorted, the cursor is in the parent line when this
8752 hook gets called. When a region or a plain list is sorted, the cursor
8753 will be in the first entry of the sorted region/list.")
8755 (defun org-sort-entries
8756 (&optional with-case sorting-type getkey-func compare-func property)
8757 "Sort entries on a certain level of an outline tree.
8758 If there is an active region, the entries in the region are sorted.
8759 Else, if the cursor is before the first entry, sort the top-level items.
8760 Else, the children of the entry at point are sorted.
8762 Sorting can be alphabetically, numerically, by date/time as given by
8763 a time stamp, by a property, by priority order, or by a custom function.
8765 The command prompts for the sorting type unless it has been given to the
8766 function through the SORTING-TYPE argument, which needs to be a character,
8767 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8768 the precise meaning of each character:
8770 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8771 c By creation time, which is assumed to be the first inactive time stamp
8772 at the beginning of a line.
8773 d By deadline date/time.
8774 k By clocking time.
8775 n Numerically, by converting the beginning of the entry/item to a number.
8776 o By order of TODO keywords.
8777 p By priority according to the cookie.
8778 r By the value of a property.
8779 s By scheduled date/time.
8780 t By date/time, either the first active time stamp in the entry, or, if
8781 none exist, by the first inactive one.
8783 Capital letters will reverse the sort order.
8785 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8786 called with point at the beginning of the record. It must return either
8787 a string or a number that should serve as the sorting key for that record.
8789 Comparing entries ignores case by default. However, with an optional argument
8790 WITH-CASE, the sorting considers case as well.
8792 Sorting is done against the visible part of the headlines, it ignores hidden
8793 links.
8795 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8796 (interactive "P")
8797 (let ((case-func (if with-case 'identity 'downcase))
8798 (cmstr
8799 ;; The clock marker is lost when using `sort-subr', let's
8800 ;; store the clocking string.
8801 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8802 (save-excursion
8803 (goto-char org-clock-marker)
8804 (looking-back "^.*") (match-string-no-properties 0))))
8805 start beg end stars re re2
8806 txt what tmp)
8807 ;; Find beginning and end of region to sort
8808 (cond
8809 ((org-region-active-p)
8810 ;; we will sort the region
8811 (setq end (region-end)
8812 what "region")
8813 (goto-char (region-beginning))
8814 (if (not (org-at-heading-p)) (outline-next-heading))
8815 (setq start (point)))
8816 ((or (org-at-heading-p)
8817 (ignore-errors (progn (org-back-to-heading) t)))
8818 ;; we will sort the children of the current headline
8819 (org-back-to-heading)
8820 (setq start (point)
8821 end (progn (org-end-of-subtree t t)
8822 (or (bolp) (insert "\n"))
8823 (when (>= (org-back-over-empty-lines) 1)
8824 (forward-line 1))
8825 (point))
8826 what "children")
8827 (goto-char start)
8828 (show-subtree)
8829 (outline-next-heading))
8831 ;; we will sort the top-level entries in this file
8832 (goto-char (point-min))
8833 (or (org-at-heading-p) (outline-next-heading))
8834 (setq start (point))
8835 (goto-char (point-max))
8836 (beginning-of-line 1)
8837 (when (looking-at ".*?\\S-")
8838 ;; File ends in a non-white line
8839 (end-of-line 1)
8840 (insert "\n"))
8841 (setq end (point-max))
8842 (setq what "top-level")
8843 (goto-char start)
8844 (show-all)))
8846 (setq beg (point))
8847 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8849 (looking-at "\\(\\*+\\)")
8850 (setq stars (match-string 1)
8851 re (concat "^" (regexp-quote stars) " +")
8852 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8853 txt (buffer-substring beg end))
8854 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8855 (if (and (not (equal stars "*")) (string-match re2 txt))
8856 (user-error "Region to sort contains a level above the first entry"))
8858 (unless sorting-type
8859 (message
8860 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8861 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8862 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8863 what)
8864 (setq sorting-type (read-char-exclusive))
8866 (unless getkey-func
8867 (and (= (downcase sorting-type) ?f)
8868 (setq getkey-func
8869 (org-icompleting-read "Sort using function: "
8870 obarray 'fboundp t nil nil))
8871 (setq getkey-func (intern getkey-func))))
8873 (and (= (downcase sorting-type) ?r)
8874 (not property)
8875 (setq property
8876 (org-icompleting-read "Property: "
8877 (mapcar 'list (org-buffer-property-keys t))
8878 nil t))))
8880 (when (member sorting-type '(?k ?K)) (org-clock-sum))
8881 (message "Sorting entries...")
8883 (save-restriction
8884 (narrow-to-region start end)
8885 (let ((dcst (downcase sorting-type))
8886 (case-fold-search nil)
8887 (now (current-time)))
8888 (sort-subr
8889 (/= dcst sorting-type)
8890 ;; This function moves to the beginning character of the "record" to
8891 ;; be sorted.
8892 (lambda nil
8893 (if (re-search-forward re nil t)
8894 (goto-char (match-beginning 0))
8895 (goto-char (point-max))))
8896 ;; This function moves to the last character of the "record" being
8897 ;; sorted.
8898 (lambda nil
8899 (save-match-data
8900 (condition-case nil
8901 (outline-forward-same-level 1)
8902 (error
8903 (goto-char (point-max))))))
8904 ;; This function returns the value that gets sorted against.
8905 (lambda nil
8906 (cond
8907 ((= dcst ?n)
8908 (if (looking-at org-complex-heading-regexp)
8909 (string-to-number (org-sort-remove-invisible (match-string 4)))
8910 nil))
8911 ((= dcst ?a)
8912 (if (looking-at org-complex-heading-regexp)
8913 (funcall case-func (org-sort-remove-invisible (match-string 4)))
8914 nil))
8915 ((= dcst ?k)
8916 (or (get-text-property (point) :org-clock-minutes) 0))
8917 ((= dcst ?t)
8918 (let ((end (save-excursion (outline-next-heading) (point))))
8919 (if (or (re-search-forward org-ts-regexp end t)
8920 (re-search-forward org-ts-regexp-both end t))
8921 (org-time-string-to-seconds (match-string 0))
8922 (org-float-time now))))
8923 ((= dcst ?c)
8924 (let ((end (save-excursion (outline-next-heading) (point))))
8925 (if (re-search-forward
8926 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
8927 end t)
8928 (org-time-string-to-seconds (match-string 0))
8929 (org-float-time now))))
8930 ((= dcst ?s)
8931 (let ((end (save-excursion (outline-next-heading) (point))))
8932 (if (re-search-forward org-scheduled-time-regexp end t)
8933 (org-time-string-to-seconds (match-string 1))
8934 (org-float-time now))))
8935 ((= dcst ?d)
8936 (let ((end (save-excursion (outline-next-heading) (point))))
8937 (if (re-search-forward org-deadline-time-regexp end t)
8938 (org-time-string-to-seconds (match-string 1))
8939 (org-float-time now))))
8940 ((= dcst ?p)
8941 (if (re-search-forward org-priority-regexp (point-at-eol) t)
8942 (string-to-char (match-string 2))
8943 org-default-priority))
8944 ((= dcst ?r)
8945 (or (org-entry-get nil property) ""))
8946 ((= dcst ?o)
8947 (if (looking-at org-complex-heading-regexp)
8948 (let* ((m (match-string 2))
8949 (s (if (member m org-done-keywords) '- '+)))
8950 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
8951 ((= dcst ?f)
8952 (if getkey-func
8953 (progn
8954 (setq tmp (funcall getkey-func))
8955 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
8956 tmp)
8957 (error "Invalid key function `%s'" getkey-func)))
8958 (t (error "Invalid sorting type `%c'" sorting-type))))
8960 (cond
8961 ((= dcst ?a) 'string<)
8962 ((= dcst ?f) compare-func)
8963 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
8964 (run-hooks 'org-after-sorting-entries-or-items-hook)
8965 ;; Reset the clock marker if needed
8966 (when cmstr
8967 (save-excursion
8968 (goto-char start)
8969 (search-forward cmstr nil t)
8970 (move-marker org-clock-marker (point))))
8971 (message "Sorting entries...done")))
8973 (defun org-do-sort (table what &optional with-case sorting-type)
8974 "Sort TABLE of WHAT according to SORTING-TYPE.
8975 The user will be prompted for the SORTING-TYPE if the call to this
8976 function does not specify it.
8977 WHAT is only for the prompt, to indicate what is being sorted.
8978 The sorting key will be extracted from the car of the elements of
8979 the table.
8980 If WITH-CASE is non-nil, the sorting will be case-sensitive."
8981 (unless sorting-type
8982 (message
8983 "Sort %s: [a]lphabetic, [n]umeric, [t]ime. A/N/T means reversed:"
8984 what)
8985 (setq sorting-type (read-char-exclusive)))
8986 (let ((dcst (downcase sorting-type))
8987 extractfun comparefun)
8988 ;; Define the appropriate functions
8989 (cond
8990 ((= dcst ?n)
8991 (setq extractfun 'string-to-number
8992 comparefun (if (= dcst sorting-type) '< '>)))
8993 ((= dcst ?a)
8994 (setq extractfun (if with-case (lambda(x) (org-sort-remove-invisible x))
8995 (lambda(x) (downcase (org-sort-remove-invisible x))))
8996 comparefun (if (= dcst sorting-type)
8997 'string<
8998 (lambda (a b) (and (not (string< a b))
8999 (not (string= a b)))))))
9000 ((= dcst ?t)
9001 (setq extractfun
9002 (lambda (x)
9003 (cond ((or (string-match org-ts-regexp x)
9004 (string-match org-ts-regexp-both x))
9005 (org-float-time
9006 (org-time-string-to-time (match-string 0 x))))
9007 ((string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" x)
9008 (org-hh:mm-string-to-minutes x))
9009 (t 0)))
9010 comparefun (if (= dcst sorting-type) '< '>)))
9011 (t (error "Invalid sorting type `%c'" sorting-type)))
9013 (sort (mapcar (lambda (x) (cons (funcall extractfun (car x)) (cdr x)))
9014 table)
9015 (lambda (a b) (funcall comparefun (car a) (car b))))))
9018 ;;; The orgstruct minor mode
9020 ;; Define a minor mode which can be used in other modes in order to
9021 ;; integrate the org-mode structure editing commands.
9023 ;; This is really a hack, because the org-mode structure commands use
9024 ;; keys which normally belong to the major mode. Here is how it
9025 ;; works: The minor mode defines all the keys necessary to operate the
9026 ;; structure commands, but wraps the commands into a function which
9027 ;; tests if the cursor is currently at a headline or a plain list
9028 ;; item. If that is the case, the structure command is used,
9029 ;; temporarily setting many Org-mode variables like regular
9030 ;; expressions for filling etc. However, when any of those keys is
9031 ;; used at a different location, function uses `key-binding' to look
9032 ;; up if the key has an associated command in another currently active
9033 ;; keymap (minor modes, major mode, global), and executes that
9034 ;; command. There might be problems if any of the keys is otherwise
9035 ;; used as a prefix key.
9037 (defcustom orgstruct-heading-prefix-regexp ""
9038 "Regexp that matches the custom prefix of Org headlines in
9039 orgstruct(++)-mode."
9040 :group 'org
9041 :version "24.4"
9042 :package-version '(Org . "8.3")
9043 :type 'regexp)
9044 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9046 (defcustom orgstruct-setup-hook nil
9047 "Hook run after orgstruct-mode-map is filled."
9048 :group 'org
9049 :version "24.4"
9050 :package-version '(Org . "8.0")
9051 :type 'hook)
9053 (defvar orgstruct-initialized nil)
9055 (defvar org-local-vars nil
9056 "List of local variables, for use by `orgstruct-mode'.")
9058 ;;;###autoload
9059 (define-minor-mode orgstruct-mode
9060 "Toggle the minor mode `orgstruct-mode'.
9061 This mode is for using Org-mode structure commands in other
9062 modes. The following keys behave as if Org-mode were active, if
9063 the cursor is on a headline, or on a plain list item (both as
9064 defined by Org-mode)."
9065 nil " OrgStruct" (make-sparse-keymap)
9066 (funcall (if orgstruct-mode
9067 'add-to-invisibility-spec
9068 'remove-from-invisibility-spec)
9069 '(outline . t))
9070 (when orgstruct-mode
9071 (org-load-modules-maybe)
9072 (unless orgstruct-initialized
9073 (orgstruct-setup)
9074 (setq orgstruct-initialized t))))
9076 ;;;###autoload
9077 (defun turn-on-orgstruct ()
9078 "Unconditionally turn on `orgstruct-mode'."
9079 (orgstruct-mode 1))
9081 (defvar org-fb-vars nil)
9082 (make-variable-buffer-local 'org-fb-vars)
9083 (defun orgstruct++-mode (&optional arg)
9084 "Toggle `orgstruct-mode', the enhanced version of it.
9085 In addition to setting orgstruct-mode, this also exports all
9086 indentation and autofilling variables from org-mode into the
9087 buffer. It will also recognize item context in multiline items."
9088 (interactive "P")
9089 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9090 (if (< arg 1)
9091 (progn (orgstruct-mode -1)
9092 (mapc (lambda(v)
9093 (org-set-local (car v)
9094 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9095 org-fb-vars))
9096 (orgstruct-mode 1)
9097 (setq org-fb-vars nil)
9098 (unless org-local-vars
9099 (setq org-local-vars (org-get-local-variables)))
9100 (let (var val)
9101 (mapc
9102 (lambda (x)
9103 (when (string-match
9104 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9105 (symbol-name (car x)))
9106 (setq var (car x) val (nth 1 x))
9107 (push (list var `(quote ,(eval var))) org-fb-vars)
9108 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9109 org-local-vars)
9110 (org-set-local 'orgstruct-is-++ t))))
9112 (defvar orgstruct-is-++ nil
9113 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9114 (make-variable-buffer-local 'orgstruct-is-++)
9116 ;;;###autoload
9117 (defun turn-on-orgstruct++ ()
9118 "Unconditionally turn on `orgstruct++-mode'."
9119 (orgstruct++-mode 1))
9121 (defun orgstruct-error ()
9122 "Error when there is no default binding for a structure key."
9123 (interactive)
9124 (funcall (if (fboundp 'user-error)
9125 'user-error
9126 'error)
9127 "This key has no function outside structure elements"))
9129 (defun orgstruct-setup ()
9130 "Setup orgstruct keymap."
9131 (dolist (cell '((org-demote . t)
9132 (org-metaleft . t)
9133 (org-metaright . t)
9134 (org-promote . t)
9135 (org-shiftmetaleft . t)
9136 (org-shiftmetaright . t)
9137 org-backward-element
9138 org-backward-heading-same-level
9139 org-ctrl-c-ret
9140 org-ctrl-c-minus
9141 org-ctrl-c-star
9142 org-cycle
9143 org-forward-heading-same-level
9144 org-insert-heading
9145 org-insert-heading-respect-content
9146 org-kill-note-or-show-branches
9147 org-mark-subtree
9148 org-meta-return
9149 org-metadown
9150 org-metaup
9151 org-narrow-to-subtree
9152 org-promote-subtree
9153 org-reveal
9154 org-shiftdown
9155 org-shiftleft
9156 org-shiftmetadown
9157 org-shiftmetaup
9158 org-shiftright
9159 org-shifttab
9160 org-shifttab
9161 org-shiftup
9162 org-show-subtree
9163 org-sort
9164 org-up-element
9165 outline-demote
9166 outline-next-visible-heading
9167 outline-previous-visible-heading
9168 outline-promote
9169 outline-up-heading
9170 show-children))
9171 (let ((f (or (car-safe cell) cell))
9172 (disable-when-heading-prefix (cdr-safe cell)))
9173 (when (fboundp f)
9174 (let ((new-bindings))
9175 (dolist (binding (nconc (where-is-internal f org-mode-map)
9176 (where-is-internal f outline-mode-map)))
9177 (push binding new-bindings)
9178 ;; TODO use local-function-key-map
9179 (dolist (rep '(("<tab>" . "TAB")
9180 ("<return>" . "RET")
9181 ("<escape>" . "ESC")
9182 ("<delete>" . "DEL")))
9183 (setq binding (read-kbd-macro
9184 (let ((case-fold-search))
9185 (replace-regexp-in-string
9186 (regexp-quote (cdr rep))
9187 (car rep)
9188 (key-description binding)))))
9189 (pushnew binding new-bindings :test 'equal)))
9190 (dolist (binding new-bindings)
9191 (let ((key (lookup-key orgstruct-mode-map binding)))
9192 (when (or (not key) (numberp key))
9193 (ignore-errors
9194 (org-defkey orgstruct-mode-map
9195 binding
9196 (orgstruct-make-binding
9197 f binding disable-when-heading-prefix))))))))))
9198 (run-hooks 'orgstruct-setup-hook))
9200 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9201 "Create a function for binding in the structure minor mode.
9202 FUN is the command to call inside a table. KEY is the key that
9203 should be checked in for a command to execute outside of tables.
9204 Non-nil `disable-when-heading-prefix' means to disable the command
9205 if `orgstruct-heading-prefix-regexp' is not empty."
9206 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9207 (let ((nname name)
9208 (i 0))
9209 (while (fboundp (intern nname))
9210 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9211 (setq name (intern nname)))
9212 (eval
9213 (let ((bindings '((org-heading-regexp
9214 (concat "^"
9215 orgstruct-heading-prefix-regexp
9216 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9217 (org-outline-regexp
9218 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9219 (org-outline-regexp-bol
9220 (concat "^" org-outline-regexp))
9221 (outline-regexp org-outline-regexp)
9222 (outline-heading-end-regexp "\n")
9223 (outline-level 'org-outline-level)
9224 (outline-heading-alist))))
9225 `(defun ,name (arg)
9226 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9227 "Outside of structure, run the binding of `"
9228 (key-description key) "'."
9229 (when disable-when-heading-prefix
9230 (concat
9231 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9232 "back to the default binding due to limitations of Org's implementation of\n"
9233 "`" (symbol-name fun) "'.")))
9234 (interactive "p")
9235 (let* ((disable
9236 ,(and disable-when-heading-prefix
9237 '(not (string= orgstruct-heading-prefix-regexp ""))))
9238 (fallback
9239 (or disable
9240 (not
9241 (let* ,bindings
9242 (org-context-p 'headline 'item
9243 ,(when (memq fun
9244 '(org-insert-heading
9245 org-insert-heading-respect-content
9246 org-meta-return))
9247 '(when orgstruct-is-++
9248 'item-body))))))))
9249 (if fallback
9250 (let* ((orgstruct-mode)
9251 (binding
9252 (let ((key ,key))
9253 (catch 'exit
9254 (dolist
9255 (rep
9256 '(nil
9257 ("<\\([^>]*\\)tab>" . "\\1TAB")
9258 ("<\\([^>]*\\)return>" . "\\1RET")
9259 ("<\\([^>]*\\)escape>" . "\\1ESC")
9260 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9261 nil)
9262 (when rep
9263 (setq key (read-kbd-macro
9264 (let ((case-fold-search))
9265 (replace-regexp-in-string
9266 (car rep)
9267 (cdr rep)
9268 (key-description key))))))
9269 (when (key-binding key)
9270 (throw 'exit (key-binding key))))))))
9271 (if (keymapp binding)
9272 (org-set-transient-map binding)
9273 (let ((func (or binding
9274 (unless disable
9275 'orgstruct-error))))
9276 (when func
9277 (call-interactively func)))))
9278 (org-run-like-in-org-mode
9279 (lambda ()
9280 (interactive)
9281 (let* ,bindings
9282 (call-interactively ',fun)))))))))
9283 name))
9285 (defun org-contextualize-keys (alist contexts)
9286 "Return valid elements in ALIST depending on CONTEXTS.
9288 `org-agenda-custom-commands' or `org-capture-templates' are the
9289 values used for ALIST, and `org-agenda-custom-commands-contexts'
9290 or `org-capture-templates-contexts' are the associated contexts
9291 definitions."
9292 (let ((contexts
9293 ;; normalize contexts
9294 (mapcar
9295 (lambda(c) (cond ((listp (cadr c))
9296 (list (car c) (car c) (cadr c)))
9297 ((string= "" (cadr c))
9298 (list (car c) (car c) (caddr c)))
9299 (t c))) contexts))
9300 (a alist) c r s)
9301 ;; loop over all commands or templates
9302 (while (setq c (pop a))
9303 (let (vrules repl)
9304 (cond
9305 ((not (assoc (car c) contexts))
9306 (push c r))
9307 ((and (assoc (car c) contexts)
9308 (setq vrules (org-contextualize-validate-key
9309 (car c) contexts)))
9310 (mapc (lambda (vr)
9311 (when (not (equal (car vr) (cadr vr)))
9312 (setq repl vr))) vrules)
9313 (if (not repl) (push c r)
9314 (push (cadr repl) s)
9315 (push
9316 (cons (car c)
9317 (cdr (or (assoc (cadr repl) alist)
9318 (error "Undefined key `%s' as contextual replacement for `%s'"
9319 (cadr repl) (car c)))))
9320 r))))))
9321 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9322 (delq
9324 (delete-dups
9325 (mapcar (lambda (x)
9326 (let ((tpl (car x)))
9327 (when (not (delq
9329 (mapcar (lambda(y)
9330 (equal y tpl)) s))) x)))
9331 (reverse r))))))
9333 (defun org-contextualize-validate-key (key contexts)
9334 "Check CONTEXTS for agenda or capture KEY."
9335 (let (r rr res)
9336 (while (setq r (pop contexts))
9337 (mapc
9338 (lambda (rr)
9339 (when
9340 (and (equal key (car r))
9341 (if (functionp rr) (funcall rr)
9342 (or (and (eq (car rr) 'in-file)
9343 (buffer-file-name)
9344 (string-match (cdr rr) (buffer-file-name)))
9345 (and (eq (car rr) 'in-mode)
9346 (string-match (cdr rr) (symbol-name major-mode)))
9347 (and (eq (car rr) 'in-buffer)
9348 (string-match (cdr rr) (buffer-name)))
9349 (when (and (eq (car rr) 'not-in-file)
9350 (buffer-file-name))
9351 (not (string-match (cdr rr) (buffer-file-name))))
9352 (when (eq (car rr) 'not-in-mode)
9353 (not (string-match (cdr rr) (symbol-name major-mode))))
9354 (when (eq (car rr) 'not-in-buffer)
9355 (not (string-match (cdr rr) (buffer-name)))))))
9356 (push r res)))
9357 (car (last r))))
9358 (delete-dups (delq nil res))))
9360 (defun org-context-p (&rest contexts)
9361 "Check if local context is any of CONTEXTS.
9362 Possible values in the list of contexts are `table', `headline', and `item'."
9363 (let ((pos (point)))
9364 (goto-char (point-at-bol))
9365 (prog1 (or (and (memq 'table contexts)
9366 (looking-at "[ \t]*|"))
9367 (and (memq 'headline contexts)
9368 (looking-at org-outline-regexp))
9369 (and (memq 'item contexts)
9370 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9371 (and (memq 'item-body contexts)
9372 (org-in-item-p)))
9373 (goto-char pos))))
9375 (defun org-get-local-variables ()
9376 "Return a list of all local variables in an Org mode buffer."
9377 (let (varlist)
9378 (with-current-buffer (get-buffer-create "*Org tmp*")
9379 (erase-buffer)
9380 (org-mode)
9381 (setq varlist (buffer-local-variables)))
9382 (kill-buffer "*Org tmp*")
9383 (delq nil
9384 (mapcar
9385 (lambda (x)
9386 (setq x
9387 (if (symbolp x)
9388 (list x)
9389 (list (car x) (cdr x))))
9390 (if (and (not (get (car x) 'org-state))
9391 (string-match
9392 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9393 (symbol-name (car x))))
9394 x nil))
9395 varlist))))
9397 (defun org-clone-local-variables (from-buffer &optional regexp)
9398 "Clone local variables from FROM-BUFFER.
9399 Optional argument REGEXP selects variables to clone."
9400 (mapc
9401 (lambda (pair)
9402 (and (symbolp (car pair))
9403 (or (null regexp)
9404 (string-match regexp (symbol-name (car pair))))
9405 (set (make-local-variable (car pair))
9406 (cdr pair))))
9407 (buffer-local-variables from-buffer)))
9409 ;;;###autoload
9410 (defun org-run-like-in-org-mode (cmd)
9411 "Run a command, pretending that the current buffer is in Org-mode.
9412 This will temporarily bind local variables that are typically bound in
9413 Org-mode to the values they have in Org-mode, and then interactively
9414 call CMD."
9415 (org-load-modules-maybe)
9416 (unless org-local-vars
9417 (setq org-local-vars (org-get-local-variables)))
9418 (let (binds)
9419 (dolist (var org-local-vars)
9420 (when (or (not (boundp (car var)))
9421 (eq (symbol-value (car var))
9422 (default-value (car var))))
9423 (push (list (car var) `(quote ,(cadr var))) binds)))
9424 (eval `(let ,binds
9425 (call-interactively (quote ,cmd))))))
9427 (defun org-get-category (&optional pos force-refresh)
9428 "Get the category applying to position POS."
9429 (save-match-data
9430 (if force-refresh (org-refresh-category-properties))
9431 (let ((pos (or pos (point))))
9432 (or (get-text-property pos 'org-category)
9433 (progn (org-refresh-category-properties)
9434 (get-text-property pos 'org-category))))))
9436 ;;; Refresh properties
9438 (defun org-refresh-properties (dprop tprop)
9439 "Refresh buffer text properties.
9440 DPROP is the drawer property and TPROP is either the
9441 corresponding text property to set, or an alist with each element
9442 being a text property (as a symbol) and a function to apply to
9443 the value of the drawer property."
9444 (let ((case-fold-search t)
9445 (inhibit-read-only t))
9446 (org-with-silent-modifications
9447 (save-excursion
9448 (save-restriction
9449 (widen)
9450 (goto-char (point-min))
9451 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9452 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9454 (defun org-refresh-property (tprop p)
9455 "Refresh the buffer text property TPROP from the drawer property P.
9456 The refresh happens only for the current tree (not subtree)."
9457 (save-excursion
9458 (org-back-to-heading t)
9459 ;; tprop is a text property symbol
9460 (if (symbolp tprop)
9461 (put-text-property
9462 (point) (or (outline-next-heading) (point-max)) tprop p)
9463 ;; tprop is an alist with (properties . function) elements
9464 (mapc (lambda(al)
9465 (save-excursion
9466 (put-text-property
9467 (point-at-bol) (or (outline-next-heading) (point-max))
9468 (car al)
9469 (funcall (cdr al) p))))
9470 tprop))))
9472 (defun org-refresh-category-properties ()
9473 "Refresh category text properties in the buffer."
9474 (let ((case-fold-search t)
9475 (inhibit-read-only t)
9476 (def-cat (cond
9477 ((null org-category)
9478 (if buffer-file-name
9479 (file-name-sans-extension
9480 (file-name-nondirectory buffer-file-name))
9481 "???"))
9482 ((symbolp org-category) (symbol-name org-category))
9483 (t org-category)))
9484 beg end cat pos optionp)
9485 (org-with-silent-modifications
9486 (save-excursion
9487 (save-restriction
9488 (widen)
9489 (goto-char (point-min))
9490 (put-text-property (point) (point-max) 'org-category def-cat)
9491 (while (re-search-forward
9492 "^[ \t]*\\(\\(?:#\\+\\|:\\)CATEGORY:\\)\\(.*\\)" nil t)
9493 (setq pos (match-end 0)
9494 optionp (equal (char-after (match-beginning 0)) ?#)
9495 cat (org-trim (match-string 2)))
9496 (if optionp
9497 (setq beg (point-at-bol) end (point-max))
9498 (org-back-to-heading t)
9499 (setq beg (point) end (org-end-of-subtree t t)))
9500 (put-text-property beg end 'org-category cat)
9501 (goto-char pos)))))))
9503 (defun org-refresh-stats-properties ()
9504 "Refresh stats text properties in the buffer."
9505 (let (stats)
9506 (org-with-silent-modifications
9507 (save-excursion
9508 (save-restriction
9509 (widen)
9510 (goto-char (point-min))
9511 (while (re-search-forward
9512 (concat org-outline-regexp-bol ".*"
9513 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9514 nil t)
9515 (setq stats (cond ((equal (match-string 3) "0") 0)
9516 ((match-string 2)
9517 (/ (* (string-to-number (match-string 2)) 100)
9518 (string-to-number (match-string 3))))
9519 (t (string-to-number (match-string 1)))))
9520 (org-back-to-heading t)
9521 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9522 'org-stats stats)))))))
9524 (defun org-refresh-effort-properties ()
9525 "Refresh effort properties"
9526 (org-refresh-properties
9527 org-effort-property
9528 '((effort . identity)
9529 (effort-minutes . org-duration-string-to-minutes))))
9531 ;;;; Link Stuff
9533 ;;; Link abbreviations
9535 (defun org-link-expand-abbrev (link)
9536 "Apply replacements as defined in `org-link-abbrev-alist'."
9537 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9538 (let* ((key (match-string 1 link))
9539 (as (or (assoc key org-link-abbrev-alist-local)
9540 (assoc key org-link-abbrev-alist)))
9541 (tag (and (match-end 2) (match-string 3 link)))
9542 rpl)
9543 (if (not as)
9544 link
9545 (setq rpl (cdr as))
9546 (cond
9547 ((symbolp rpl) (funcall rpl tag))
9548 ((string-match "%(\\([^)]+\\))" rpl)
9549 (replace-match
9550 (save-match-data
9551 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9552 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9553 ((string-match "%h" rpl)
9554 (replace-match (url-hexify-string (or tag "")) t t rpl))
9555 (t (concat rpl tag)))))
9556 link))
9558 ;;; Storing and inserting links
9560 (defvar org-insert-link-history nil
9561 "Minibuffer history for links inserted with `org-insert-link'.")
9563 (defvar org-stored-links nil
9564 "Contains the links stored with `org-store-link'.")
9566 (defvar org-store-link-plist nil
9567 "Plist with info about the most recently link created with `org-store-link'.")
9569 (defvar org-link-protocols nil
9570 "Link protocols added to Org-mode using `org-add-link-type'.")
9572 (defvar org-store-link-functions nil
9573 "List of functions that are called to create and store a link.
9574 Each function will be called in turn until one returns a non-nil
9575 value. Each function should check if it is responsible for creating
9576 this link (for example by looking at the major mode).
9577 If not, it must exit and return nil.
9578 If yes, it should return a non-nil value after a calling
9579 `org-store-link-props' with a list of properties and values.
9580 Special properties are:
9582 :type The link prefix, like \"http\". This must be given.
9583 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9584 This is obligatory as well.
9585 :description Optional default description for the second pair
9586 of brackets in an Org-mode link. The user can still change
9587 this when inserting this link into an Org-mode buffer.
9589 In addition to these, any additional properties can be specified
9590 and then used in capture templates.")
9592 (defun org-add-link-type (type &optional follow export)
9593 "Add TYPE to the list of `org-link-types'.
9594 Re-compute all regular expressions depending on `org-link-types'
9596 FOLLOW and EXPORT are two functions.
9598 FOLLOW should take the link path as the single argument and do whatever
9599 is necessary to follow the link, for example find a file or display
9600 a mail message.
9602 EXPORT should format the link path for export to one of the export formats.
9603 It should be a function accepting three arguments:
9605 path the path of the link, the text after the prefix (like \"http:\")
9606 desc the description of the link, if any, or a description added by
9607 org-export-normalize-links if there is none
9608 format the export format, a symbol like `html' or `latex' or `ascii'..
9610 The function may use the FORMAT information to return different values
9611 depending on the format. The return value will be put literally into
9612 the exported file. If the return value is nil, this means Org should
9613 do what it normally does with links which do not have EXPORT defined.
9615 Org-mode has a built-in default for exporting links. If you are happy with
9616 this default, there is no need to define an export function for the link
9617 type. For a simple example of an export function, see `org-bbdb.el'."
9618 (add-to-list 'org-link-types type t)
9619 (org-make-link-regexps)
9620 (if (assoc type org-link-protocols)
9621 (setcdr (assoc type org-link-protocols) (list follow export))
9622 (push (list type follow export) org-link-protocols)))
9624 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9625 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9627 ;;;###autoload
9628 (defun org-store-link (arg)
9629 "\\<org-mode-map>Store an org-link to the current location.
9630 This link is added to `org-stored-links' and can later be inserted
9631 into an org-buffer with \\[org-insert-link].
9633 For some link types, a prefix arg is interpreted.
9634 For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
9635 For file links, arg negates `org-context-in-file-links'.
9637 A double prefix arg force skipping storing functions that are not
9638 part of Org's core.
9640 A triple prefix arg force storing a link for each line in the
9641 active region."
9642 (interactive "P")
9643 (org-load-modules-maybe)
9644 (if (and (equal arg '(64)) (org-region-active-p))
9645 (save-excursion
9646 (let ((end (region-end)))
9647 (goto-char (region-beginning))
9648 (set-mark (point))
9649 (while (< (point-at-eol) end)
9650 (move-end-of-line 1) (activate-mark)
9651 (let (current-prefix-arg)
9652 (call-interactively 'org-store-link))
9653 (move-beginning-of-line 2)
9654 (set-mark (point)))))
9655 (org-with-limited-levels
9656 (setq org-store-link-plist nil)
9657 (let (link cpltxt desc description search
9658 txt custom-id agenda-link sfuns sfunsn)
9659 (cond
9661 ;; Store a link using an external link type
9662 ((and (not (equal arg '(16)))
9663 (setq sfuns
9664 (delq
9665 nil (mapcar (lambda (f)
9666 (let (fs) (if (funcall f) (push f fs))))
9667 org-store-link-functions))
9668 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9669 (or (and (cdr sfuns)
9670 (funcall (intern
9671 (completing-read
9672 "Which function for creating the link? "
9673 sfunsn nil t (car sfunsn)))))
9674 (funcall (caar sfuns)))
9675 (setq link (plist-get org-store-link-plist :link)
9676 desc (or (plist-get org-store-link-plist
9677 :description) link))))
9679 ;; Store a link from a source code buffer
9680 ((org-src-edit-buffer-p)
9681 (let (label gc)
9682 (while (or (not label)
9683 (save-excursion
9684 (save-restriction
9685 (widen)
9686 (goto-char (point-min))
9687 (re-search-forward
9688 (regexp-quote (format org-coderef-label-format label))
9689 nil t))))
9690 (when label (message "Label exists already") (sit-for 2))
9691 (setq label (read-string "Code line label: " label)))
9692 (end-of-line 1)
9693 (setq link (format org-coderef-label-format label))
9694 (setq gc (- 79 (length link)))
9695 (if (< (current-column) gc) (org-move-to-column gc t) (insert " "))
9696 (insert link)
9697 (setq link (concat "(" label ")") desc nil)))
9699 ;; We are in the agenda, link to referenced location
9700 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9701 (let ((m (or (get-text-property (point) 'org-hd-marker)
9702 (get-text-property (point) 'org-marker))))
9703 (when m
9704 (org-with-point-at m
9705 (setq agenda-link
9706 (if (org-called-interactively-p 'any)
9707 (call-interactively 'org-store-link)
9708 (org-store-link nil)))))))
9710 ((eq major-mode 'calendar-mode)
9711 (let ((cd (calendar-cursor-to-date)))
9712 (setq link
9713 (format-time-string
9714 (car org-time-stamp-formats)
9715 (apply 'encode-time
9716 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9717 nil nil nil))))
9718 (org-store-link-props :type "calendar" :date cd)))
9720 ((eq major-mode 'help-mode)
9721 (setq link (concat "help:" (save-excursion
9722 (goto-char (point-min))
9723 (looking-at "^[^ ]+")
9724 (match-string 0))))
9725 (org-store-link-props :type "help"))
9727 ((eq major-mode 'w3-mode)
9728 (setq cpltxt (if (and (buffer-name)
9729 (not (string-match "Untitled" (buffer-name))))
9730 (buffer-name)
9731 (url-view-url t))
9732 link (url-view-url t))
9733 (org-store-link-props :type "w3" :url (url-view-url t)))
9735 ((eq major-mode 'image-mode)
9736 (setq cpltxt (concat "file:"
9737 (abbreviate-file-name buffer-file-name))
9738 link cpltxt)
9739 (org-store-link-props :type "image" :file buffer-file-name))
9741 ;; In dired, store a link to the file of the current line
9742 ((derived-mode-p 'dired-mode)
9743 (let ((file (dired-get-filename nil t)))
9744 (setq file (if file
9745 (abbreviate-file-name
9746 (expand-file-name (dired-get-filename nil t)))
9747 ;; otherwise, no file so use current directory.
9748 default-directory))
9749 (setq cpltxt (concat "file:" file)
9750 link cpltxt)))
9752 ((setq search (run-hook-with-args-until-success
9753 'org-create-file-search-functions))
9754 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9755 "::" search))
9756 (setq cpltxt (or description link)))
9758 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9759 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9760 (cond
9761 ;; Store a link using the target at point
9762 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9763 (setq cpltxt
9764 (concat "file:"
9765 (abbreviate-file-name
9766 (buffer-file-name (buffer-base-buffer)))
9767 "::" (match-string 1))
9768 link cpltxt))
9769 ((and (featurep 'org-id)
9770 (or (eq org-id-link-to-org-use-id t)
9771 (and (org-called-interactively-p 'any)
9772 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9773 (and (eq org-id-link-to-org-use-id
9774 'create-if-interactive-and-no-custom-id)
9775 (not custom-id))))
9776 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9777 ;; Store a link using the ID at point
9778 (setq link (condition-case nil
9779 (prog1 (org-id-store-link)
9780 (setq desc (or (plist-get org-store-link-plist
9781 :description)
9782 "")))
9783 (error
9784 ;; Probably before first headline, link only to file
9785 (concat "file:"
9786 (abbreviate-file-name
9787 (buffer-file-name (buffer-base-buffer))))))))
9789 ;; Just link to current headline
9790 (setq cpltxt (concat "file:"
9791 (abbreviate-file-name
9792 (buffer-file-name (buffer-base-buffer)))))
9793 ;; Add a context search string
9794 (when (org-xor org-context-in-file-links arg)
9795 (let* ((ee (org-element-at-point))
9796 (et (org-element-type ee))
9797 (ev (plist-get (cadr ee) :value))
9798 (ek (plist-get (cadr ee) :key))
9799 (eok (and (stringp ek) (string-match "name" ek))))
9800 (setq txt (cond
9801 ((org-at-heading-p) nil)
9802 ((and (eq et 'keyword) eok) ev)
9803 ((org-region-active-p)
9804 (buffer-substring (region-beginning) (region-end)))))
9805 (when (or (null txt) (string-match "\\S-" txt))
9806 (setq cpltxt
9807 (concat cpltxt "::"
9808 (condition-case nil
9809 (org-make-org-heading-search-string txt)
9810 (error "")))
9811 desc (or (and (eq et 'keyword) eok ev)
9812 (nth 4 (ignore-errors (org-heading-components)))
9813 "NONE")))))
9814 (if (string-match "::\\'" cpltxt)
9815 (setq cpltxt (substring cpltxt 0 -2)))
9816 (setq link cpltxt))))
9818 ((buffer-file-name (buffer-base-buffer))
9819 ;; Just link to this file here.
9820 (setq cpltxt (concat "file:"
9821 (abbreviate-file-name
9822 (buffer-file-name (buffer-base-buffer)))))
9823 ;; Add a context string.
9824 (when (org-xor org-context-in-file-links arg)
9825 (setq txt (if (org-region-active-p)
9826 (buffer-substring (region-beginning) (region-end))
9827 (buffer-substring (point-at-bol) (point-at-eol))))
9828 ;; Only use search option if there is some text.
9829 (when (string-match "\\S-" txt)
9830 (setq cpltxt
9831 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9832 desc "NONE")))
9833 (setq link cpltxt))
9835 ((org-called-interactively-p 'interactive)
9836 (user-error "No method for storing a link from this buffer"))
9838 (t (setq link nil)))
9840 ;; We're done setting link and desc, clean up
9841 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9842 (setq link (or link cpltxt)
9843 desc (or desc cpltxt))
9844 (cond ((equal desc "NONE") (setq desc nil))
9845 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9846 (let ((d0 (match-string 3 desc))
9847 (p0 (match-string 5 desc)))
9848 (setq desc
9849 (replace-regexp-in-string
9850 org-bracket-link-regexp
9851 (concat (or p0 d0)
9852 (if (equal (length (match-string 0 desc))
9853 (length desc)) "*" "")) desc)))))
9855 ;; Return the link
9856 (if (not (and (or (org-called-interactively-p 'any)
9857 executing-kbd-macro) link))
9858 (or agenda-link (and link (org-make-link-string link desc)))
9859 (push (list link desc) org-stored-links)
9860 (message "Stored: %s" (or desc link))
9861 (when custom-id
9862 (setq link (concat "file:" (abbreviate-file-name
9863 (buffer-file-name)) "::#" custom-id))
9864 (push (list link desc) org-stored-links))
9865 (car org-stored-links))))))
9867 (defun org-store-link-props (&rest plist)
9868 "Store link properties, extract names and addresses."
9869 (let (x adr)
9870 (when (setq x (plist-get plist :from))
9871 (setq adr (mail-extract-address-components x))
9872 (setq plist (plist-put plist :fromname (car adr)))
9873 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9874 (when (setq x (plist-get plist :to))
9875 (setq adr (mail-extract-address-components x))
9876 (setq plist (plist-put plist :toname (car adr)))
9877 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9878 (let ((from (plist-get plist :from))
9879 (to (plist-get plist :to)))
9880 (when (and from to org-from-is-user-regexp)
9881 (setq plist
9882 (plist-put plist :fromto
9883 (if (string-match org-from-is-user-regexp from)
9884 (concat "to %t")
9885 (concat "from %f"))))))
9886 (setq org-store-link-plist plist))
9888 (defun org-add-link-props (&rest plist)
9889 "Add these properties to the link property list."
9890 (let (key value)
9891 (while plist
9892 (setq key (pop plist) value (pop plist))
9893 (setq org-store-link-plist
9894 (plist-put org-store-link-plist key value)))))
9896 (defun org-email-link-description (&optional fmt)
9897 "Return the description part of an email link.
9898 This takes information from `org-store-link-plist' and formats it
9899 according to FMT (default from `org-email-link-description-format')."
9900 (setq fmt (or fmt org-email-link-description-format))
9901 (let* ((p org-store-link-plist)
9902 (to (plist-get p :toaddress))
9903 (from (plist-get p :fromaddress))
9904 (table
9905 (list
9906 (cons "%c" (plist-get p :fromto))
9907 (cons "%F" (plist-get p :from))
9908 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
9909 (cons "%T" (plist-get p :to))
9910 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
9911 (cons "%s" (plist-get p :subject))
9912 (cons "%d" (plist-get p :date))
9913 (cons "%m" (plist-get p :message-id)))))
9914 (when (string-match "%c" fmt)
9915 ;; Check if the user wrote this message
9916 (if (and org-from-is-user-regexp from to
9917 (save-match-data (string-match org-from-is-user-regexp from)))
9918 (setq fmt (replace-match "to %t" t t fmt))
9919 (setq fmt (replace-match "from %f" t t fmt))))
9920 (org-replace-escapes fmt table)))
9922 (defun org-make-org-heading-search-string (&optional string)
9923 "Make search string for the current headline or STRING."
9924 (let ((s (or string
9925 (and (derived-mode-p 'org-mode)
9926 (save-excursion
9927 (org-back-to-heading t)
9928 (org-element-property :raw-value (org-element-at-point))))))
9929 (lines org-context-in-file-links))
9930 (or string (setq s (concat "*" s))) ; Add * for headlines
9931 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
9932 (when (and string (integerp lines) (> lines 0))
9933 (let ((slines (org-split-string s "\n")))
9934 (when (< lines (length slines))
9935 (setq s (mapconcat
9936 'identity
9937 (reverse (nthcdr (- (length slines) lines)
9938 (reverse slines))) "\n")))))
9939 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
9941 (defun org-make-link-string (link &optional description)
9942 "Make a link with brackets, consisting of LINK and DESCRIPTION."
9943 (unless (string-match "\\S-" link)
9944 (error "Empty link"))
9945 (when (and description
9946 (stringp description)
9947 (not (string-match "\\S-" description)))
9948 (setq description nil))
9949 (when (stringp description)
9950 ;; Remove brackets from the description, they are fatal.
9951 (while (string-match "\\[" description)
9952 (setq description (replace-match "{" t t description)))
9953 (while (string-match "\\]" description)
9954 (setq description (replace-match "}" t t description))))
9955 (when (equal link description)
9956 ;; No description needed, it is identical
9957 (setq description nil))
9958 (when (and (not description)
9959 (not (string-match (org-image-file-name-regexp) link))
9960 (not (equal link (org-link-escape link))))
9961 (setq description (org-extract-attributes link)))
9962 (setq link
9963 (cond ((string-match (org-image-file-name-regexp) link) link)
9964 ((string-match org-link-types-re link)
9965 (concat (match-string 1 link)
9966 (org-link-escape (substring link (match-end 1)))))
9967 (t (org-link-escape link))))
9968 (concat "[[" link "]"
9969 (if description (concat "[" description "]") "")
9970 "]"))
9972 (defconst org-link-escape-chars
9973 ;;%20 %5B %5D
9974 '(?\ ?\[ ?\])
9975 "List of characters that should be escaped in a link when stored to Org.
9976 This is the list that is used for internal purposes.")
9978 (defconst org-link-escape-chars-browser
9979 ;;%20 %22
9980 '(?\ ?\")
9981 "List of characters to be escaped before handing over to the browser.
9982 If you consider using this constant then you probably want to use
9983 the function `org-link-escape-browser' instead. See there why
9984 this constant is a candidate to be removed once Org drops support
9985 for Emacs 24.1 and 24.2.")
9987 (defun org-link-escape (text &optional table merge)
9988 "Return percent escaped representation of TEXT.
9989 TEXT is a string with the text to escape.
9990 Optional argument TABLE is a list with characters that should be
9991 escaped. When nil, `org-link-escape-chars' is used.
9992 If optional argument MERGE is set, merge TABLE into
9993 `org-link-escape-chars'."
9994 ;; Don't escape chars in internal links
9995 (if (string-match "^\\*[[:alnum:]]+" text)
9996 text
9997 (cond
9998 ((and table merge)
9999 (mapc (lambda (defchr)
10000 (unless (member defchr table)
10001 (setq table (cons defchr table))))
10002 org-link-escape-chars))
10003 ((null table)
10004 (setq table org-link-escape-chars)))
10005 (mapconcat
10006 (lambda (char)
10007 (if (or (member char table)
10008 (and (or (< char 32) (= char ?\%) (> char 126))
10009 org-url-hexify-p))
10010 (mapconcat (lambda (sequence-element)
10011 (format "%%%.2X" sequence-element))
10012 (or (encode-coding-char char 'utf-8)
10013 (error "Unable to percent escape character: %s"
10014 (char-to-string char))) "")
10015 (char-to-string char))) text "")))
10017 (defun org-link-escape-browser (text)
10018 "Escape some characters before handing over to the browser.
10019 This function is a candidate to be removed together with the
10020 constant `org-link-escape-chars-browser' once Org drops support
10021 for Emacs 24.1 and 24.2. All calls to this function will have to
10022 be replaced with `url-encode-url' which is available since Emacs
10023 24.3.1."
10024 ;; Example with the Org link
10025 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10026 ;; to open the browser with +subject:"Release 8.2" filled into the
10027 ;; query field: In this case the variable TEXT contains the
10028 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10029 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10030 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10031 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10032 (if (fboundp 'url-encode-url)
10033 (url-encode-url text)
10034 (if (org-string-match-p
10035 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10036 text)
10037 (org-link-escape text org-link-escape-chars-browser)
10038 text)))
10040 (defun org-link-unescape (str)
10041 "Unhex hexified Unicode strings as returned from the JavaScript function
10042 encodeURIComponent. E.g. `%C3%B6' is the german o-Umlaut."
10043 (unless (and (null str) (string= "" str))
10044 (let ((pos 0) (case-fold-search t) unhexed)
10045 (while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
10046 (setq unhexed (org-link-unescape-compound (match-string 0 str)))
10047 (setq str (replace-match unhexed t t str))
10048 (setq pos (+ pos (length unhexed))))))
10049 str)
10051 (defun org-link-unescape-compound (hex)
10052 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10053 Note: this function also decodes single byte encodings like
10054 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10055 (save-match-data
10056 (let* ((bytes (cdr (split-string hex "%")))
10057 (ret "")
10058 (eat 0)
10059 (sum 0))
10060 (while bytes
10061 (let* ((val (string-to-number (pop bytes) 16))
10062 (shift-xor
10063 (if (= 0 eat)
10064 (cond
10065 ((>= val 252) (cons 6 252))
10066 ((>= val 248) (cons 5 248))
10067 ((>= val 240) (cons 4 240))
10068 ((>= val 224) (cons 3 224))
10069 ((>= val 192) (cons 2 192))
10070 (t (cons 0 0)))
10071 (cons 6 128))))
10072 (if (>= val 192) (setq eat (car shift-xor)))
10073 (setq val (logxor val (cdr shift-xor)))
10074 (setq sum (+ (lsh sum (car shift-xor)) val))
10075 (if (> eat 0) (setq eat (- eat 1)))
10076 (cond
10077 ((= 0 eat) ;multi byte
10078 (setq ret (concat ret (org-char-to-string sum)))
10079 (setq sum 0))
10080 ((not bytes) ; single byte(s)
10081 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10082 ret)))
10084 (defun org-link-unescape-single-byte-sequence (hex)
10085 "Unhexify hex-encoded single byte character sequences."
10086 (mapconcat (lambda (byte)
10087 (char-to-string (string-to-number byte 16)))
10088 (cdr (split-string hex "%")) ""))
10090 (defun org-xor (a b)
10091 "Exclusive or."
10092 (if a (not b) b))
10094 (defun org-fixup-message-id-for-http (s)
10095 "Replace special characters in a message id, so it can be used in an http query."
10096 (when (string-match "%" s)
10097 (setq s (mapconcat (lambda (c)
10098 (if (eq c ?%)
10099 "%25"
10100 (char-to-string c)))
10101 s "")))
10102 (while (string-match "<" s)
10103 (setq s (replace-match "%3C" t t s)))
10104 (while (string-match ">" s)
10105 (setq s (replace-match "%3E" t t s)))
10106 (while (string-match "@" s)
10107 (setq s (replace-match "%40" t t s)))
10110 (defun org-link-prettify (link)
10111 "Return a human-readable representation of LINK.
10112 The car of LINK must be a raw link.
10113 The cdr of LINK must be either a link description or nil."
10114 (let ((desc (or (cadr link) "<no description>")))
10115 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10116 "<" (car link) ">")))
10118 ;;;###autoload
10119 (defun org-insert-link-global ()
10120 "Insert a link like Org-mode does.
10121 This command can be called in any mode to insert a link in Org-mode syntax."
10122 (interactive)
10123 (org-load-modules-maybe)
10124 (org-run-like-in-org-mode 'org-insert-link))
10126 (defun org-insert-all-links (arg &optional pre post)
10127 "Insert all links in `org-stored-links'.
10128 When a universal prefix, do not delete the links from `org-stored-links'.
10129 When `ARG' is a number, insert the last N link(s).
10130 `PRE' and `POST' are optional arguments to define a string to
10131 prepend or to append."
10132 (interactive "P")
10133 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10134 (links (copy-seq org-stored-links))
10135 (pr (or pre "- "))
10136 (po (or post "\n"))
10137 (cnt 1) l)
10138 (if (null org-stored-links)
10139 (message "No link to insert")
10140 (while (and (or (listp arg) (>= arg cnt))
10141 (setq l (if (listp arg)
10142 (pop links)
10143 (pop org-stored-links))))
10144 (setq cnt (1+ cnt))
10145 (insert pr)
10146 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10147 (insert po)))))
10149 (defun org-insert-last-stored-link (arg)
10150 "Insert the last link stored in `org-stored-links'."
10151 (interactive "p")
10152 (org-insert-all-links arg "" "\n"))
10154 (defun org-link-fontify-links-to-this-file ()
10155 "Fontify links to the current file in `org-stored-links'."
10156 (let ((f (buffer-file-name)) a b)
10157 (setq a (mapcar (lambda(l)
10158 (let ((ll (car l)))
10159 (when (and (string-match "^file:\\(.+\\)::" ll)
10160 (equal f (expand-file-name (match-string 1 ll))))
10161 ll)))
10162 org-stored-links))
10163 (when (featurep 'org-id)
10164 (setq b (mapcar (lambda(l)
10165 (let ((ll (car l)))
10166 (when (and (string-match "^id:\\(.+\\)$" ll)
10167 (equal f (expand-file-name
10168 (or (org-id-find-id-file
10169 (match-string 1 ll)) ""))))
10170 ll)))
10171 org-stored-links)))
10172 (mapcar (lambda(l)
10173 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10174 (delq nil (append a b)))))
10176 (defvar org-link-links-in-this-file nil)
10177 (defun org-insert-link (&optional complete-file link-location default-description)
10178 "Insert a link. At the prompt, enter the link.
10180 Completion can be used to insert any of the link protocol prefixes like
10181 http or ftp in use.
10183 The history can be used to select a link previously stored with
10184 `org-store-link'. When the empty string is entered (i.e. if you just
10185 press RET at the prompt), the link defaults to the most recently
10186 stored link. As SPC triggers completion in the minibuffer, you need to
10187 use M-SPC or C-q SPC to force the insertion of a space character.
10189 You will also be prompted for a description, and if one is given, it will
10190 be displayed in the buffer instead of the link.
10192 If there is already a link at point, this command will allow you to edit link
10193 and description parts.
10195 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10196 be selected using completion. The path to the file will be relative to the
10197 current directory if the file is in the current directory or a subdirectory.
10198 Otherwise, the link will be the absolute path as completed in the minibuffer
10199 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10200 option `org-link-file-path-type'.
10202 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10203 the current directory or below.
10205 With three \\[universal-argument] prefixes, negate the meaning of
10206 `org-keep-stored-link-after-insertion'.
10208 If `org-make-link-description-function' is non-nil, this function will be
10209 called with the link target, and the result will be the default
10210 link description.
10212 If the LINK-LOCATION parameter is non-nil, this value will be
10213 used as the link location instead of reading one interactively.
10215 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10216 be used as the default description."
10217 (interactive "P")
10218 (let* ((wcf (current-window-configuration))
10219 (origbuf (current-buffer))
10220 (region (if (org-region-active-p)
10221 (buffer-substring (region-beginning) (region-end))))
10222 (remove (and region (list (region-beginning) (region-end))))
10223 (desc region)
10224 tmphist ; byte-compile incorrectly complains about this
10225 (link link-location)
10226 (abbrevs org-link-abbrev-alist-local)
10227 entry file all-prefixes auto-desc)
10228 (cond
10229 (link-location) ; specified by arg, just use it.
10230 ((org-in-regexp org-bracket-link-regexp 1)
10231 ;; We do have a link at point, and we are going to edit it.
10232 (setq remove (list (match-beginning 0) (match-end 0)))
10233 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10234 (setq link (read-string "Link: "
10235 (org-link-unescape
10236 (org-match-string-no-properties 1)))))
10237 ((or (org-in-regexp org-angle-link-re)
10238 (org-in-regexp org-plain-link-re))
10239 ;; Convert to bracket link
10240 (setq remove (list (match-beginning 0) (match-end 0))
10241 link (read-string "Link: "
10242 (org-remove-angle-brackets (match-string 0)))))
10243 ((member complete-file '((4) (16)))
10244 ;; Completing read for file names.
10245 (setq link (org-file-complete-link complete-file)))
10247 ;; Read link, with completion for stored links.
10248 (org-link-fontify-links-to-this-file)
10249 (org-switch-to-buffer-other-window "*Org Links*")
10250 (with-current-buffer "*Org Links*"
10251 (erase-buffer)
10252 (insert "Insert a link.
10253 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10254 (when org-stored-links
10255 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10256 (insert (mapconcat 'org-link-prettify
10257 (reverse org-stored-links) "\n")))
10258 (goto-char (point-min)))
10259 (let ((cw (selected-window)))
10260 (select-window (get-buffer-window "*Org Links*" 'visible))
10261 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10262 (unless (pos-visible-in-window-p (point-max))
10263 (org-fit-window-to-buffer))
10264 (and (window-live-p cw) (select-window cw)))
10265 ;; Fake a link history, containing the stored links.
10266 (setq tmphist (append (mapcar 'car org-stored-links)
10267 org-insert-link-history))
10268 (setq all-prefixes (append (mapcar 'car abbrevs)
10269 (mapcar 'car org-link-abbrev-alist)
10270 org-link-types))
10271 (unwind-protect
10272 (progn
10273 (setq link
10274 (org-completing-read
10275 "Link: "
10276 (append
10277 (mapcar (lambda (x) (concat x ":"))
10278 all-prefixes)
10279 (mapcar 'car org-stored-links))
10280 nil nil nil
10281 'tmphist
10282 (caar org-stored-links)))
10283 (if (not (string-match "\\S-" link))
10284 (user-error "No link selected"))
10285 (mapc (lambda(l)
10286 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10287 org-stored-links)
10288 (if (or (member link all-prefixes)
10289 (and (equal ":" (substring link -1))
10290 (member (substring link 0 -1) all-prefixes)
10291 (setq link (substring link 0 -1))))
10292 (setq link (with-current-buffer origbuf
10293 (org-link-try-special-completion link)))))
10294 (set-window-configuration wcf)
10295 (kill-buffer "*Org Links*"))
10296 (setq entry (assoc link org-stored-links))
10297 (or entry (push link org-insert-link-history))
10298 (setq desc (or desc (nth 1 entry)))))
10300 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10301 (not org-keep-stored-link-after-insertion))
10302 (setq org-stored-links (delq (assoc link org-stored-links)
10303 org-stored-links)))
10305 (if (and (string-match org-plain-link-re link)
10306 (not (string-match org-ts-regexp link)))
10307 ;; URL-like link, normalize the use of angular brackets.
10308 (setq link (org-remove-angle-brackets link)))
10310 ;; Check if we are linking to the current file with a search
10311 ;; option If yes, simplify the link by using only the search
10312 ;; option.
10313 (when (and buffer-file-name
10314 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10315 (let* ((path (match-string 1 link))
10316 (case-fold-search nil)
10317 (search (match-string 2 link)))
10318 (save-match-data
10319 (if (equal (file-truename buffer-file-name) (file-truename path))
10320 ;; We are linking to this same file, with a search option
10321 (setq link search)))))
10323 ;; Check if we can/should use a relative path. If yes, simplify the link
10324 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10325 (let* ((type (match-string 1 link))
10326 (path (match-string 2 link))
10327 (origpath path)
10328 (case-fold-search nil))
10329 (cond
10330 ((or (eq org-link-file-path-type 'absolute)
10331 (equal complete-file '(16)))
10332 (setq path (abbreviate-file-name (expand-file-name path))))
10333 ((eq org-link-file-path-type 'noabbrev)
10334 (setq path (expand-file-name path)))
10335 ((eq org-link-file-path-type 'relative)
10336 (setq path (file-relative-name path)))
10338 (save-match-data
10339 (if (string-match (concat "^" (regexp-quote
10340 (expand-file-name
10341 (file-name-as-directory
10342 default-directory))))
10343 (expand-file-name path))
10344 ;; We are linking a file with relative path name.
10345 (setq path (substring (expand-file-name path)
10346 (match-end 0)))
10347 (setq path (abbreviate-file-name (expand-file-name path)))))))
10348 (setq link (concat type path))
10349 (if (equal desc origpath)
10350 (setq desc path))))
10352 (if org-make-link-description-function
10353 (setq desc
10354 (or (condition-case nil
10355 (funcall org-make-link-description-function link desc)
10356 (error (progn (message "Can't get link description from `%s'"
10357 (symbol-name org-make-link-description-function))
10358 (sit-for 2) nil)))
10359 (read-string "Description: " default-description)))
10360 (if default-description (setq desc default-description)
10361 (setq desc (or (and auto-desc desc)
10362 (read-string "Description: " desc)))))
10364 (unless (string-match "\\S-" desc) (setq desc nil))
10365 (if remove (apply 'delete-region remove))
10366 (insert (org-make-link-string link desc))))
10368 (defun org-link-try-special-completion (type)
10369 "If there is completion support for link type TYPE, offer it."
10370 (let ((fun (intern (concat "org-" type "-complete-link"))))
10371 (if (functionp fun)
10372 (funcall fun)
10373 (read-string "Link (no completion support): " (concat type ":")))))
10375 (defun org-file-complete-link (&optional arg)
10376 "Create a file link using completion."
10377 (let (file link)
10378 (setq file (org-iread-file-name "File: "))
10379 (let ((pwd (file-name-as-directory (expand-file-name ".")))
10380 (pwd1 (file-name-as-directory (abbreviate-file-name
10381 (expand-file-name ".")))))
10382 (cond
10383 ((equal arg '(16))
10384 (setq link (concat
10385 "file:"
10386 (abbreviate-file-name (expand-file-name file)))))
10387 ((string-match (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10388 (setq link (concat "file:" (match-string 1 file))))
10389 ((string-match (concat "^" (regexp-quote pwd) "\\(.+\\)")
10390 (expand-file-name file))
10391 (setq link (concat
10392 "file:" (match-string 1 (expand-file-name file)))))
10393 (t (setq link (concat "file:" file)))))
10394 link))
10396 (defun org-iread-file-name (&rest args)
10397 "Read-file-name using `ido-mode' speedup if available.
10398 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10399 See `read-file-name' for a description of parameters."
10400 (org-without-partial-completion
10401 (if (and org-completion-use-ido
10402 (fboundp 'ido-read-file-name)
10403 (boundp 'ido-mode) ido-mode
10404 (listp (second args)))
10405 (let ((ido-enter-matching-directory nil))
10406 (apply 'ido-read-file-name args))
10407 (apply 'read-file-name args))))
10409 (defun org-completing-read (&rest args)
10410 "Completing-read with SPACE being a normal character."
10411 (let ((enable-recursive-minibuffers t)
10412 (minibuffer-local-completion-map
10413 (copy-keymap minibuffer-local-completion-map)))
10414 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10415 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10416 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10417 (apply 'org-icompleting-read args)))
10419 (defun org-completing-read-no-i (&rest args)
10420 (let (org-completion-use-ido org-completion-use-iswitchb)
10421 (apply 'org-completing-read args)))
10423 (defun org-iswitchb-completing-read (prompt choices &rest args)
10424 "Use iswitch as a completing-read replacement to choose from choices.
10425 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10426 from."
10427 (let* ((iswitchb-use-virtual-buffers nil)
10428 (iswitchb-make-buflist-hook
10429 (lambda ()
10430 (setq iswitchb-temp-buflist choices))))
10431 (iswitchb-read-buffer prompt)))
10433 (defun org-icompleting-read (&rest args)
10434 "Completing-read using `ido-mode' or `iswitchb' speedups if available."
10435 (org-without-partial-completion
10436 (if (and org-completion-use-ido
10437 (fboundp 'ido-completing-read)
10438 (boundp 'ido-mode) ido-mode
10439 (listp (second args)))
10440 (let ((ido-enter-matching-directory nil))
10441 (apply 'ido-completing-read (concat (car args))
10442 (if (consp (car (nth 1 args)))
10443 (mapcar 'car (nth 1 args))
10444 (nth 1 args))
10445 (cddr args)))
10446 (if (and org-completion-use-iswitchb
10447 (boundp 'iswitchb-mode) iswitchb-mode
10448 (listp (second args)))
10449 (apply 'org-iswitchb-completing-read (concat (car args))
10450 (if (consp (car (nth 1 args)))
10451 (mapcar 'car (nth 1 args))
10452 (nth 1 args))
10453 (cddr args))
10454 (apply 'completing-read args)))))
10456 (defun org-extract-attributes (s)
10457 "Extract the attributes cookie from a string and set as text property."
10458 (let (a attr (start 0) key value)
10459 (save-match-data
10460 (when (string-match "{{\\([^}]+\\)}}$" s)
10461 (setq a (match-string 1 s) s (substring s 0 (match-beginning 0)))
10462 (while (string-match "\\([a-zA-Z]+\\)=\"\\([^\"]*\\)\"" a start)
10463 (setq key (match-string 1 a) value (match-string 2 a)
10464 start (match-end 0)
10465 attr (plist-put attr (intern key) value))))
10466 (org-add-props s nil 'org-attr attr))
10469 ;;; Opening/following a link
10471 (defvar org-link-search-failed nil)
10473 (defvar org-open-link-functions nil
10474 "Hook for functions finding a plain text link.
10475 These functions must take a single argument, the link content.
10476 They will be called for links that look like [[link text][description]]
10477 when LINK TEXT does not have a protocol like \"http:\" and does not look
10478 like a filename (e.g. \"./blue.png\").
10480 These functions will be called *before* Org attempts to resolve the
10481 link by doing text searches in the current buffer - so if you want a
10482 link \"[[target]]\" to still find \"<<target>>\", your function should
10483 handle this as a special case.
10485 When the function does handle the link, it must return a non-nil value.
10486 If it decides that it is not responsible for this link, it must return
10487 nil to indicate that that Org-mode can continue with other options
10488 like exact and fuzzy text search.")
10490 (defun org-next-link (&optional search-backward)
10491 "Move forward to the next link.
10492 If the link is in hidden text, expose it."
10493 (interactive "P")
10494 (when (and org-link-search-failed (eq this-command last-command))
10495 (goto-char (point-min))
10496 (message "Link search wrapped back to beginning of buffer"))
10497 (setq org-link-search-failed nil)
10498 (let* ((pos (point))
10499 (ct (org-context))
10500 (a (assoc :link ct))
10501 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10502 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10503 ((looking-at org-any-link-re)
10504 ;; Don't stay stuck at link without an org-link face
10505 (forward-char (if search-backward -1 1))))
10506 (if (funcall srch-fun org-any-link-re nil t)
10507 (progn
10508 (goto-char (match-beginning 0))
10509 (if (outline-invisible-p) (org-show-context)))
10510 (goto-char pos)
10511 (setq org-link-search-failed t)
10512 (message "No further link found"))))
10514 (defun org-previous-link ()
10515 "Move backward to the previous link.
10516 If the link is in hidden text, expose it."
10517 (interactive)
10518 (funcall 'org-next-link t))
10520 (defun org-translate-link (s)
10521 "Translate a link string if a translation function has been defined."
10522 (if (and org-link-translation-function
10523 (fboundp org-link-translation-function)
10524 (string-match "\\([a-zA-Z0-9]+\\):\\(.*\\)" s))
10525 (progn
10526 (setq s (funcall org-link-translation-function
10527 (match-string 1 s) (match-string 2 s)))
10528 (concat (car s) ":" (cdr s)))
10531 (defun org-translate-link-from-planner (type path)
10532 "Translate a link from Emacs Planner syntax so that Org can follow it.
10533 This is still an experimental function, your mileage may vary."
10534 (cond
10535 ((member type '("http" "https" "news" "ftp"))
10536 ;; standard Internet links are the same.
10537 nil)
10538 ((and (equal type "irc") (string-match "^//" path))
10539 ;; Planner has two / at the beginning of an irc link, we have 1.
10540 ;; We should have zero, actually....
10541 (setq path (substring path 1)))
10542 ((and (equal type "lisp") (string-match "^/" path))
10543 ;; Planner has a slash, we do not.
10544 (setq type "elisp" path (substring path 1)))
10545 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10546 ;; A typical message link. Planner has the id after the final slash,
10547 ;; we separate it with a hash mark
10548 (setq path (concat (match-string 1 path) "#"
10549 (org-remove-angle-brackets (match-string 2 path))))))
10550 (cons type path))
10552 (defun org-find-file-at-mouse (ev)
10553 "Open file link or URL at mouse."
10554 (interactive "e")
10555 (mouse-set-point ev)
10556 (org-open-at-point 'in-emacs))
10558 (defun org-open-at-mouse (ev)
10559 "Open file link or URL at mouse.
10560 See the docstring of `org-open-file' for details."
10561 (interactive "e")
10562 (mouse-set-point ev)
10563 (if (eq major-mode 'org-agenda-mode)
10564 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10565 (org-open-at-point))
10567 (defvar org-window-config-before-follow-link nil
10568 "The window configuration before following a link.
10569 This is saved in case the need arises to restore it.")
10571 (defvar org-open-link-marker (make-marker)
10572 "Marker pointing to the location where `org-open-at-point' was called.")
10574 ;;;###autoload
10575 (defun org-open-at-point-global ()
10576 "Follow a link like Org-mode does.
10577 This command can be called in any mode to follow a link that has
10578 Org-mode syntax."
10579 (interactive)
10580 (org-run-like-in-org-mode 'org-open-at-point))
10582 ;;;###autoload
10583 (defun org-open-link-from-string (s &optional arg reference-buffer)
10584 "Open a link in the string S, as if it was in Org-mode."
10585 (interactive "sLink: \nP")
10586 (let ((reference-buffer (or reference-buffer (current-buffer))))
10587 (with-temp-buffer
10588 (let ((org-inhibit-startup (not reference-buffer)))
10589 (org-mode)
10590 (insert s)
10591 (goto-char (point-min))
10592 (when reference-buffer
10593 (setq org-link-abbrev-alist-local
10594 (with-current-buffer reference-buffer
10595 org-link-abbrev-alist-local)))
10596 (org-open-at-point arg reference-buffer)))))
10598 (defvar org-open-at-point-functions nil
10599 "Hook that is run when following a link at point.
10601 Functions in this hook must return t if they identify and follow
10602 a link at point. If they don't find anything interesting at point,
10603 they must return nil.")
10605 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10606 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10607 (defun org-open-at-point (&optional arg reference-buffer)
10608 "Open link, timestamp, footnote or tags at point.
10610 When point is on a link, follow it. Normally, files will be
10611 opened by an appropriate application. If the optional prefix
10612 argument ARG is non-nil, Emacs will visit the file. With
10613 a double prefix argument, try to open outside of Emacs, in the
10614 application the system uses for this file type.
10616 When point is on a timestamp, open the agenda at the day
10617 specified.
10619 When point is a footnote definition, move to the first reference
10620 found. If it is on a reference, move to the associated
10621 definition.
10623 When point is on a headline, display a list of every link in the
10624 entry, so it is possible to pick one, or all, of them. If point
10625 is on a tag, call `org-tags-view' instead.
10627 When optional argument REFERENCE-BUFFER is non-nil, it should
10628 specify a buffer from where the link search should happen. This
10629 is used internally by `org-open-link-from-string'.
10631 On top of syntactically correct links, this function will open
10632 the link at point in comments or comment blocks and the first
10633 link in a property drawer line."
10634 (interactive "P")
10635 ;; On a code block, open block's results.
10636 (unless (call-interactively 'org-babel-open-src-block-result)
10637 (org-load-modules-maybe)
10638 (move-marker org-open-link-marker (point))
10639 (setq org-window-config-before-follow-link (current-window-configuration))
10640 (org-remove-occur-highlights nil nil t)
10641 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10642 (let* ((context (org-element-context)) type value)
10643 ;; On an unsupported type, check if point is contained within
10644 ;; a support one.
10645 (while (and (not (memq (setq type (org-element-type context))
10646 '(comment comment-block
10647 headline inlinetask link
10648 footnote-definition footnote-reference
10649 node-property timestamp)))
10650 (setq context (org-element-property :parent context))))
10651 (setq value (org-element-property :value context))
10652 (cond
10653 ;; Blank lines at the beginning of buffer: bail out.
10654 ((not context) (user-error "No link found"))
10655 ;; Exception n°1: links in property drawers
10656 ((eq type 'node-property)
10657 (org-open-link-from-string
10658 (and (string-match org-any-link-re value)
10659 (match-string-no-properties 0 value))))
10660 ;; Exception n°2: links in comments.
10661 ((memq type '(comment comment-block))
10662 (save-excursion
10663 (skip-chars-forward "\\S-" (point-at-eol))
10664 (let ((string-rear (replace-regexp-in-string
10665 "^[ \t]*# [ \t]*" ""
10666 (buffer-substring (point) (line-beginning-position))))
10667 (string-front (buffer-substring (point) (line-end-position))))
10668 (with-temp-buffer
10669 (let ((org-inhibit-startup t)) (org-mode))
10670 (insert value)
10671 (goto-char (point-min))
10672 (when (and (search-forward string-rear nil t)
10673 (search-forward string-front (line-end-position) t))
10674 (goto-char (match-beginning 0))
10675 (org-open-at-point)
10676 (when (string= string-rear "") (forward-char)))))))
10677 ;; On a headline or an inlinetask, but not on a timestamp,
10678 ;; a link, a footnote reference or on tags.
10679 ((and (memq type '(headline inlinetask))
10680 ;; Not on tags.
10681 (progn (save-excursion (beginning-of-line)
10682 (looking-at org-complex-heading-regexp))
10683 (or (not (match-beginning 5))
10684 (< (point) (match-beginning 5)))))
10685 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10686 (links (car data))
10687 (links-end (cdr data)))
10688 (if links
10689 (dolist (link (if (stringp links) (list links) links))
10690 (search-forward link nil links-end)
10691 (goto-char (match-beginning 0))
10692 (org-open-at-point))
10693 (require 'org-attach)
10694 (org-attach-reveal 'if-exists))))
10695 ;; Do nothing on white spaces after an object, unless point
10696 ;; is right after it.
10697 ((> (point)
10698 (save-excursion
10699 (goto-char (org-element-property :end context))
10700 (skip-chars-backward " \t")
10701 (point)))
10702 (user-error "No link found"))
10703 ((eq type 'timestamp) (org-follow-timestamp-link))
10704 ;; On tags within a headline or an inlinetask.
10705 ((and (memq type '(headline inlinetask))
10706 (progn (save-excursion (beginning-of-line)
10707 (looking-at org-complex-heading-regexp))
10708 (and (match-beginning 5)
10709 (>= (point) (match-beginning 5)))))
10710 (org-tags-view arg (substring (match-string 5) 0 -1)))
10711 ((eq type 'link)
10712 (let ((type (org-element-property :type context))
10713 (path (org-link-unescape (org-element-property :path context))))
10714 ;; Switch back to REFERENCE-BUFFER needed when called in
10715 ;; a temporary buffer through `org-open-link-from-string'.
10716 (with-current-buffer (or reference-buffer (current-buffer))
10717 (cond
10718 ((equal type "file")
10719 (if (string-match "[*?{]" (file-name-nondirectory path))
10720 (dired path)
10721 ;; Look into `org-link-protocols' in order to find
10722 ;; a DEDICATED-FUNCTION to open file. The function
10723 ;; will be applied on raw link instead of parsed
10724 ;; link due to the limitation in `org-add-link-type'
10725 ;; ("open" function called with a single argument).
10726 ;; If no such function is found, fallback to
10727 ;; `org-open-file'.
10729 ;; Note : "file+emacs" and "file+sys" types are
10730 ;; hard-coded in order to escape the previous
10731 ;; limitation.
10732 (let* ((option (org-element-property :search-option context))
10733 (app (org-element-property :application context))
10734 (dedicated-function
10735 (nth 1 (assoc app org-link-protocols))))
10736 (if dedicated-function
10737 (funcall dedicated-function
10738 (concat path
10739 (and option (concat "::" option))))
10740 (apply 'org-open-file
10741 path
10742 (cond (arg)
10743 ((equal app "emacs") 'emacs)
10744 ((equal app "sys") 'system))
10745 (cond ((not option) nil)
10746 ((org-string-match-p "\\`[0-9]+\\'" option)
10747 (list (string-to-number option)))
10748 (t (list nil
10749 (org-link-unescape option)))))))))
10750 ((assoc type org-link-protocols)
10751 (funcall (nth 1 (assoc type org-link-protocols)) path))
10752 ((equal type "help")
10753 (let ((f-or-v (intern path)))
10754 (cond ((fboundp f-or-v) (describe-function f-or-v))
10755 ((boundp f-or-v) (describe-variable f-or-v))
10756 (t (error "Not a known function or variable")))))
10757 ((member type '("http" "https" "ftp" "mailto" "news"))
10758 (browse-url (org-link-escape-browser (concat type ":" path))))
10759 ((equal type "doi")
10760 (browse-url
10761 (org-link-escape-browser (concat org-doi-server-url path))))
10762 ((equal type "message") (browse-url (concat type ":" path)))
10763 ((equal type "shell")
10764 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10765 (cmd path))
10766 (if (or (and (org-string-nw-p
10767 org-confirm-shell-link-not-regexp)
10768 (string-match
10769 org-confirm-shell-link-not-regexp cmd))
10770 (not org-confirm-shell-link-function)
10771 (funcall org-confirm-shell-link-function
10772 (format "Execute \"%s\" in shell? "
10773 (org-add-props cmd nil
10774 'face 'org-warning))))
10775 (progn
10776 (message "Executing %s" cmd)
10777 (shell-command cmd buf)
10778 (when (featurep 'midnight)
10779 (setq clean-buffer-list-kill-buffer-names
10780 (cons buf
10781 clean-buffer-list-kill-buffer-names))))
10782 (user-error "Abort"))))
10783 ((equal type "elisp")
10784 (let ((cmd path))
10785 (if (or (and (org-string-nw-p
10786 org-confirm-elisp-link-not-regexp)
10787 (org-string-match-p
10788 org-confirm-elisp-link-not-regexp cmd))
10789 (not org-confirm-elisp-link-function)
10790 (funcall org-confirm-elisp-link-function
10791 (format "Execute \"%s\" as elisp? "
10792 (org-add-props cmd nil
10793 'face 'org-warning))))
10794 (message "%s => %s" cmd
10795 (if (eq (string-to-char cmd) ?\()
10796 (eval (read cmd))
10797 (call-interactively (read cmd))))
10798 (user-error "Abort"))))
10799 ((equal type "id")
10800 (require 'ord-id)
10801 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10802 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10803 (unless (run-hook-with-args-until-success
10804 'org-open-link-functions path)
10805 (if (not arg) (org-mark-ring-push)
10806 (switch-to-buffer-other-window
10807 (org-get-buffer-for-internal-link (current-buffer))))
10808 (let ((cmd `(org-link-search
10809 ,(if (member type '("custom-id" "coderef"))
10810 (org-element-property :raw-link context)
10811 path)
10812 ,(cond ((equal arg '(4)) 'occur)
10813 ((equal arg '(16)) 'org-occur))
10814 ,(org-element-property :begin context))))
10815 (condition-case nil
10816 (let ((org-link-search-inhibit-query t))
10817 (eval cmd))
10818 (error (progn (widen) (eval cmd)))))))
10819 (t (browse-url-at-point))))))
10820 ;; On a footnote reference or at a footnote definition's label.
10821 ((or (eq type 'footnote-reference)
10822 (and (eq type 'footnote-definition)
10823 (save-excursion
10824 ;; Do not validate action when point is on the
10825 ;; spaces right after the footnote label, in
10826 ;; order to be on par with behaviour on links.
10827 (skip-chars-forward " \t")
10828 (let ((begin
10829 (org-element-property :contents-begin context)))
10830 (if begin (< (point) begin)
10831 (= (org-element-property :post-affiliated context)
10832 (line-beginning-position)))))))
10833 (org-footnote-action))
10834 (t (user-error "No link found")))))
10835 (move-marker org-open-link-marker nil)
10836 (run-hook-with-args 'org-follow-link-hook)))
10838 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10839 "Offer links in the current entry and return the selected link.
10840 If there is only one link, return it.
10841 If NTH is an integer, return the NTH link found.
10842 If ZERO is a string, check also this string for a link, and if
10843 there is one, return it."
10844 (with-current-buffer buffer
10845 (save-excursion
10846 (save-restriction
10847 (widen)
10848 (goto-char marker)
10849 (let ((cnt ?0)
10850 (in-emacs (if (integerp nth) nil nth))
10851 have-zero end links link c)
10852 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10853 (push (match-string 0 zero) links)
10854 (setq cnt (1- cnt) have-zero t))
10855 (save-excursion
10856 (org-back-to-heading t)
10857 (setq end (save-excursion (outline-next-heading) (point)))
10858 (while (re-search-forward org-any-link-re end t)
10859 (push (match-string 0) links))
10860 (setq links (org-uniquify (reverse links))))
10861 (cond
10862 ((null links)
10863 (message "No links"))
10864 ((equal (length links) 1)
10865 (setq link (car links)))
10866 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10867 (setq link (nth (if have-zero nth (1- nth)) links)))
10868 (t ; we have to select a link
10869 (save-excursion
10870 (save-window-excursion
10871 (delete-other-windows)
10872 (with-output-to-temp-buffer "*Select Link*"
10873 (mapc (lambda (l)
10874 (if (not (string-match org-bracket-link-regexp l))
10875 (princ (format "[%c] %s\n" (incf cnt)
10876 (org-remove-angle-brackets l)))
10877 (if (match-end 3)
10878 (princ (format "[%c] %s (%s)\n" (incf cnt)
10879 (match-string 3 l) (match-string 1 l)))
10880 (princ (format "[%c] %s\n" (incf cnt)
10881 (match-string 1 l))))))
10882 links))
10883 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10884 (message "Select link to open, RET to open all:")
10885 (setq c (read-char-exclusive))
10886 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10887 (when (equal c ?q) (user-error "Abort"))
10888 (if (equal c ?\C-m)
10889 (setq link links)
10890 (setq nth (- c ?0))
10891 (if have-zero (setq nth (1+ nth)))
10892 (unless (and (integerp nth) (>= (length links) nth))
10893 (user-error "Invalid link selection"))
10894 (setq link (nth (1- nth) links)))))
10895 (cons link end))))))
10897 ;; TODO: These functions are deprecated since `org-open-at-point'
10898 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10899 (defun org-open-file-with-system (path)
10900 "Open file at PATH using the system way of opening it."
10901 (org-open-file path 'system))
10902 (defun org-open-file-with-emacs (path)
10903 "Open file at PATH in Emacs."
10904 (org-open-file path 'emacs))
10907 ;;; File search
10909 (defvar org-create-file-search-functions nil
10910 "List of functions to construct the right search string for a file link.
10911 These functions are called in turn with point at the location to
10912 which the link should point.
10914 A function in the hook should first test if it would like to
10915 handle this file type, for example by checking the `major-mode'
10916 or the file extension. If it decides not to handle this file, it
10917 should just return nil to give other functions a chance. If it
10918 does handle the file, it must return the search string to be used
10919 when following the link. The search string will be part of the
10920 file link, given after a double colon, and `org-open-at-point'
10921 will automatically search for it. If special measures must be
10922 taken to make the search successful, another function should be
10923 added to the companion hook `org-execute-file-search-functions',
10924 which see.
10926 A function in this hook may also use `setq' to set the variable
10927 `description' to provide a suggestion for the descriptive text to
10928 be used for this link when it gets inserted into an Org-mode
10929 buffer with \\[org-insert-link].")
10931 (defvar org-execute-file-search-functions nil
10932 "List of functions to execute a file search triggered by a link.
10934 Functions added to this hook must accept a single argument, the
10935 search string that was part of the file link, the part after the
10936 double colon. The function must first check if it would like to
10937 handle this search, for example by checking the `major-mode' or
10938 the file extension. If it decides not to handle this search, it
10939 should just return nil to give other functions a chance. If it
10940 does handle the search, it must return a non-nil value to keep
10941 other functions from trying.
10943 Each function can access the current prefix argument through the
10944 variable `current-prefix-arg'. Note that a single prefix is used
10945 to force opening a link in Emacs, so it may be good to only use a
10946 numeric or double prefix to guide the search function.
10948 In case this is needed, a function in this hook can also restore
10949 the window configuration before `org-open-at-point' was called using:
10951 (set-window-configuration org-window-config-before-follow-link)")
10953 (defun org-link-search (s &optional type avoid-pos stealth)
10954 "Search for a link search option.
10955 If S is surrounded by forward slashes, it is interpreted as a
10956 regular expression. In org-mode files, this will create an `org-occur'
10957 sparse tree. In ordinary files, `occur' will be used to list matches.
10958 If the current buffer is in `dired-mode', grep will be used to search
10959 in all files. If AVOID-POS is given, ignore matches near that position.
10961 When optional argument STEALTH is non-nil, do not modify
10962 visibility around point, thus ignoring
10963 `org-show-hierarchy-above', `org-show-following-heading' and
10964 `org-show-siblings' variables."
10965 (let ((case-fold-search t)
10966 (s0 (mapconcat 'identity (org-split-string s "[ \t\r\n]+") " "))
10967 (markers (concat "\\(?:" (mapconcat (lambda (x) (regexp-quote (car x)))
10968 (append '(("") (" ") ("\t") ("\n"))
10969 org-emphasis-alist)
10970 "\\|") "\\)"))
10971 (pos (point))
10972 (pre nil) (post nil)
10973 words re0 re1 re2 re3 re4_ re4 re5 re2a re2a_ reall)
10974 (cond
10975 ;; First check if there are any special search functions
10976 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
10977 ;; Now try the builtin stuff
10978 ((and (equal (string-to-char s0) ?#)
10979 (> (length s0) 1)
10980 (save-excursion
10981 (goto-char (point-min))
10982 (and
10983 (re-search-forward
10984 (concat "^[ \t]*:CUSTOM_ID:[ \t]+"
10985 (regexp-quote (substring s0 1)) "[ \t]*$") nil t)
10986 (setq type 'dedicated
10987 pos (match-beginning 0))))
10988 ;; There is an exact target for this
10989 (goto-char pos)
10990 (org-back-to-heading t)))
10991 ((save-excursion
10992 (goto-char (point-min))
10993 (and
10994 (re-search-forward
10995 (concat "<<" (regexp-quote s0) ">>") nil t)
10996 (setq type 'dedicated
10997 pos (match-beginning 0))))
10998 ;; There is an exact target for this
10999 (goto-char pos))
11000 ((save-excursion
11001 (goto-char (point-min))
11002 (and
11003 (re-search-forward
11004 (format "^[ \t]*#\\+NAME: %s" (regexp-quote s0)) nil t)
11005 (setq type 'dedicated pos (match-beginning 0))))
11006 ;; Found an element with a matching #+name affiliated keyword.
11007 (goto-char pos))
11008 ((and (string-match "^(\\(.*\\))$" s0)
11009 (save-excursion
11010 (goto-char (point-min))
11011 (and
11012 (re-search-forward
11013 (concat "[^[]" (regexp-quote
11014 (format org-coderef-label-format
11015 (match-string 1 s0))))
11016 nil t)
11017 (setq type 'dedicated
11018 pos (1+ (match-beginning 0))))))
11019 ;; There is a coderef target for this
11020 (goto-char pos))
11021 ((string-match "^/\\(.*\\)/$" s)
11022 ;; A regular expression
11023 (cond
11024 ((derived-mode-p 'org-mode)
11025 (org-occur (match-string 1 s)))
11026 (t (org-do-occur (match-string 1 s)))))
11027 ((and (derived-mode-p 'org-mode) org-link-search-must-match-exact-headline)
11028 (and (equal (string-to-char s) ?*) (setq s (substring s 1)))
11029 (goto-char (point-min))
11030 (cond
11031 ((let (case-fold-search)
11032 (re-search-forward (format org-complex-heading-regexp-format
11033 (regexp-quote s))
11034 nil t))
11035 ;; OK, found a match
11036 (setq type 'dedicated)
11037 (goto-char (match-beginning 0)))
11038 ((and (not org-link-search-inhibit-query)
11039 (eq org-link-search-must-match-exact-headline 'query-to-create)
11040 (y-or-n-p "No match - create this as a new heading? "))
11041 (goto-char (point-max))
11042 (or (bolp) (newline))
11043 (insert "* " s "\n")
11044 (beginning-of-line 0))
11046 (goto-char pos)
11047 (error "No match"))))
11049 ;; A normal search string
11050 (when (equal (string-to-char s) ?*)
11051 ;; Anchor on headlines, post may include tags.
11052 (setq pre "^\\*+[ \t]+\\(?:\\sw+\\)?[ \t]*"
11053 post (org-re "[ \t]*\\(?:[ \t]+:[[:alnum:]_@#%:+]:[ \t]*\\)?$")
11054 s (substring s 1)))
11055 (remove-text-properties
11056 0 (length s)
11057 '(face nil mouse-face nil keymap nil fontified nil) s)
11058 ;; Make a series of regular expressions to find a match
11059 (setq words (org-split-string s "[ \n\r\t]+")
11061 re0 (concat "\\(<<" (regexp-quote s0) ">>\\)")
11062 re2 (concat markers "\\(" (mapconcat 'downcase words "[ \t]+")
11063 "\\)" markers)
11064 re2a_ (concat "\\(" (mapconcat 'downcase words
11065 "[ \t\r\n]+") "\\)[ \t\r\n]")
11066 re2a (concat "[ \t\r\n]" re2a_)
11067 re4_ (concat "\\(" (mapconcat 'downcase words
11068 "[^a-zA-Z_\r\n]+") "\\)[^a-zA-Z_]")
11069 re4 (concat "[^a-zA-Z_]" re4_)
11071 re1 (concat pre re2 post)
11072 re3 (concat pre (if pre re4_ re4) post)
11073 re5 (concat pre ".*" re4)
11074 re2 (concat pre re2)
11075 re2a (concat pre (if pre re2a_ re2a))
11076 re4 (concat pre (if pre re4_ re4))
11077 reall (concat "\\(" re0 "\\)\\|\\(" re1 "\\)\\|\\(" re2
11078 "\\)\\|\\(" re3 "\\)\\|\\(" re4 "\\)\\|\\("
11079 re5 "\\)"))
11080 (cond
11081 ((eq type 'org-occur) (org-occur reall))
11082 ((eq type 'occur) (org-do-occur (downcase reall) 'cleanup))
11083 (t (goto-char (point-min))
11084 (setq type 'fuzzy)
11085 (if (or (and (org-search-not-self 1 re0 nil t)
11086 (setq type 'dedicated))
11087 (org-search-not-self 1 re1 nil t)
11088 (org-search-not-self 1 re2 nil t)
11089 (org-search-not-self 1 re2a nil t)
11090 (org-search-not-self 1 re3 nil t)
11091 (org-search-not-self 1 re4 nil t)
11092 (org-search-not-self 1 re5 nil t))
11093 (goto-char (match-beginning 1))
11094 (goto-char pos)
11095 (error "No match"))))))
11096 (and (derived-mode-p 'org-mode)
11097 (not stealth)
11098 (org-show-context 'link-search))
11099 type))
11101 (defun org-search-not-self (group &rest args)
11102 "Execute `re-search-forward', but only accept matches that do not
11103 enclose the position of `org-open-link-marker'."
11104 (let ((m org-open-link-marker))
11105 (catch 'exit
11106 (while (apply 're-search-forward args)
11107 (unless (get-text-property (match-end group) 'intangible) ; Emacs 21
11108 (goto-char (match-end group))
11109 (if (and (or (not (eq (marker-buffer m) (current-buffer)))
11110 (> (match-beginning 0) (marker-position m))
11111 (< (match-end 0) (marker-position m)))
11112 (save-match-data
11113 (or (not (org-in-regexp
11114 org-bracket-link-analytic-regexp 1))
11115 (not (match-end 4)) ; no description
11116 (and (<= (match-beginning 4) (point))
11117 (>= (match-end 4) (point))))))
11118 (throw 'exit (point))))))))
11120 (defun org-get-buffer-for-internal-link (buffer)
11121 "Return a buffer to be used for displaying the link target of internal links."
11122 (cond
11123 ((not org-display-internal-link-with-indirect-buffer)
11124 buffer)
11125 ((string-match "(Clone)$" (buffer-name buffer))
11126 (message "Buffer is already a clone, not making another one")
11127 ;; we also do not modify visibility in this case
11128 buffer)
11129 (t ; make a new indirect buffer for displaying the link
11130 (let* ((bn (buffer-name buffer))
11131 (ibn (concat bn "(Clone)"))
11132 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11133 (with-current-buffer ib (org-overview))
11134 ib))))
11136 (defun org-do-occur (regexp &optional cleanup)
11137 "Call the Emacs command `occur'.
11138 If CLEANUP is non-nil, remove the printout of the regular expression
11139 in the *Occur* buffer. This is useful if the regex is long and not useful
11140 to read."
11141 (occur regexp)
11142 (when cleanup
11143 (let ((cwin (selected-window)) win beg end)
11144 (when (setq win (get-buffer-window "*Occur*"))
11145 (select-window win))
11146 (goto-char (point-min))
11147 (when (re-search-forward "match[a-z]+" nil t)
11148 (setq beg (match-end 0))
11149 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11150 (setq end (1- (match-beginning 0)))))
11151 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11152 (goto-char (point-min))
11153 (select-window cwin))))
11155 ;;; The mark ring for links jumps
11157 (defvar org-mark-ring nil
11158 "Mark ring for positions before jumps in Org-mode.")
11159 (defvar org-mark-ring-last-goto nil
11160 "Last position in the mark ring used to go back.")
11161 ;; Fill and close the ring
11162 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11163 (loop for i from 1 to org-mark-ring-length do
11164 (push (make-marker) org-mark-ring))
11165 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11166 org-mark-ring)
11168 (defun org-mark-ring-push (&optional pos buffer)
11169 "Put the current position or POS into the mark ring and rotate it."
11170 (interactive)
11171 (setq pos (or pos (point)))
11172 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11173 (move-marker (car org-mark-ring)
11174 (or pos (point))
11175 (or buffer (current-buffer)))
11176 (message "%s"
11177 (substitute-command-keys
11178 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11180 (defun org-mark-ring-goto (&optional n)
11181 "Jump to the previous position in the mark ring.
11182 With prefix arg N, jump back that many stored positions. When
11183 called several times in succession, walk through the entire ring.
11184 Org-mode commands jumping to a different position in the current file,
11185 or to another Org-mode file, automatically push the old position
11186 onto the ring."
11187 (interactive "p")
11188 (let (p m)
11189 (if (eq last-command this-command)
11190 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11191 (setq p org-mark-ring))
11192 (setq org-mark-ring-last-goto p)
11193 (setq m (car p))
11194 (org-pop-to-buffer-same-window (marker-buffer m))
11195 (goto-char m)
11196 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11198 (defun org-remove-angle-brackets (s)
11199 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11200 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11202 (defun org-add-angle-brackets (s)
11203 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11204 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11206 (defun org-remove-double-quotes (s)
11207 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11208 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11211 ;;; Following specific links
11213 (defun org-follow-timestamp-link ()
11214 "Open an agenda view for the time-stamp date/range at point."
11215 (cond
11216 ((org-at-date-range-p t)
11217 (let ((org-agenda-start-on-weekday)
11218 (t1 (match-string 1))
11219 (t2 (match-string 2)) tt1 tt2)
11220 (setq tt1 (time-to-days (org-time-string-to-time t1))
11221 tt2 (time-to-days (org-time-string-to-time t2)))
11222 (let ((org-agenda-buffer-tmp-name
11223 (format "*Org Agenda(a:%s)"
11224 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11225 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11226 ((org-at-timestamp-p t)
11227 (let ((org-agenda-buffer-tmp-name
11228 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11229 (org-agenda-list nil (time-to-days (org-time-string-to-time
11230 (substring (match-string 1) 0 10)))
11231 1)))
11232 (t (error "This should not happen"))))
11235 ;;; Following file links
11236 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11237 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11238 (declare-function mailcap-mime-info
11239 "mailcap" (string &optional request no-decode))
11240 (defvar org-wait nil)
11241 (defun org-open-file (path &optional in-emacs line search)
11242 "Open the file at PATH.
11243 First, this expands any special file name abbreviations. Then the
11244 configuration variable `org-file-apps' is checked if it contains an
11245 entry for this file type, and if yes, the corresponding command is launched.
11247 If no application is found, Emacs simply visits the file.
11249 With optional prefix argument IN-EMACS, Emacs will visit the file.
11250 With a double \\[universal-argument] \\[universal-argument] \
11251 prefix arg, Org tries to avoid opening in Emacs
11252 and to use an external application to visit the file.
11254 Optional LINE specifies a line to go to, optional SEARCH a string
11255 to search for. If LINE or SEARCH is given, the file will be
11256 opened in Emacs, unless an entry from org-file-apps that makes
11257 use of groups in a regexp matches.
11259 If you want to change the way frames are used when following a
11260 link, please customize `org-link-frame-setup'.
11262 If the file does not exist, an error is thrown."
11263 (let* ((file (if (equal path "")
11264 buffer-file-name
11265 (substitute-in-file-name (expand-file-name path))))
11266 (file-apps (append org-file-apps (org-default-apps)))
11267 (apps (org-remove-if
11268 'org-file-apps-entry-match-against-dlink-p file-apps))
11269 (apps-dlink (org-remove-if-not
11270 'org-file-apps-entry-match-against-dlink-p file-apps))
11271 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11272 (dirp (if remp nil (file-directory-p file)))
11273 (file (if (and dirp org-open-directory-means-index-dot-org)
11274 (concat (file-name-as-directory file) "index.org")
11275 file))
11276 (a-m-a-p (assq 'auto-mode apps))
11277 (dfile (downcase file))
11278 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11279 (link (cond ((and (eq line nil)
11280 (eq search nil))
11281 file)
11282 (line
11283 (concat file "::" (number-to-string line)))
11284 (search
11285 (concat file "::" search))))
11286 (dlink (downcase link))
11287 (old-buffer (current-buffer))
11288 (old-pos (point))
11289 (old-mode major-mode)
11290 ext cmd link-match-data)
11291 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11292 (setq ext (match-string 1 dfile))
11293 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11294 (setq ext (match-string 1 dfile))))
11295 (cond
11296 ((member in-emacs '((16) system))
11297 (setq cmd (cdr (assoc 'system apps))))
11298 (in-emacs (setq cmd 'emacs))
11300 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11301 (and dirp (cdr (assoc 'directory apps)))
11302 ; first, try matching against apps-dlink
11303 ; if we get a match here, store the match data for later
11304 (let ((match (assoc-default dlink apps-dlink
11305 'string-match)))
11306 (if match
11307 (progn (setq link-match-data (match-data))
11308 match)
11309 (progn (setq in-emacs (or in-emacs line search))
11310 nil))) ; if we have no match in apps-dlink,
11311 ; always open the file in emacs if line or search
11312 ; is given (for backwards compatibility)
11313 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11314 'string-match)
11315 (cdr (assoc ext apps))
11316 (cdr (assoc t apps))))))
11317 (when (eq cmd 'system)
11318 (setq cmd (cdr (assoc 'system apps))))
11319 (when (eq cmd 'default)
11320 (setq cmd (cdr (assoc t apps))))
11321 (when (eq cmd 'mailcap)
11322 (require 'mailcap)
11323 (mailcap-parse-mailcaps)
11324 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11325 (command (mailcap-mime-info mime-type)))
11326 (if (stringp command)
11327 (setq cmd command)
11328 (setq cmd 'emacs))))
11329 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11330 (not (file-exists-p file))
11331 (not org-open-non-existing-files))
11332 (user-error "No such file: %s" file))
11333 (cond
11334 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11335 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11336 (while (string-match "['\"]%s['\"]" cmd)
11337 (setq cmd (replace-match "%s" t t cmd)))
11338 (while (string-match "%s" cmd)
11339 (setq cmd (replace-match
11340 (save-match-data
11341 (shell-quote-argument
11342 (convert-standard-filename file)))
11343 t t cmd)))
11345 ;; Replace "%1", "%2" etc. in command with group matches from regex
11346 (save-match-data
11347 (let ((match-index 1)
11348 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11349 (set-match-data link-match-data)
11350 (while (<= match-index number-of-groups)
11351 (let ((regex (concat "%" (number-to-string match-index)))
11352 (replace-with (match-string match-index dlink)))
11353 (while (string-match regex cmd)
11354 (setq cmd (replace-match replace-with t t cmd))))
11355 (setq match-index (+ match-index 1)))))
11357 (save-window-excursion
11358 (message "Running %s...done" cmd)
11359 (start-process-shell-command cmd nil cmd)
11360 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11361 ((or (stringp cmd)
11362 (eq cmd 'emacs))
11363 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11364 (widen)
11365 (if line (progn (org-goto-line line)
11366 (if (derived-mode-p 'org-mode)
11367 (org-reveal)))
11368 (if search (org-link-search search))))
11369 ((consp cmd)
11370 (let ((file (convert-standard-filename file)))
11371 (save-match-data
11372 (set-match-data link-match-data)
11373 (eval cmd))))
11374 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11375 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11376 (or (not (equal old-buffer (current-buffer)))
11377 (not (equal old-pos (point))))
11378 (org-mark-ring-push old-pos old-buffer))))
11380 (defun org-file-apps-entry-match-against-dlink-p (entry)
11381 "This function returns non-nil if `entry' uses a regular
11382 expression which should be matched against the whole link by
11383 org-open-file.
11385 It assumes that is the case when the entry uses a regular
11386 expression which has at least one grouping construct and the
11387 action is either a lisp form or a command string containing
11388 '%1', i.e. using at least one subexpression match as a
11389 parameter."
11390 (let ((selector (car entry))
11391 (action (cdr entry)))
11392 (if (stringp selector)
11393 (and (> (regexp-opt-depth selector) 0)
11394 (or (and (stringp action)
11395 (string-match "%[0-9]" action))
11396 (consp action)))
11397 nil)))
11399 (defun org-default-apps ()
11400 "Return the default applications for this operating system."
11401 (cond
11402 ((eq system-type 'darwin)
11403 org-file-apps-defaults-macosx)
11404 ((eq system-type 'windows-nt)
11405 org-file-apps-defaults-windowsnt)
11406 (t org-file-apps-defaults-gnu)))
11408 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11409 "Convert extensions to regular expressions in the cars of LIST.
11410 Also, weed out any non-string entries, because the return value is used
11411 only for regexp matching.
11412 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11413 point to the symbol `emacs', indicating that the file should
11414 be opened in Emacs."
11415 (append
11416 (delq nil
11417 (mapcar (lambda (x)
11418 (if (not (stringp (car x)))
11420 (if (string-match "\\W" (car x))
11422 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11423 list))
11424 (if add-auto-mode
11425 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11427 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11428 (defun org-file-remote-p (file)
11429 "Test whether FILE specifies a location on a remote system.
11430 Return non-nil if the location is indeed remote.
11432 For example, the filename \"/user@host:/foo\" specifies a location
11433 on the system \"/user@host:\"."
11434 (cond ((fboundp 'file-remote-p)
11435 (file-remote-p file))
11436 ((fboundp 'tramp-handle-file-remote-p)
11437 (tramp-handle-file-remote-p file))
11438 ((and (boundp 'ange-ftp-name-format)
11439 (string-match (car ange-ftp-name-format) file))
11440 t)))
11443 ;;;; Refiling
11445 (defun org-get-org-file ()
11446 "Read a filename, with default directory `org-directory'."
11447 (let ((default (or org-default-notes-file remember-data-file)))
11448 (read-file-name (format "File name [%s]: " default)
11449 (file-name-as-directory org-directory)
11450 default)))
11452 (defun org-notes-order-reversed-p ()
11453 "Check if the current file should receive notes in reversed order."
11454 (cond
11455 ((not org-reverse-note-order) nil)
11456 ((eq t org-reverse-note-order) t)
11457 ((not (listp org-reverse-note-order)) nil)
11458 (t (catch 'exit
11459 (let ((all org-reverse-note-order)
11460 entry)
11461 (while (setq entry (pop all))
11462 (if (string-match (car entry) buffer-file-name)
11463 (throw 'exit (cdr entry))))
11464 nil)))))
11466 (defvar org-refile-target-table nil
11467 "The list of refile targets, created by `org-refile'.")
11469 (defvar org-agenda-new-buffers nil
11470 "Buffers created to visit agenda files.")
11472 (defvar org-refile-cache nil
11473 "Cache for refile targets.")
11475 (defvar org-refile-markers nil
11476 "All the markers used for caching refile locations.")
11478 (defun org-refile-marker (pos)
11479 "Get a new refile marker, but only if caching is in use."
11480 (if (not org-refile-use-cache)
11482 (let ((m (make-marker)))
11483 (move-marker m pos)
11484 (push m org-refile-markers)
11485 m)))
11487 (defun org-refile-cache-clear ()
11488 "Clear the refile cache and disable all the markers."
11489 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11490 (setq org-refile-markers nil)
11491 (setq org-refile-cache nil)
11492 (message "Refile cache has been cleared"))
11494 (defun org-refile-cache-check-set (set)
11495 "Check if all the markers in the cache still have live buffers."
11496 (let (marker)
11497 (catch 'exit
11498 (while (and set (setq marker (nth 3 (pop set))))
11499 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11500 (when (and marker (null (marker-buffer marker)))
11501 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11502 (sit-for 3)
11503 (throw 'exit nil)))
11504 t)))
11506 (defun org-refile-cache-put (set &rest identifiers)
11507 "Push the refile targets SET into the cache, under IDENTIFIERS."
11508 (let* ((key (sha1 (prin1-to-string identifiers)))
11509 (entry (assoc key org-refile-cache)))
11510 (if entry
11511 (setcdr entry set)
11512 (push (cons key set) org-refile-cache))))
11514 (defun org-refile-cache-get (&rest identifiers)
11515 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11516 (cond
11517 ((not org-refile-cache) nil)
11518 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11520 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11521 org-refile-cache))))
11522 (and set (org-refile-cache-check-set set) set)))))
11524 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11525 "Produce a table with refile targets."
11526 (let ((case-fold-search nil)
11527 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11528 (entries (or org-refile-targets '((nil . (:level . 1)))))
11529 targets tgs txt re files f desc descre fast-path-p level pos0)
11530 (message "Getting targets...")
11531 (with-current-buffer (or default-buffer (current-buffer))
11532 (while (setq entry (pop entries))
11533 (setq files (car entry) desc (cdr entry))
11534 (setq fast-path-p nil)
11535 (cond
11536 ((null files) (setq files (list (current-buffer))))
11537 ((eq files 'org-agenda-files)
11538 (setq files (org-agenda-files 'unrestricted)))
11539 ((and (symbolp files) (fboundp files))
11540 (setq files (funcall files)))
11541 ((and (symbolp files) (boundp files))
11542 (setq files (symbol-value files))))
11543 (if (stringp files) (setq files (list files)))
11544 (cond
11545 ((eq (car desc) :tag)
11546 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11547 ((eq (car desc) :todo)
11548 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11549 ((eq (car desc) :regexp)
11550 (setq descre (cdr desc)))
11551 ((eq (car desc) :level)
11552 (setq descre (concat "^\\*\\{" (number-to-string
11553 (if org-odd-levels-only
11554 (1- (* 2 (cdr desc)))
11555 (cdr desc)))
11556 "\\}[ \t]")))
11557 ((eq (car desc) :maxlevel)
11558 (setq fast-path-p t)
11559 (setq descre (concat "^\\*\\{1," (number-to-string
11560 (if org-odd-levels-only
11561 (1- (* 2 (cdr desc)))
11562 (cdr desc)))
11563 "\\}[ \t]")))
11564 (t (error "Bad refiling target description %s" desc)))
11565 (while (setq f (pop files))
11566 (with-current-buffer
11567 (if (bufferp f) f (org-get-agenda-file-buffer f))
11569 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11570 (progn
11571 (if (bufferp f) (setq f (buffer-file-name
11572 (buffer-base-buffer f))))
11573 (setq f (and f (expand-file-name f)))
11574 (if (eq org-refile-use-outline-path 'file)
11575 (push (list (file-name-nondirectory f) f nil nil) tgs))
11576 (save-excursion
11577 (save-restriction
11578 (widen)
11579 (goto-char (point-min))
11580 (while (re-search-forward descre nil t)
11581 (goto-char (setq pos0 (point-at-bol)))
11582 (catch 'next
11583 (when org-refile-target-verify-function
11584 (save-match-data
11585 (or (funcall org-refile-target-verify-function)
11586 (throw 'next t))))
11587 (when (and (looking-at org-complex-heading-regexp)
11588 (not (member (match-string 4) excluded-entries))
11589 (match-string 4))
11590 (setq level (org-reduced-level
11591 (- (match-end 1) (match-beginning 1)))
11592 txt (org-link-display-format (match-string 4))
11593 txt (replace-regexp-in-string "\\( *\[[0-9]+/?[0-9]*%?\]\\)+$" "" txt)
11594 re (format org-complex-heading-regexp-format
11595 (regexp-quote (match-string 4))))
11596 (when org-refile-use-outline-path
11597 (setq txt (mapconcat
11598 'org-protect-slash
11599 (append
11600 (if (eq org-refile-use-outline-path
11601 'file)
11602 (list (file-name-nondirectory
11603 (buffer-file-name
11604 (buffer-base-buffer))))
11605 (if (eq org-refile-use-outline-path
11606 'full-file-path)
11607 (list (buffer-file-name
11608 (buffer-base-buffer)))))
11609 (org-get-outline-path fast-path-p
11610 level txt)
11611 (list txt))
11612 "/")))
11613 (push (list txt f re (org-refile-marker (point)))
11614 tgs)))
11615 (when (= (point) pos0)
11616 ;; verification function has not moved point
11617 (goto-char (point-at-eol))))))))
11618 (when org-refile-use-cache
11619 (org-refile-cache-put tgs (buffer-file-name) descre))
11620 (setq targets (append tgs targets))))))
11621 (message "Getting targets...done")
11622 (nreverse targets)))
11624 (defun org-protect-slash (s)
11625 (while (string-match "/" s)
11626 (setq s (replace-match "\\" t t s)))
11629 (defvar org-olpa (make-vector 20 nil))
11631 (defun org-get-outline-path (&optional fastp level heading)
11632 "Return the outline path to the current entry, as a list.
11634 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11635 routine which makes outline path derivations for an entire file,
11636 avoiding backtracing. Refile target collection makes use of that."
11637 (if fastp
11638 (progn
11639 (if (> level 19)
11640 (error "Outline path failure, more than 19 levels"))
11641 (loop for i from level upto 19 do
11642 (aset org-olpa i nil))
11643 (prog1
11644 (delq nil (append org-olpa nil))
11645 (aset org-olpa level heading)))
11646 (let (rtn case-fold-search)
11647 (save-excursion
11648 (save-restriction
11649 (widen)
11650 (while (org-up-heading-safe)
11651 (when (looking-at org-complex-heading-regexp)
11652 (push (org-trim
11653 (replace-regexp-in-string
11654 ;; Remove statistical/checkboxes cookies
11655 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11656 (org-match-string-no-properties 4)))
11657 rtn)))
11658 rtn)))))
11660 (defun org-format-outline-path (path &optional width prefix separator)
11661 "Format the outline path PATH for display.
11662 WIDTH is the maximum number of characters that is available.
11663 PREFIX is a prefix to be included in the returned string,
11664 such as the file name.
11665 SEPARATOR is inserted between the different parts of the path,
11666 the default is \"/\"."
11667 (setq width (or width 79))
11668 (if prefix (setq width (- width (length prefix))))
11669 (if (not path)
11670 (or prefix "")
11671 (let* ((nsteps (length path))
11672 (total-width (+ nsteps (apply '+ (mapcar 'length path))))
11673 (maxwidth (if (<= total-width width)
11674 10000 ;; everything fits
11675 ;; we need to shorten the level headings
11676 (/ (- width nsteps) nsteps)))
11677 (org-odd-levels-only nil)
11678 (n 0)
11679 (total (1+ (length prefix))))
11680 (setq maxwidth (max maxwidth 10))
11681 (concat prefix
11682 (if prefix (or separator "/"))
11683 (mapconcat
11684 (lambda (h)
11685 (setq n (1+ n))
11686 (if (and (= n nsteps) (< maxwidth 10000))
11687 (setq maxwidth (- total-width total)))
11688 (if (< (length h) maxwidth)
11689 (progn (setq total (+ total (length h) 1)) h)
11690 (setq h (substring h 0 (- maxwidth 2))
11691 total (+ total maxwidth 1))
11692 (if (string-match "[ \t]+\\'" h)
11693 (setq h (substring h 0 (match-beginning 0))))
11694 (setq h (concat h "..")))
11695 (org-add-props h nil 'face
11696 (nth (% (1- n) org-n-level-faces)
11697 org-level-faces))
11699 path (or separator "/"))))))
11701 (defun org-display-outline-path (&optional file current separator just-return-string)
11702 "Display the current outline path in the echo area.
11704 If FILE is non-nil, prepend the output with the file name.
11705 If CURRENT is non-nil, append the current heading to the output.
11706 SEPARATOR is passed through to `org-format-outline-path'. It separates
11707 the different parts of the path and defaults to \"/\".
11708 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11709 (interactive "P")
11710 (let* (case-fold-search
11711 (bfn (buffer-file-name (buffer-base-buffer)))
11712 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11713 res)
11714 (if current (setq path (append path
11715 (save-excursion
11716 (org-back-to-heading t)
11717 (if (looking-at org-complex-heading-regexp)
11718 (list (match-string 4)))))))
11719 (setq res
11720 (org-format-outline-path
11721 path
11722 (1- (frame-width))
11723 (and file bfn (concat (file-name-nondirectory bfn) separator))
11724 separator))
11725 (if just-return-string
11726 (org-no-properties res)
11727 (org-unlogged-message "%s" res))))
11729 (defvar org-refile-history nil
11730 "History for refiling operations.")
11732 (defvar org-after-refile-insert-hook nil
11733 "Hook run after `org-refile' has inserted its stuff at the new location.
11734 Note that this is still *before* the stuff will be removed from
11735 the *old* location.")
11737 (defvar org-capture-last-stored-marker)
11738 (defvar org-refile-keep nil
11739 "Non-nil means `org-refile' will copy instead of refile.")
11741 (defun org-copy ()
11742 "Like `org-refile', but copy."
11743 (interactive)
11744 (let ((org-refile-keep t))
11745 (funcall 'org-refile nil nil nil "Copy")))
11747 (defun org-refile (&optional arg default-buffer rfloc msg)
11748 "Move the entry or entries at point to another heading.
11749 The list of target headings is compiled using the information in
11750 `org-refile-targets', which see.
11752 At the target location, the entry is filed as a subitem of the
11753 target heading. Depending on `org-reverse-note-order', the new
11754 subitem will either be the first or the last subitem.
11756 If there is an active region, all entries in that region will be
11757 refiled. However, the region must fulfill the requirement that
11758 the first heading sets the top-level of the moved text.
11760 With prefix arg ARG, the command will only visit the target
11761 location and not actually move anything.
11763 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11764 refiling operation has put the subtree.
11766 With a numeric prefix argument of `2', refile to the running clock.
11768 With a numeric prefix argument of `3', emulate `org-refile-keep'
11769 being set to `t' and copy to the target location, don't move it.
11770 Beware that keeping refiled entries may result in duplicated ID
11771 properties.
11773 RFLOC can be a refile location obtained in a different way.
11775 MSG is a string to replace \"Refile\" in the default prompt with
11776 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11778 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11780 If you are using target caching (see `org-refile-use-cache'), you
11781 have to clear the target cache in order to find new targets.
11782 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11783 prefix argument (`C-u C-u C-u C-c C-w')."
11784 (interactive "P")
11785 (if (member arg '(0 (64)))
11786 (org-refile-cache-clear)
11787 (let* ((actionmsg (cond (msg msg)
11788 ((equal arg 3) "Refile (and keep)")
11789 (t "Refile")))
11790 (cbuf (current-buffer))
11791 (regionp (org-region-active-p))
11792 (region-start (and regionp (region-beginning)))
11793 (region-end (and regionp (region-end)))
11794 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11795 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11796 pos it nbuf file re level reversed)
11797 (setq last-command nil)
11798 (when regionp
11799 (goto-char region-start)
11800 (or (bolp) (goto-char (point-at-bol)))
11801 (setq region-start (point))
11802 (unless (or (org-kill-is-subtree-p
11803 (buffer-substring region-start region-end))
11804 (prog1 org-refile-active-region-within-subtree
11805 (let ((s (point-at-eol)))
11806 (org-toggle-heading)
11807 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11808 (user-error "The region is not a (sequence of) subtree(s)")))
11809 (if (equal arg '(16))
11810 (org-refile-goto-last-stored)
11811 (when (or
11812 (and (equal arg 2)
11813 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11814 (prog1
11815 (setq it (list (or org-clock-heading "running clock")
11816 (buffer-file-name
11817 (marker-buffer org-clock-hd-marker))
11819 (marker-position org-clock-hd-marker)))
11820 (setq arg nil)))
11821 (setq it (or rfloc
11822 (let (heading-text)
11823 (save-excursion
11824 (unless (and arg (listp arg))
11825 (org-back-to-heading t)
11826 (setq heading-text
11827 (replace-regexp-in-string
11828 org-bracket-link-regexp
11829 "\\3"
11830 (nth 4 (org-heading-components)))))
11831 (org-refile-get-location
11832 (cond ((and arg (listp arg)) "Goto")
11833 (regionp (concat actionmsg " region to"))
11834 (t (concat actionmsg " subtree \""
11835 heading-text "\" to")))
11836 default-buffer
11837 (and (not (equal '(4) arg))
11838 org-refile-allow-creating-parent-nodes)
11839 arg))))))
11840 (setq file (nth 1 it)
11841 re (nth 2 it)
11842 pos (nth 3 it))
11843 (if (and (not arg)
11845 (equal (buffer-file-name) file)
11846 (if regionp
11847 (and (>= pos region-start)
11848 (<= pos region-end))
11849 (and (>= pos (point))
11850 (< pos (save-excursion
11851 (org-end-of-subtree t t))))))
11852 (error "Cannot refile to position inside the tree or region"))
11853 (setq nbuf (or (find-buffer-visiting file)
11854 (find-file-noselect file)))
11855 (if (and arg (not (equal arg 3)))
11856 (progn
11857 (org-pop-to-buffer-same-window nbuf)
11858 (goto-char pos)
11859 (org-show-context 'org-goto))
11860 (if regionp
11861 (progn
11862 (org-kill-new (buffer-substring region-start region-end))
11863 (org-save-markers-in-region region-start region-end))
11864 (org-copy-subtree 1 nil t))
11865 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11866 (find-file-noselect file)))
11867 (setq reversed (org-notes-order-reversed-p))
11868 (save-excursion
11869 (save-restriction
11870 (widen)
11871 (if pos
11872 (progn
11873 (goto-char pos)
11874 (looking-at org-outline-regexp)
11875 (setq level (org-get-valid-level (funcall outline-level) 1))
11876 (goto-char
11877 (if reversed
11878 (or (outline-next-heading) (point-max))
11879 (or (save-excursion (org-get-next-sibling))
11880 (org-end-of-subtree t t)
11881 (point-max)))))
11882 (setq level 1)
11883 (if (not reversed)
11884 (goto-char (point-max))
11885 (goto-char (point-min))
11886 (or (outline-next-heading) (goto-char (point-max)))))
11887 (if (not (bolp)) (newline))
11888 (org-paste-subtree level nil nil t)
11889 (when org-log-refile
11890 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11891 (unless (eq org-log-refile 'note)
11892 (save-excursion (org-add-log-note))))
11893 (and org-auto-align-tags
11894 (let ((org-loop-over-headlines-in-active-region nil))
11895 (org-set-tags nil t)))
11896 (let ((bookmark-name (plist-get org-bookmark-names-plist
11897 :last-refile)))
11898 (when bookmark-name
11899 (with-demoted-errors
11900 (bookmark-set bookmark-name))))
11901 ;; If we are refiling for capture, make sure that the
11902 ;; last-capture pointers point here
11903 (when (org-bound-and-true-p org-refile-for-capture)
11904 (let ((bookmark-name (plist-get org-bookmark-names-plist
11905 :last-capture-marker)))
11906 (when bookmark-name
11907 (with-demoted-errors
11908 (bookmark-set bookmark-name))))
11909 (move-marker org-capture-last-stored-marker (point)))
11910 (if (fboundp 'deactivate-mark) (deactivate-mark))
11911 (run-hooks 'org-after-refile-insert-hook))))
11912 (unless org-refile-keep
11913 (if regionp
11914 (delete-region (point) (+ (point) (- region-end region-start)))
11915 (delete-region
11916 (and (org-back-to-heading t) (point))
11917 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11918 (when (featurep 'org-inlinetask)
11919 (org-inlinetask-remove-END-maybe))
11920 (setq org-markers-to-move nil)
11921 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
11923 (defun org-refile-goto-last-stored ()
11924 "Go to the location where the last refile was stored."
11925 (interactive)
11926 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
11927 (message "This is the location of the last refile"))
11929 (defun org-refile--get-location (refloc tbl)
11930 "When user refile to REFLOC, find the associated target in TBL.
11931 Also check `org-refile-target-table'."
11932 (car (delq
11934 (mapcar
11935 (lambda (r) (or (assoc r tbl)
11936 (assoc r org-refile-target-table)))
11937 (list (replace-regexp-in-string "/$" "" refloc)
11938 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
11940 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
11941 no-exclude)
11942 "Prompt the user for a refile location, using PROMPT.
11943 PROMPT should not be suffixed with a colon and a space, because
11944 this function appends the default value from
11945 `org-refile-history' automatically, if that is not empty.
11946 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
11947 this is used for the GOTO interface."
11948 (let ((org-refile-targets org-refile-targets)
11949 (org-refile-use-outline-path org-refile-use-outline-path)
11950 excluded-entries)
11951 (when (and (derived-mode-p 'org-mode)
11952 (not org-refile-use-cache)
11953 (not no-exclude))
11954 (org-map-tree
11955 (lambda()
11956 (setq excluded-entries
11957 (append excluded-entries (list (org-get-heading t t)))))))
11958 (setq org-refile-target-table
11959 (org-refile-get-targets default-buffer excluded-entries)))
11960 (unless org-refile-target-table
11961 (user-error "No refile targets"))
11962 (let* ((cbuf (current-buffer))
11963 (partial-completion-mode nil)
11964 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
11965 (cfunc (if (and org-refile-use-outline-path
11966 org-outline-path-complete-in-steps)
11967 'org-olpath-completing-read
11968 'org-icompleting-read))
11969 (extra (if org-refile-use-outline-path "/" ""))
11970 (cbnex (concat (buffer-name) extra))
11971 (filename (and cfn (expand-file-name cfn)))
11972 (tbl (mapcar
11973 (lambda (x)
11974 (if (and (not (member org-refile-use-outline-path
11975 '(file full-file-path)))
11976 (not (equal filename (nth 1 x))))
11977 (cons (concat (car x) extra " ("
11978 (file-name-nondirectory (nth 1 x)) ")")
11979 (cdr x))
11980 (cons (concat (car x) extra) (cdr x))))
11981 org-refile-target-table))
11982 (completion-ignore-case t)
11983 cdef
11984 (prompt (concat prompt
11985 (or (and (car org-refile-history)
11986 (concat " (default " (car org-refile-history) ")"))
11987 (and (assoc cbnex tbl) (setq cdef cbnex)
11988 (concat " (default " cbnex ")"))) ": "))
11989 pa answ parent-target child parent old-hist)
11990 (setq old-hist org-refile-history)
11991 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
11992 nil 'org-refile-history (or cdef (car org-refile-history))))
11993 (if (setq pa (org-refile--get-location answ tbl))
11994 (progn
11995 (org-refile-check-position pa)
11996 (when (or (not org-refile-history)
11997 (not (eq old-hist org-refile-history))
11998 (not (equal (car pa) (car org-refile-history))))
11999 (setq org-refile-history
12000 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12001 org-refile-history
12002 (cdr org-refile-history))))
12003 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12004 (pop org-refile-history)))
12006 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12007 (progn
12008 (setq parent (match-string 1 answ)
12009 child (match-string 2 answ))
12010 (setq parent-target (org-refile--get-location parent tbl))
12011 (when (and parent-target
12012 (or (eq new-nodes t)
12013 (and (eq new-nodes 'confirm)
12014 (y-or-n-p (format "Create new node \"%s\"? "
12015 child)))))
12016 (org-refile-new-child parent-target child)))
12017 (user-error "Invalid target location")))))
12019 (declare-function org-string-nw-p "org-macs" (s))
12020 (defun org-refile-check-position (refile-pointer)
12021 "Check if the refile pointer matches the headline to which it points."
12022 (let* ((file (nth 1 refile-pointer))
12023 (re (nth 2 refile-pointer))
12024 (pos (nth 3 refile-pointer))
12025 buffer)
12026 (if (and (not (markerp pos)) (not file))
12027 (user-error "Please indicate a target file in the refile path")
12028 (when (org-string-nw-p re)
12029 (setq buffer (if (markerp pos)
12030 (marker-buffer pos)
12031 (or (find-buffer-visiting file)
12032 (find-file-noselect file))))
12033 (with-current-buffer buffer
12034 (save-excursion
12035 (save-restriction
12036 (widen)
12037 (goto-char pos)
12038 (beginning-of-line 1)
12039 (unless (org-looking-at-p re)
12040 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12042 (defun org-refile-new-child (parent-target child)
12043 "Use refile target PARENT-TARGET to add new CHILD below it."
12044 (unless parent-target
12045 (error "Cannot find parent for new node"))
12046 (let ((file (nth 1 parent-target))
12047 (pos (nth 3 parent-target))
12048 level)
12049 (with-current-buffer (or (find-buffer-visiting file)
12050 (find-file-noselect file))
12051 (save-excursion
12052 (save-restriction
12053 (widen)
12054 (if pos
12055 (goto-char pos)
12056 (goto-char (point-max))
12057 (if (not (bolp)) (newline)))
12058 (when (looking-at org-outline-regexp)
12059 (setq level (funcall outline-level))
12060 (org-end-of-subtree t t))
12061 (org-back-over-empty-lines)
12062 (insert "\n" (make-string
12063 (if pos (org-get-valid-level level 1) 1) ?*)
12064 " " child "\n")
12065 (beginning-of-line 0)
12066 (list (concat (car parent-target) "/" child) file "" (point)))))))
12068 (defun org-olpath-completing-read (prompt collection &rest args)
12069 "Read an outline path like a file name."
12070 (let ((thetable collection)
12071 (org-completion-use-ido nil) ; does not work with ido.
12072 (org-completion-use-iswitchb nil)) ; or iswitchb
12073 (apply
12074 'org-icompleting-read prompt
12075 (lambda (string predicate &optional flag)
12076 (let (rtn r f (l (length string)))
12077 (cond
12078 ((eq flag nil)
12079 ;; try completion
12080 (try-completion string thetable))
12081 ((eq flag t)
12082 ;; all-completions
12083 (setq rtn (all-completions string thetable predicate))
12084 (mapcar
12085 (lambda (x)
12086 (setq r (substring x l))
12087 (if (string-match " ([^)]*)$" x)
12088 (setq f (match-string 0 x))
12089 (setq f ""))
12090 (if (string-match "/" r)
12091 (concat string (substring r 0 (match-end 0)) f)
12093 rtn))
12094 ((eq flag 'lambda)
12095 ;; exact match?
12096 (assoc string thetable)))))
12097 args)))
12099 ;;;; Dynamic blocks
12101 (defun org-find-dblock (name)
12102 "Find the first dynamic block with name NAME in the buffer.
12103 If not found, stay at current position and return nil."
12104 (let ((case-fold-search t) pos)
12105 (save-excursion
12106 (goto-char (point-min))
12107 (setq pos (and (re-search-forward
12108 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12109 (match-beginning 0))))
12110 (if pos (goto-char pos))
12111 pos))
12113 (defun org-create-dblock (plist)
12114 "Create a dynamic block section, with parameters taken from PLIST.
12115 PLIST must contain a :name entry which is used as the name of the block."
12116 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12117 (end-of-line 1)
12118 (newline))
12119 (let ((col (current-column))
12120 (name (plist-get plist :name)))
12121 (insert "#+BEGIN: " name)
12122 (while plist
12123 (if (eq (car plist) :name)
12124 (setq plist (cddr plist))
12125 (insert " " (prin1-to-string (pop plist)))))
12126 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12127 (beginning-of-line -2)))
12129 (defun org-prepare-dblock ()
12130 "Prepare dynamic block for refresh.
12131 This empties the block, puts the cursor at the insert position and returns
12132 the property list including an extra property :name with the block name."
12133 (unless (looking-at org-dblock-start-re)
12134 (user-error "Not at a dynamic block"))
12135 (let* ((begdel (1+ (match-end 0)))
12136 (name (org-no-properties (match-string 1)))
12137 (params (append (list :name name)
12138 (read (concat "(" (match-string 3) ")")))))
12139 (save-excursion
12140 (beginning-of-line 1)
12141 (skip-chars-forward " \t")
12142 (setq params (plist-put params :indentation-column (current-column))))
12143 (unless (re-search-forward org-dblock-end-re nil t)
12144 (error "Dynamic block not terminated"))
12145 (setq params
12146 (append params
12147 (list :content (buffer-substring
12148 begdel (match-beginning 0)))))
12149 (delete-region begdel (match-beginning 0))
12150 (goto-char begdel)
12151 (open-line 1)
12152 params))
12154 (defun org-map-dblocks (&optional command)
12155 "Apply COMMAND to all dynamic blocks in the current buffer.
12156 If COMMAND is not given, use `org-update-dblock'."
12157 (let ((cmd (or command 'org-update-dblock)))
12158 (save-excursion
12159 (goto-char (point-min))
12160 (while (re-search-forward org-dblock-start-re nil t)
12161 (goto-char (match-beginning 0))
12162 (save-excursion
12163 (condition-case nil
12164 (funcall cmd)
12165 (error (message "Error during update of dynamic block"))))
12166 (unless (re-search-forward org-dblock-end-re nil t)
12167 (error "Dynamic block not terminated"))))))
12169 (defun org-dblock-update (&optional arg)
12170 "User command for updating dynamic blocks.
12171 Update the dynamic block at point. With prefix ARG, update all dynamic
12172 blocks in the buffer."
12173 (interactive "P")
12174 (if arg
12175 (org-update-all-dblocks)
12176 (or (looking-at org-dblock-start-re)
12177 (org-beginning-of-dblock))
12178 (org-update-dblock)))
12180 (defun org-update-dblock ()
12181 "Update the dynamic block at point.
12182 This means to empty the block, parse for parameters and then call
12183 the correct writing function."
12184 (interactive)
12185 (save-excursion
12186 (let* ((win (selected-window))
12187 (pos (point))
12188 (line (org-current-line))
12189 (params (org-prepare-dblock))
12190 (name (plist-get params :name))
12191 (indent (plist-get params :indentation-column))
12192 (cmd (intern (concat "org-dblock-write:" name))))
12193 (message "Updating dynamic block `%s' at line %d..." name line)
12194 (funcall cmd params)
12195 (message "Updating dynamic block `%s' at line %d...done" name line)
12196 (goto-char pos)
12197 (when (and indent (> indent 0))
12198 (setq indent (make-string indent ?\ ))
12199 (save-excursion
12200 (select-window win)
12201 (org-beginning-of-dblock)
12202 (forward-line 1)
12203 (while (not (looking-at org-dblock-end-re))
12204 (insert indent)
12205 (beginning-of-line 2))
12206 (when (looking-at org-dblock-end-re)
12207 (and (looking-at "[ \t]+")
12208 (replace-match ""))
12209 (insert indent)))))))
12211 (defun org-beginning-of-dblock ()
12212 "Find the beginning of the dynamic block at point.
12213 Error if there is no such block at point."
12214 (let ((pos (point))
12215 beg)
12216 (end-of-line 1)
12217 (if (and (re-search-backward org-dblock-start-re nil t)
12218 (setq beg (match-beginning 0))
12219 (re-search-forward org-dblock-end-re nil t)
12220 (> (match-end 0) pos))
12221 (goto-char beg)
12222 (goto-char pos)
12223 (error "Not in a dynamic block"))))
12225 (defun org-update-all-dblocks ()
12226 "Update all dynamic blocks in the buffer.
12227 This function can be used in a hook."
12228 (interactive)
12229 (when (derived-mode-p 'org-mode)
12230 (org-map-dblocks 'org-update-dblock)))
12233 ;;;; Completion
12235 (declare-function org-export-backend-name "org-export" (cl-x))
12236 (declare-function org-export-backend-options "org-export" (cl-x))
12237 (defun org-get-export-keywords ()
12238 "Return a list of all currently understood export keywords.
12239 Export keywords include options, block names, attributes and
12240 keywords relative to each registered export back-end."
12241 (let (keywords)
12242 (dolist (backend
12243 (org-bound-and-true-p org-export--registered-backends)
12244 (delq nil keywords))
12245 ;; Back-end name (for keywords, like #+LATEX:)
12246 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12247 (dolist (option-entry (org-export-backend-options backend))
12248 ;; Back-end options.
12249 (push (nth 1 option-entry) keywords)))))
12251 (defconst org-options-keywords
12252 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12253 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12254 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12255 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12256 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12258 (defcustom org-structure-template-alist
12259 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12260 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12261 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12262 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12263 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12264 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12265 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12266 ("L" "#+LaTeX: ")
12267 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12268 ("H" "#+HTML: ")
12269 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12270 ("A" "#+ASCII: ")
12271 ("i" "#+INDEX: ?")
12272 ("I" "#+INCLUDE: %file ?"))
12273 "Structure completion elements.
12274 This is a list of abbreviation keys and values. The value gets inserted
12275 if you type `<' followed by the key and then press the completion key,
12276 usually `TAB'. %file will be replaced by a file name after prompting
12277 for the file using completion. The cursor will be placed at the position
12278 of the `?` in the template.
12279 There are two templates for each key, the first uses the original Org syntax,
12280 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12281 the default when the /org-mtags.el/ module has been loaded. See also the
12282 variable `org-mtags-prefer-muse-templates'."
12283 :group 'org-completion
12284 :type '(repeat
12285 (list
12286 (string :tag "Key")
12287 (string :tag "Template")))
12288 :version "25.1"
12289 :package-version '(Org . "8.3"))
12291 (defun org-try-structure-completion ()
12292 "Try to complete a structure template before point.
12293 This looks for strings like \"<e\" on an otherwise empty line and
12294 expands them."
12295 (let ((l (buffer-substring (point-at-bol) (point)))
12297 (when (and (looking-at "[ \t]*$")
12298 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12299 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12300 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12301 (match-beginning 1)) a)
12302 t)))
12304 (defun org-complete-expand-structure-template (start cell)
12305 "Expand a structure template."
12306 (let ((rpl (nth 1 cell))
12307 (ind ""))
12308 (delete-region start (point))
12309 (when (string-match "\\`[ \t]*#\\+" rpl)
12310 (cond
12311 ((bolp))
12312 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12313 (setq ind (buffer-substring (point-at-bol) (point))))
12314 (t (newline))))
12315 (setq start (point))
12316 (if (string-match "%file" rpl)
12317 (setq rpl (replace-match
12318 (concat
12319 "\""
12320 (save-match-data
12321 (abbreviate-file-name (read-file-name "Include file: ")))
12322 "\"")
12323 t t rpl)))
12324 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12325 (concat "\n" ind)))
12326 (insert rpl)
12327 (if (re-search-backward "\\?" start t) (delete-char 1))))
12329 ;;;; TODO, DEADLINE, Comments
12331 (defun org-toggle-comment ()
12332 "Change the COMMENT state of an entry."
12333 (interactive)
12334 (save-excursion
12335 (org-back-to-heading)
12336 (looking-at org-complex-heading-regexp)
12337 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12338 (skip-chars-forward " \t")
12339 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12340 (if (org-in-commented-heading-p t)
12341 (delete-region (point)
12342 (progn (search-forward " " (line-end-position) 'move)
12343 (skip-chars-forward " \t")
12344 (point)))
12345 (insert org-comment-string)
12346 (unless (eolp) (insert " ")))))
12348 (defvar org-last-todo-state-is-todo nil
12349 "This is non-nil when the last TODO state change led to a TODO state.
12350 If the last change removed the TODO tag or switched to DONE, then
12351 this is nil.")
12353 (defvar org-setting-tags nil) ; dynamically skipped
12355 (defvar org-todo-setup-filter-hook nil
12356 "Hook for functions that pre-filter todo specs.
12357 Each function takes a todo spec and returns either nil or the spec
12358 transformed into canonical form." )
12360 (defvar org-todo-get-default-hook nil
12361 "Hook for functions that get a default item for todo.
12362 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12363 nil or a string to be used for the todo mark." )
12365 (defvar org-agenda-headline-snapshot-before-repeat)
12367 (defun org-current-effective-time ()
12368 "Return current time adjusted for `org-extend-today-until' variable."
12369 (let* ((ct (org-current-time))
12370 (dct (decode-time ct))
12371 (ct1
12372 (cond
12373 (org-use-last-clock-out-time-as-effective-time
12374 (or (org-clock-get-last-clock-out-time) ct))
12375 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12376 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12377 (t ct))))
12378 ct1))
12380 (defun org-todo-yesterday (&optional arg)
12381 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12382 (interactive "P")
12383 (if (eq major-mode 'org-agenda-mode)
12384 (apply 'org-agenda-todo-yesterday arg)
12385 (let* ((hour (third (decode-time
12386 (org-current-time))))
12387 (org-extend-today-until (1+ hour)))
12388 (org-todo arg))))
12390 (defvar org-block-entry-blocking ""
12391 "First entry preventing the TODO state change.")
12393 (defun org-cancel-repeater ()
12394 "Cancel a repeater by setting its numeric value to zero."
12395 (interactive)
12396 (save-excursion
12397 (org-back-to-heading t)
12398 (let ((bound1 (point))
12399 (bound0 (save-excursion (outline-next-heading) (point))))
12400 (when (re-search-forward
12401 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12402 org-deadline-time-regexp "\\)\\|\\("
12403 org-ts-regexp "\\)")
12404 bound0 t)
12405 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12406 (replace-match "0" t nil nil 1))))))
12408 (defun org-todo (&optional arg)
12409 "Change the TODO state of an item.
12410 The state of an item is given by a keyword at the start of the heading,
12411 like
12412 *** TODO Write paper
12413 *** DONE Call mom
12415 The different keywords are specified in the variable `org-todo-keywords'.
12416 By default the available states are \"TODO\" and \"DONE\".
12417 So for this example: when the item starts with TODO, it is changed to DONE.
12418 When it starts with DONE, the DONE is removed. And when neither TODO nor
12419 DONE are present, add TODO at the beginning of the heading.
12421 With \\[universal-argument] prefix arg, use completion to determine the new \
12422 state.
12423 With numeric prefix arg, switch to that state.
12424 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12425 keywords (nextset).
12426 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12427 With a numeric prefix arg of 0, inhibit note taking for the change.
12428 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12430 When called through ELisp, arg is also interpreted in the following way:
12431 'none -> empty state
12432 \"\"(empty string) -> switch to empty state
12433 'done -> switch to DONE
12434 'nextset -> switch to the next set of keywords
12435 'previousset -> switch to the previous set of keywords
12436 \"WAITING\" -> switch to the specified keyword, but only if it
12437 really is a member of `org-todo-keywords'."
12438 (interactive "P")
12439 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12440 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12441 'region-start-level 'region))
12442 org-loop-over-headlines-in-active-region)
12443 (org-map-entries
12444 `(org-todo ,arg)
12445 org-loop-over-headlines-in-active-region
12446 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12447 (if (equal arg '(16)) (setq arg 'nextset))
12448 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12449 (let ((org-blocker-hook org-blocker-hook)
12450 commentp
12451 case-fold-search)
12452 (when (equal arg '(64))
12453 (setq arg nil org-blocker-hook nil))
12454 (when (and org-blocker-hook
12455 (or org-inhibit-blocking
12456 (org-entry-get nil "NOBLOCKING")))
12457 (setq org-blocker-hook nil))
12458 (save-excursion
12459 (catch 'exit
12460 (org-back-to-heading t)
12461 (when (org-in-commented-heading-p t)
12462 (org-toggle-comment)
12463 (setq commentp t))
12464 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12465 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12466 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12467 (let* ((match-data (match-data))
12468 (startpos (point-at-bol))
12469 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12470 (org-log-done org-log-done)
12471 (org-log-repeat org-log-repeat)
12472 (org-todo-log-states org-todo-log-states)
12473 (org-inhibit-logging
12474 (if (equal arg 0)
12475 (progn (setq arg nil) 'note) org-inhibit-logging))
12476 (this (match-string 1))
12477 (hl-pos (match-beginning 0))
12478 (head (org-get-todo-sequence-head this))
12479 (ass (assoc head org-todo-kwd-alist))
12480 (interpret (nth 1 ass))
12481 (done-word (nth 3 ass))
12482 (final-done-word (nth 4 ass))
12483 (org-last-state (or this ""))
12484 (completion-ignore-case t)
12485 (member (member this org-todo-keywords-1))
12486 (tail (cdr member))
12487 (org-state (cond
12488 ((and org-todo-key-trigger
12489 (or (and (equal arg '(4))
12490 (eq org-use-fast-todo-selection 'prefix))
12491 (and (not arg) org-use-fast-todo-selection
12492 (not (eq org-use-fast-todo-selection
12493 'prefix)))))
12494 ;; Use fast selection
12495 (org-fast-todo-selection))
12496 ((and (equal arg '(4))
12497 (or (not org-use-fast-todo-selection)
12498 (not org-todo-key-trigger)))
12499 ;; Read a state with completion
12500 (org-icompleting-read
12501 "State: " (mapcar 'list org-todo-keywords-1)
12502 nil t))
12503 ((eq arg 'right)
12504 (if this
12505 (if tail (car tail) nil)
12506 (car org-todo-keywords-1)))
12507 ((eq arg 'left)
12508 (if (equal member org-todo-keywords-1)
12510 (if this
12511 (nth (- (length org-todo-keywords-1)
12512 (length tail) 2)
12513 org-todo-keywords-1)
12514 (org-last org-todo-keywords-1))))
12515 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12516 (setq arg nil))) ; hack to fall back to cycling
12517 (arg
12518 ;; user or caller requests a specific state
12519 (cond
12520 ((equal arg "") nil)
12521 ((eq arg 'none) nil)
12522 ((eq arg 'done) (or done-word (car org-done-keywords)))
12523 ((eq arg 'nextset)
12524 (or (car (cdr (member head org-todo-heads)))
12525 (car org-todo-heads)))
12526 ((eq arg 'previousset)
12527 (let ((org-todo-heads (reverse org-todo-heads)))
12528 (or (car (cdr (member head org-todo-heads)))
12529 (car org-todo-heads))))
12530 ((car (member arg org-todo-keywords-1)))
12531 ((stringp arg)
12532 (user-error "State `%s' not valid in this file" arg))
12533 ((nth (1- (prefix-numeric-value arg))
12534 org-todo-keywords-1))))
12535 ((null member) (or head (car org-todo-keywords-1)))
12536 ((equal this final-done-word) nil) ;; -> make empty
12537 ((null tail) nil) ;; -> first entry
12538 ((memq interpret '(type priority))
12539 (if (eq this-command last-command)
12540 (car tail)
12541 (if (> (length tail) 0)
12542 (or done-word (car org-done-keywords))
12543 nil)))
12545 (car tail))))
12546 (org-state (or
12547 (run-hook-with-args-until-success
12548 'org-todo-get-default-hook org-state org-last-state)
12549 org-state))
12550 (next (if org-state (concat " " org-state " ") " "))
12551 (change-plist (list :type 'todo-state-change :from this :to org-state
12552 :position startpos))
12553 dolog now-done-p)
12554 (when org-blocker-hook
12555 (setq org-last-todo-state-is-todo
12556 (not (member this org-done-keywords)))
12557 (unless (save-excursion
12558 (save-match-data
12559 (org-with-wide-buffer
12560 (run-hook-with-args-until-failure
12561 'org-blocker-hook change-plist))))
12562 (if (org-called-interactively-p 'interactive)
12563 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12564 this org-state org-block-entry-blocking)
12565 ;; fail silently
12566 (message "TODO state change from %s to %s blocked (by \"%s\")"
12567 this org-state org-block-entry-blocking)
12568 (throw 'exit nil))))
12569 (store-match-data match-data)
12570 (replace-match next t t)
12571 (cond ((equal this org-state)
12572 (message "TODO state was already %s" (org-trim next)))
12573 ((pos-visible-in-window-p hl-pos)
12574 (message "TODO state changed to %s" (org-trim next))))
12575 (unless head
12576 (setq head (org-get-todo-sequence-head org-state)
12577 ass (assoc head org-todo-kwd-alist)
12578 interpret (nth 1 ass)
12579 done-word (nth 3 ass)
12580 final-done-word (nth 4 ass)))
12581 (when (memq arg '(nextset previousset))
12582 (message "Keyword-Set %d/%d: %s"
12583 (- (length org-todo-sets) -1
12584 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12585 (length org-todo-sets)
12586 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12587 (setq org-last-todo-state-is-todo
12588 (not (member org-state org-done-keywords)))
12589 (setq now-done-p (and (member org-state org-done-keywords)
12590 (not (member this org-done-keywords))))
12591 (and logging (org-local-logging logging))
12592 (when (and (or org-todo-log-states org-log-done)
12593 (not (eq org-inhibit-logging t))
12594 (not (memq arg '(nextset previousset))))
12595 ;; we need to look at recording a time and note
12596 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12597 (nth 2 (assoc this org-todo-log-states))))
12598 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12599 (setq dolog 'time))
12600 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12601 (and org-state
12602 (member org-state org-not-done-keywords)
12603 (not (member this org-not-done-keywords))))
12604 ;; This is now a todo state and was not one before
12605 ;; If there was a CLOSED time stamp, get rid of it.
12606 (org-add-planning-info nil nil 'closed))
12607 (when (and now-done-p org-log-done)
12608 ;; It is now done, and it was not done before
12609 (org-add-planning-info 'closed (org-current-effective-time))
12610 (if (and (not dolog) (eq 'note org-log-done))
12611 (org-add-log-setup 'done org-state this 'findpos 'note)))
12612 (when (and org-state dolog)
12613 ;; This is a non-nil state, and we need to log it
12614 (org-add-log-setup 'state org-state this 'findpos dolog)))
12615 ;; Fixup tag positioning
12616 (org-todo-trigger-tag-changes org-state)
12617 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12618 (when org-provide-todo-statistics
12619 (org-update-parent-todo-statistics))
12620 (run-hooks 'org-after-todo-state-change-hook)
12621 (if (and arg (not (member org-state org-done-keywords)))
12622 (setq head (org-get-todo-sequence-head org-state)))
12623 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12624 ;; Do we need to trigger a repeat?
12625 (when now-done-p
12626 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12627 ;; This is for the agenda, take a snapshot of the headline.
12628 (save-match-data
12629 (setq org-agenda-headline-snapshot-before-repeat
12630 (org-get-heading))))
12631 (org-auto-repeat-maybe org-state))
12632 ;; Fixup cursor location if close to the keyword
12633 (if (and (outline-on-heading-p)
12634 (not (bolp))
12635 (save-excursion (beginning-of-line 1)
12636 (looking-at org-todo-line-regexp))
12637 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12638 (progn
12639 (goto-char (or (match-end 2) (match-end 1)))
12640 (and (looking-at " ") (just-one-space))))
12641 (when org-trigger-hook
12642 (save-excursion
12643 (run-hook-with-args 'org-trigger-hook change-plist)))
12644 (when commentp (org-toggle-comment))))))))
12646 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12647 "Block turning an entry into a TODO, using the hierarchy.
12648 This checks whether the current task should be blocked from state
12649 changes. Such blocking occurs when:
12651 1. The task has children which are not all in a completed state.
12653 2. A task has a parent with the property :ORDERED:, and there
12654 are siblings prior to the current task with incomplete
12655 status.
12657 3. The parent of the task is blocked because it has siblings that should
12658 be done first, or is child of a block grandparent TODO entry."
12660 (if (not org-enforce-todo-dependencies)
12661 t ; if locally turned off don't block
12662 (catch 'dont-block
12663 ;; If this is not a todo state change, or if this entry is already DONE,
12664 ;; do not block
12665 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12666 (member (plist-get change-plist :from)
12667 (cons 'done org-done-keywords))
12668 (member (plist-get change-plist :to)
12669 (cons 'todo org-not-done-keywords))
12670 (not (plist-get change-plist :to)))
12671 (throw 'dont-block t))
12672 ;; If this task has children, and any are undone, it's blocked
12673 (save-excursion
12674 (org-back-to-heading t)
12675 (let ((this-level (funcall outline-level)))
12676 (outline-next-heading)
12677 (let ((child-level (funcall outline-level)))
12678 (while (and (not (eobp))
12679 (> child-level this-level))
12680 ;; this todo has children, check whether they are all
12681 ;; completed
12682 (if (and (not (org-entry-is-done-p))
12683 (org-entry-is-todo-p))
12684 (progn (setq org-block-entry-blocking (org-get-heading))
12685 (throw 'dont-block nil)))
12686 (outline-next-heading)
12687 (setq child-level (funcall outline-level))))))
12688 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12689 ;; any previous siblings are undone, it's blocked
12690 (save-excursion
12691 (org-back-to-heading t)
12692 (let* ((pos (point))
12693 (parent-pos (and (org-up-heading-safe) (point))))
12694 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12695 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12696 (forward-line 1)
12697 (re-search-forward org-not-done-heading-regexp pos t))
12698 (setq org-block-entry-blocking (match-string 0))
12699 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12700 ;; Search further up the hierarchy, to see if an ancestor is blocked
12701 (while t
12702 (goto-char parent-pos)
12703 (if (not (looking-at org-not-done-heading-regexp))
12704 (throw 'dont-block t)) ; do not block, parent is not a TODO
12705 (setq pos (point))
12706 (setq parent-pos (and (org-up-heading-safe) (point)))
12707 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12708 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12709 (forward-line 1)
12710 (re-search-forward org-not-done-heading-regexp pos t)
12711 (setq org-block-entry-blocking (org-get-heading)))
12712 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12714 (defcustom org-track-ordered-property-with-tag nil
12715 "Should the ORDERED property also be shown as a tag?
12716 The ORDERED property decides if an entry should require subtasks to be
12717 completed in sequence. Since a property is not very visible, setting
12718 this option means that toggling the ORDERED property with the command
12719 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12720 not relevant for the behavior, but it makes things more visible.
12722 Note that toggling the tag with tags commands will not change the property
12723 and therefore not influence behavior!
12725 This can be t, meaning the tag ORDERED should be used, It can also be a
12726 string to select a different tag for this task."
12727 :group 'org-todo
12728 :type '(choice
12729 (const :tag "No tracking" nil)
12730 (const :tag "Track with ORDERED tag" t)
12731 (string :tag "Use other tag")))
12733 (defun org-toggle-ordered-property ()
12734 "Toggle the ORDERED property of the current entry.
12735 For better visibility, you can track the value of this property with a tag.
12736 See variable `org-track-ordered-property-with-tag'."
12737 (interactive)
12738 (let* ((t1 org-track-ordered-property-with-tag)
12739 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12740 (save-excursion
12741 (org-back-to-heading)
12742 (if (org-entry-get nil "ORDERED")
12743 (progn
12744 (org-delete-property "ORDERED")
12745 (and tag (org-toggle-tag tag 'off))
12746 (message "Subtasks can be completed in arbitrary order"))
12747 (org-entry-put nil "ORDERED" "t")
12748 (and tag (org-toggle-tag tag 'on))
12749 (message "Subtasks must be completed in sequence")))))
12751 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12752 (defun org-block-todo-from-checkboxes (change-plist)
12753 "Block turning an entry into a TODO, using checkboxes.
12754 This checks whether the current task should be blocked from state
12755 changes because there are unchecked boxes in this entry."
12756 (if (not org-enforce-todo-checkbox-dependencies)
12757 t ; if locally turned off don't block
12758 (catch 'dont-block
12759 ;; If this is not a todo state change, or if this entry is already DONE,
12760 ;; do not block
12761 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12762 (member (plist-get change-plist :from)
12763 (cons 'done org-done-keywords))
12764 (member (plist-get change-plist :to)
12765 (cons 'todo org-not-done-keywords))
12766 (not (plist-get change-plist :to)))
12767 (throw 'dont-block t))
12768 ;; If this task has checkboxes that are not checked, it's blocked
12769 (save-excursion
12770 (org-back-to-heading t)
12771 (let ((beg (point)) end)
12772 (outline-next-heading)
12773 (setq end (point))
12774 (goto-char beg)
12775 (if (org-list-search-forward
12776 (concat (org-item-beginning-re)
12777 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12778 "\\[[- ]\\]")
12779 end t)
12780 (progn
12781 (if (boundp 'org-blocked-by-checkboxes)
12782 (setq org-blocked-by-checkboxes t))
12783 (throw 'dont-block nil)))))
12784 t))) ; do not block
12786 (defun org-entry-blocked-p ()
12787 "Is the current entry blocked?"
12788 (org-with-silent-modifications
12789 (if (org-entry-get nil "NOBLOCKING")
12790 nil ;; Never block this entry
12791 (not (run-hook-with-args-until-failure
12792 'org-blocker-hook
12793 (list :type 'todo-state-change
12794 :position (point)
12795 :from 'todo
12796 :to 'done))))))
12798 (defun org-update-statistics-cookies (all)
12799 "Update the statistics cookie, either from TODO or from checkboxes.
12800 This should be called with the cursor in a line with a statistics cookie."
12801 (interactive "P")
12802 (if all
12803 (progn
12804 (org-update-checkbox-count 'all)
12805 (org-map-entries 'org-update-parent-todo-statistics))
12806 (if (not (org-at-heading-p))
12807 (org-update-checkbox-count)
12808 (let ((pos (point-marker))
12809 end l1 l2)
12810 (ignore-errors (org-back-to-heading t))
12811 (if (not (org-at-heading-p))
12812 (org-update-checkbox-count)
12813 (setq l1 (org-outline-level))
12814 (setq end (save-excursion
12815 (outline-next-heading)
12816 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12817 (point)))
12818 (if (and (save-excursion
12819 (re-search-forward
12820 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12821 (not (save-excursion (re-search-forward
12822 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12823 (org-update-checkbox-count)
12824 (if (and l2 (> l2 l1))
12825 (progn
12826 (goto-char end)
12827 (org-update-parent-todo-statistics))
12828 (goto-char pos)
12829 (beginning-of-line 1)
12830 (while (re-search-forward
12831 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12832 (point-at-eol) t)
12833 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12834 (goto-char pos)
12835 (move-marker pos nil)))))
12837 (defvar org-entry-property-inherited-from) ;; defined below
12838 (defun org-update-parent-todo-statistics ()
12839 "Update any statistics cookie in the parent of the current headline.
12840 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12841 the entire subtree and this will travel up the hierarchy and update
12842 statistics everywhere."
12843 (let* ((prop (save-excursion (org-up-heading-safe)
12844 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12845 (recursive (or (not org-hierarchical-todo-statistics)
12846 (and prop (string-match "\\<recursive\\>" prop))))
12847 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12849 (first t)
12850 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12851 level ltoggle l1 new ndel
12852 (cnt-all 0) (cnt-done 0) is-percent kwd
12853 checkbox-beg ov ovs ove cookie-present)
12854 (catch 'exit
12855 (save-excursion
12856 (beginning-of-line 1)
12857 (setq ltoggle (funcall outline-level))
12858 ;; Three situations are to consider:
12860 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12861 ;; to the top-level ancestor on the headline;
12863 ;; 2. If parent has "recursive" property, repeat up to the
12864 ;; headline setting that property, taking inheritance into
12865 ;; account;
12867 ;; 3. Else, move up to direct parent and proceed only once.
12868 (while (and (setq level (org-up-heading-safe))
12869 (or recursive first)
12870 (>= (point) lim))
12871 (setq first nil cookie-present nil)
12872 (unless (and level
12873 (not (string-match
12874 "\\<checkbox\\>"
12875 (downcase (or (org-entry-get nil "COOKIE_DATA")
12876 "")))))
12877 (throw 'exit nil))
12878 (while (re-search-forward box-re (point-at-eol) t)
12879 (setq cnt-all 0 cnt-done 0 cookie-present t)
12880 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12881 (save-match-data
12882 (unless (outline-next-heading) (throw 'exit nil))
12883 (while (and (looking-at org-complex-heading-regexp)
12884 (> (setq l1 (length (match-string 1))) level))
12885 (setq kwd (and (or recursive (= l1 ltoggle))
12886 (match-string 2)))
12887 (if (or (eq org-provide-todo-statistics 'all-headlines)
12888 (and (eq org-provide-todo-statistics t)
12889 (or (member kwd org-done-keywords)))
12890 (and (listp org-provide-todo-statistics)
12891 (stringp (car org-provide-todo-statistics))
12892 (or (member kwd org-provide-todo-statistics)
12893 (member kwd org-done-keywords)))
12894 (and (listp org-provide-todo-statistics)
12895 (listp (car org-provide-todo-statistics))
12896 (or (member kwd (car org-provide-todo-statistics))
12897 (and (member kwd org-done-keywords)
12898 (member kwd (cadr org-provide-todo-statistics))))))
12899 (setq cnt-all (1+ cnt-all))
12900 (if (eq org-provide-todo-statistics t)
12901 (and kwd (setq cnt-all (1+ cnt-all)))))
12902 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12903 (member kwd org-done-keywords))
12904 (and (listp org-provide-todo-statistics)
12905 (listp (car org-provide-todo-statistics))
12906 (member kwd org-done-keywords)
12907 (member kwd (cadr org-provide-todo-statistics)))
12908 (and (listp org-provide-todo-statistics)
12909 (stringp (car org-provide-todo-statistics))
12910 (member kwd org-done-keywords)))
12911 (setq cnt-done (1+ cnt-done)))
12912 (outline-next-heading)))
12913 (setq new
12914 (if is-percent
12915 (format "[%d%%]" (/ (* 100 cnt-done) (max 1 cnt-all)))
12916 (format "[%d/%d]" cnt-done cnt-all))
12917 ndel (- (match-end 0) checkbox-beg))
12918 ;; handle overlays when updating cookie from column view
12919 (when (setq ov (car (overlays-at checkbox-beg)))
12920 (setq ovs (overlay-start ov) ove (overlay-end ov))
12921 (delete-overlay ov))
12922 (goto-char checkbox-beg)
12923 (insert new)
12924 (delete-region (point) (+ (point) ndel))
12925 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12926 (when ov (move-overlay ov ovs ove)))
12927 (when cookie-present
12928 (run-hook-with-args 'org-after-todo-statistics-hook
12929 cnt-done (- cnt-all cnt-done))))))
12930 (run-hooks 'org-todo-statistics-hook)))
12932 (defvar org-after-todo-statistics-hook nil
12933 "Hook that is called after a TODO statistics cookie has been updated.
12934 Each function is called with two arguments: the number of not-done entries
12935 and the number of done entries.
12937 For example, the following function, when added to this hook, will switch
12938 an entry to DONE when all children are done, and back to TODO when new
12939 entries are set to a TODO status. Note that this hook is only called
12940 when there is a statistics cookie in the headline!
12942 (defun org-summary-todo (n-done n-not-done)
12943 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
12944 (let (org-log-done org-log-states) ; turn off logging
12945 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
12948 (defvar org-todo-statistics-hook nil
12949 "Hook that is run whenever Org thinks TODO statistics should be updated.
12950 This hook runs even if there is no statistics cookie present, in which case
12951 `org-after-todo-statistics-hook' would not run.")
12953 (defun org-todo-trigger-tag-changes (state)
12954 "Apply the changes defined in `org-todo-state-tags-triggers'."
12955 (let ((l org-todo-state-tags-triggers)
12956 changes)
12957 (when (or (not state) (equal state ""))
12958 (setq changes (append changes (cdr (assoc "" l)))))
12959 (when (and (stringp state) (> (length state) 0))
12960 (setq changes (append changes (cdr (assoc state l)))))
12961 (when (member state org-not-done-keywords)
12962 (setq changes (append changes (cdr (assoc 'todo l)))))
12963 (when (member state org-done-keywords)
12964 (setq changes (append changes (cdr (assoc 'done l)))))
12965 (dolist (c changes)
12966 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
12968 (defun org-local-logging (value)
12969 "Get logging settings from a property VALUE."
12970 (let* (words w a)
12971 ;; directly set the variables, they are already local.
12972 (setq org-log-done nil
12973 org-log-repeat nil
12974 org-todo-log-states nil)
12975 (setq words (org-split-string value))
12976 (while (setq w (pop words))
12977 (cond
12978 ((setq a (assoc w org-startup-options))
12979 (and (member (nth 1 a) '(org-log-done org-log-repeat))
12980 (set (nth 1 a) (nth 2 a))))
12981 ((setq a (org-extract-log-state-settings w))
12982 (and (member (car a) org-todo-keywords-1)
12983 (push a org-todo-log-states)))))))
12985 (defun org-get-todo-sequence-head (kwd)
12986 "Return the head of the TODO sequence to which KWD belongs.
12987 If KWD is not set, check if there is a text property remembering the
12988 right sequence."
12989 (let (p)
12990 (cond
12991 ((not kwd)
12992 (or (get-text-property (point-at-bol) 'org-todo-head)
12993 (progn
12994 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
12995 nil (point-at-eol)))
12996 (get-text-property p 'org-todo-head))))
12997 ((not (member kwd org-todo-keywords-1))
12998 (car org-todo-keywords-1))
12999 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13001 (defun org-fast-todo-selection ()
13002 "Fast TODO keyword selection with single keys.
13003 Returns the new TODO keyword, or nil if no state change should occur."
13004 (let* ((fulltable org-todo-key-alist)
13005 (done-keywords org-done-keywords) ;; needed for the faces.
13006 (maxlen (apply 'max (mapcar
13007 (lambda (x)
13008 (if (stringp (car x)) (string-width (car x)) 0))
13009 fulltable)))
13010 (expert nil)
13011 (fwidth (+ maxlen 3 1 3))
13012 (ncol (/ (- (window-width) 4) fwidth))
13013 tg cnt e c tbl
13014 groups ingroup)
13015 (save-excursion
13016 (save-window-excursion
13017 (if expert
13018 (set-buffer (get-buffer-create " *Org todo*"))
13019 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13020 (erase-buffer)
13021 (org-set-local 'org-done-keywords done-keywords)
13022 (setq tbl fulltable cnt 0)
13023 (while (setq e (pop tbl))
13024 (cond
13025 ((equal e '(:startgroup))
13026 (push '() groups) (setq ingroup t)
13027 (when (not (= cnt 0))
13028 (setq cnt 0)
13029 (insert "\n"))
13030 (insert "{ "))
13031 ((equal e '(:endgroup))
13032 (setq ingroup nil cnt 0)
13033 (insert "}\n"))
13034 ((equal e '(:newline))
13035 (when (not (= cnt 0))
13036 (setq cnt 0)
13037 (insert "\n")
13038 (setq e (car tbl))
13039 (while (equal (car tbl) '(:newline))
13040 (insert "\n")
13041 (setq tbl (cdr tbl)))))
13043 (setq tg (car e) c (cdr e))
13044 (if ingroup (push tg (car groups)))
13045 (setq tg (org-add-props tg nil 'face
13046 (org-get-todo-face tg)))
13047 (if (and (= cnt 0) (not ingroup)) (insert " "))
13048 (insert "[" c "] " tg (make-string
13049 (- fwidth 4 (length tg)) ?\ ))
13050 (when (= (setq cnt (1+ cnt)) ncol)
13051 (insert "\n")
13052 (if ingroup (insert " "))
13053 (setq cnt 0)))))
13054 (insert "\n")
13055 (goto-char (point-min))
13056 (if (not expert) (org-fit-window-to-buffer))
13057 (message "[a-z..]:Set [SPC]:clear")
13058 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13059 (cond
13060 ((or (= c ?\C-g)
13061 (and (= c ?q) (not (rassoc c fulltable))))
13062 (setq quit-flag t))
13063 ((= c ?\ ) nil)
13064 ((setq e (rassoc c fulltable) tg (car e))
13066 (t (setq quit-flag t)))))))
13068 (defun org-entry-is-todo-p ()
13069 (member (org-get-todo-state) org-not-done-keywords))
13071 (defun org-entry-is-done-p ()
13072 (member (org-get-todo-state) org-done-keywords))
13074 (defun org-get-todo-state ()
13075 "Return the TODO keyword of the current subtree."
13076 (save-excursion
13077 (org-back-to-heading t)
13078 (and (looking-at org-todo-line-regexp)
13079 (match-end 2)
13080 (match-string 2))))
13082 (defun org-at-date-range-p (&optional inactive-ok)
13083 "Is the cursor inside a date range?"
13084 (interactive)
13085 (save-excursion
13086 (catch 'exit
13087 (let ((pos (point)))
13088 (skip-chars-backward "^[<\r\n")
13089 (skip-chars-backward "<[")
13090 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13091 (>= (match-end 0) pos)
13092 (throw 'exit t))
13093 (skip-chars-backward "^<[\r\n")
13094 (skip-chars-backward "<[")
13095 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13096 (>= (match-end 0) pos)
13097 (throw 'exit t)))
13098 nil)))
13100 (defun org-get-repeat (&optional tagline)
13101 "Check if there is a deadline/schedule with repeater in this entry."
13102 (save-match-data
13103 (save-excursion
13104 (org-back-to-heading t)
13105 (and (re-search-forward (if tagline
13106 (concat tagline "\\s-*" org-repeat-re)
13107 org-repeat-re)
13108 (org-entry-end-position) t)
13109 (match-string-no-properties 1)))))
13111 (defvar org-last-changed-timestamp)
13112 (defvar org-last-inserted-timestamp)
13113 (defvar org-log-post-message)
13114 (defvar org-log-note-purpose)
13115 (defvar org-log-note-how nil)
13116 (defvar org-log-note-extra)
13117 (defun org-auto-repeat-maybe (done-word)
13118 "Check if the current headline contains a repeated deadline/schedule.
13119 If yes, set TODO state back to what it was and change the base date
13120 of repeating deadline/scheduled time stamps to new date.
13121 This function is run automatically after each state change to a DONE state."
13122 ;; last-state is dynamically scoped into this function
13123 (let* ((repeat (org-get-repeat))
13124 (aa (assoc org-last-state org-todo-kwd-alist))
13125 (interpret (nth 1 aa))
13126 (head (nth 2 aa))
13127 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13128 (msg "Entry repeats: ")
13129 (org-log-done nil)
13130 (org-todo-log-states nil)
13131 re type n what ts time to-state)
13132 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13133 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13134 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13135 org-todo-repeat-to-state))
13136 (unless (and to-state (member to-state org-todo-keywords-1))
13137 (setq to-state (if (eq interpret 'type) org-last-state head)))
13138 (org-todo to-state)
13139 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13140 (org-entry-put nil "LAST_REPEAT" (format-time-string
13141 (org-time-stamp-format t t))))
13142 (when org-log-repeat
13143 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13144 (memq 'org-add-log-note post-command-hook))
13145 ;; OK, we are already setup for some record
13146 (if (eq org-log-repeat 'note)
13147 ;; make sure we take a note, not only a time stamp
13148 (setq org-log-note-how 'note))
13149 ;; Set up for taking a record
13150 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13151 org-last-state
13152 'findpos org-log-repeat)))
13153 (org-back-to-heading t)
13154 (org-add-planning-info nil nil 'closed)
13155 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13156 org-deadline-time-regexp "\\)\\|\\("
13157 org-ts-regexp "\\)"))
13158 (while (re-search-forward
13159 re (save-excursion (outline-next-heading) (point)) t)
13160 (setq type (if (match-end 1) org-scheduled-string
13161 (if (match-end 3) org-deadline-string "Plain:"))
13162 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13163 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13164 (setq n (string-to-number (match-string 2 ts))
13165 what (match-string 3 ts))
13166 (if (equal what "w") (setq n (* n 7) what "d"))
13167 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13168 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13169 ;; Preparation, see if we need to modify the start date for the change
13170 (when (match-end 1)
13171 (setq time (save-match-data (org-time-string-to-time ts)))
13172 (cond
13173 ((equal (match-string 1 ts) ".")
13174 ;; Shift starting date to today
13175 (org-timestamp-change
13176 (- (org-today) (time-to-days time))
13177 'day))
13178 ((equal (match-string 1 ts) "+")
13179 (let ((nshiftmax 10) (nshift 0))
13180 (while (or (= nshift 0)
13181 (<= (time-to-days time)
13182 (time-to-days (current-time))))
13183 (when (= (incf nshift) nshiftmax)
13184 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13185 (user-error "Abort")))
13186 (org-timestamp-change n (cdr (assoc what whata)))
13187 (org-at-timestamp-p t)
13188 (setq ts (match-string 1))
13189 (setq time (save-match-data (org-time-string-to-time ts)))))
13190 (org-timestamp-change (- n) (cdr (assoc what whata)))
13191 ;; rematch, so that we have everything in place for the real shift
13192 (org-at-timestamp-p t)
13193 (setq ts (match-string 1))
13194 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13195 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13196 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13197 (setq org-log-post-message msg)
13198 (message "%s" msg))))
13200 (defun org-show-todo-tree (arg)
13201 "Make a compact tree which shows all headlines marked with TODO.
13202 The tree will show the lines where the regexp matches, and all higher
13203 headlines above the match.
13204 With a \\[universal-argument] prefix, prompt for a regexp to match.
13205 With a numeric prefix N, construct a sparse tree for the Nth element
13206 of `org-todo-keywords-1'."
13207 (interactive "P")
13208 (let ((case-fold-search nil)
13209 (kwd-re
13210 (cond ((null arg) org-not-done-regexp)
13211 ((equal arg '(4))
13212 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13213 (mapcar 'list org-todo-keywords-1))))
13214 (concat "\\("
13215 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13216 "\\)\\>")))
13217 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13218 (regexp-quote (nth (1- (prefix-numeric-value arg))
13219 org-todo-keywords-1)))
13220 (t (user-error "Invalid prefix argument: %s" arg)))))
13221 (message "%d TODO entries found"
13222 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13224 (defun org-deadline (arg &optional time)
13225 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13226 With one universal prefix argument, remove any deadline from the item.
13227 With two universal prefix arguments, prompt for a warning delay.
13228 With argument TIME, set the deadline at the corresponding date. TIME
13229 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13230 (interactive "P")
13231 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13232 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13233 'region-start-level 'region))
13234 org-loop-over-headlines-in-active-region)
13235 (org-map-entries
13236 `(org-deadline ',arg ,time)
13237 org-loop-over-headlines-in-active-region
13238 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13239 (let* ((old-date (org-entry-get nil "DEADLINE"))
13240 (old-date-time (if old-date (org-time-string-to-time old-date)))
13241 (repeater (and old-date
13242 (string-match
13243 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13244 old-date)
13245 (match-string 1 old-date))))
13246 (cond
13247 ((equal arg '(4))
13248 (when (and old-date org-log-redeadline)
13249 (org-add-log-setup 'deldeadline nil old-date 'findpos
13250 org-log-redeadline))
13251 (org-remove-timestamp-with-keyword org-deadline-string)
13252 (message "Item no longer has a deadline."))
13253 ((equal arg '(16))
13254 (save-excursion
13255 (org-back-to-heading t)
13256 (if (re-search-forward
13257 org-deadline-time-regexp
13258 (save-excursion (outline-next-heading) (point)) t)
13259 (let* ((rpl0 (match-string 1))
13260 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13261 (replace-match
13262 (concat org-deadline-string
13263 " <" rpl
13264 (format " -%dd"
13265 (abs
13266 (- (time-to-days
13267 (save-match-data
13268 (org-read-date nil t nil "Warn starting from" old-date-time)))
13269 (time-to-days old-date-time))))
13270 ">") t t))
13271 (user-error "No deadline information to update"))))
13273 (org-add-planning-info 'deadline time 'closed)
13274 (when (and old-date org-log-redeadline
13275 (not (equal old-date
13276 (substring org-last-inserted-timestamp 1 -1))))
13277 (org-add-log-setup 'redeadline nil old-date 'findpos
13278 org-log-redeadline))
13279 (when repeater
13280 (save-excursion
13281 (org-back-to-heading t)
13282 (when (re-search-forward (concat org-deadline-string " "
13283 org-last-inserted-timestamp)
13284 (save-excursion
13285 (outline-next-heading) (point)) t)
13286 (goto-char (1- (match-end 0)))
13287 (insert " " repeater)
13288 (setq org-last-inserted-timestamp
13289 (concat (substring org-last-inserted-timestamp 0 -1)
13290 " " repeater
13291 (substring org-last-inserted-timestamp -1))))))
13292 (message "Deadline on %s" org-last-inserted-timestamp))))))
13294 (defun org-schedule (arg &optional time)
13295 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13296 With one universal prefix argument, remove any scheduling date from the item.
13297 With two universal prefix arguments, prompt for a delay cookie.
13298 With argument TIME, scheduled at the corresponding date. TIME can
13299 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13300 (interactive "P")
13301 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13302 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13303 'region-start-level 'region))
13304 org-loop-over-headlines-in-active-region)
13305 (org-map-entries
13306 `(org-schedule ',arg ,time)
13307 org-loop-over-headlines-in-active-region
13308 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13309 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13310 (old-date-time (if old-date (org-time-string-to-time old-date)))
13311 (repeater (and old-date
13312 (string-match
13313 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13314 old-date)
13315 (match-string 1 old-date))))
13316 (cond
13317 ((equal arg '(4))
13318 (progn
13319 (when (and old-date org-log-reschedule)
13320 (org-add-log-setup 'delschedule nil old-date 'findpos
13321 org-log-reschedule))
13322 (org-remove-timestamp-with-keyword org-scheduled-string)
13323 (message "Item is no longer scheduled.")))
13324 ((equal arg '(16))
13325 (save-excursion
13326 (org-back-to-heading t)
13327 (if (re-search-forward
13328 org-scheduled-time-regexp
13329 (save-excursion (outline-next-heading) (point)) t)
13330 (let* ((rpl0 (match-string 1))
13331 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13332 (replace-match
13333 (concat org-scheduled-string
13334 " <" rpl
13335 (format " -%dd"
13336 (abs
13337 (- (time-to-days
13338 (save-match-data
13339 (org-read-date nil t nil "Delay until" old-date-time)))
13340 (time-to-days old-date-time))))
13341 ">") t t))
13342 (user-error "No scheduled information to update"))))
13344 (org-add-planning-info 'scheduled time 'closed)
13345 (when (and old-date org-log-reschedule
13346 (not (equal old-date
13347 (substring org-last-inserted-timestamp 1 -1))))
13348 (org-add-log-setup 'reschedule nil old-date 'findpos
13349 org-log-reschedule))
13350 (when repeater
13351 (save-excursion
13352 (org-back-to-heading t)
13353 (when (re-search-forward (concat org-scheduled-string " "
13354 org-last-inserted-timestamp)
13355 (save-excursion
13356 (outline-next-heading) (point)) t)
13357 (goto-char (1- (match-end 0)))
13358 (insert " " repeater)
13359 (setq org-last-inserted-timestamp
13360 (concat (substring org-last-inserted-timestamp 0 -1)
13361 " " repeater
13362 (substring org-last-inserted-timestamp -1))))))
13363 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13365 (defun org-get-scheduled-time (pom &optional inherit)
13366 "Get the scheduled time as a time tuple, of a format suitable
13367 for calling org-schedule with, or if there is no scheduling,
13368 returns nil."
13369 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13370 (when time
13371 (apply 'encode-time (org-parse-time-string time)))))
13373 (defun org-get-deadline-time (pom &optional inherit)
13374 "Get the deadline as a time tuple, of a format suitable for
13375 calling org-deadline with, or if there is no scheduling, returns
13376 nil."
13377 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13378 (when time
13379 (apply 'encode-time (org-parse-time-string time)))))
13381 (defun org-remove-timestamp-with-keyword (keyword)
13382 "Remove all time stamps with KEYWORD in the current entry."
13383 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13384 beg)
13385 (save-excursion
13386 (org-back-to-heading t)
13387 (setq beg (point))
13388 (outline-next-heading)
13389 (while (re-search-backward re beg t)
13390 (replace-match "")
13391 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13392 (equal (char-before) ?\ ))
13393 (backward-delete-char 1)
13394 (if (string-match "^[ \t]*$" (buffer-substring
13395 (point-at-bol) (point-at-eol)))
13396 (delete-region (point-at-bol)
13397 (min (point-max) (1+ (point-at-eol))))))))))
13399 (defvar org-time-was-given) ; dynamically scoped parameter
13400 (defvar org-end-time-was-given) ; dynamically scoped parameter
13402 (defun org-add-planning-info (what &optional time &rest remove)
13403 "Insert new timestamp with keyword in the line directly after the headline.
13404 WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
13405 If non is given, the user is prompted for a date.
13406 REMOVE indicates what kind of entries to remove. An old WHAT entry will also
13407 be removed."
13408 (interactive)
13409 (let (org-time-was-given org-end-time-was-given default-time default-input)
13410 (catch 'exit
13411 (when (and (memq what '(scheduled deadline))
13412 (or (not time)
13413 (and (stringp time)
13414 (string-match "^[-+]+[0-9]" time))))
13415 ;; Try to get a default date/time from existing timestamp
13416 (save-excursion
13417 (org-back-to-heading t)
13418 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13419 (when (re-search-forward (if (eq what 'scheduled)
13420 org-scheduled-time-regexp
13421 org-deadline-time-regexp)
13422 end t)
13423 (setq ts (match-string 1)
13424 default-time (apply 'encode-time (org-parse-time-string ts))
13425 default-input (and ts (org-get-compact-tod ts)))))))
13426 (when what
13427 (setq time
13428 (if (stringp time)
13429 ;; This is a string (relative or absolute), set proper date
13430 (apply 'encode-time
13431 (org-read-date-analyze
13432 time default-time (decode-time default-time)))
13433 ;; If necessary, get the time from the user
13434 (or time (org-read-date nil 'to-time nil nil
13435 default-time default-input)))))
13437 (when (and org-insert-labeled-timestamps-at-point
13438 (memq what '(scheduled deadline)))
13439 (insert
13440 (if (eq what 'scheduled) org-scheduled-string org-deadline-string) " ")
13441 (org-insert-time-stamp time org-time-was-given
13442 nil nil nil (list org-end-time-was-given))
13443 (setq what nil))
13444 (org-with-wide-buffer
13445 (let (col list elt ts buffer-invisibility-spec)
13446 (org-back-to-heading t)
13447 (looking-at (concat org-outline-regexp "\\( *\\)[^\r\n]*"))
13448 (goto-char (match-end 1))
13449 (setq col (current-column))
13450 (goto-char (match-end 0))
13451 (if (eobp) (insert "\n") (forward-char 1))
13452 (unless (or what (org-looking-at-p org-planning-line-re))
13453 ;; Nothing to add, nothing to remove...... :-)
13454 (throw 'exit nil))
13455 (if (and (not (looking-at org-outline-regexp))
13456 (looking-at (concat "[^\r\n]*?" org-keyword-time-regexp
13457 "[^\r\n]*"))
13458 (not (equal (match-string 1) org-clock-string)))
13459 (narrow-to-region (match-beginning 0) (match-end 0))
13460 (insert-before-markers "\n")
13461 (backward-char 1)
13462 (narrow-to-region (point) (point))
13463 (and org-adapt-indentation (org-indent-to-column col)))
13464 ;; Check if we have to remove something.
13465 (setq list (cons what remove))
13466 (while list
13467 (setq elt (pop list))
13468 (when (or (and (eq elt 'scheduled)
13469 (re-search-forward org-scheduled-time-regexp nil t))
13470 (and (eq elt 'deadline)
13471 (re-search-forward org-deadline-time-regexp nil t))
13472 (and (eq elt 'closed)
13473 (re-search-forward org-closed-time-regexp nil t)))
13474 (replace-match "")
13475 (if (looking-at "--+<[^>]+>") (replace-match ""))))
13476 (and (looking-at "[ \t]+") (replace-match ""))
13477 (and org-adapt-indentation (bolp) (org-indent-to-column col))
13478 (when what
13479 (insert
13480 (if (or (bolp) (eq (char-before) ?\s)) "" " ")
13481 (cond ((eq what 'scheduled) org-scheduled-string)
13482 ((eq what 'deadline) org-deadline-string)
13483 ((eq what 'closed) org-closed-string))
13484 " ")
13485 (setq ts (org-insert-time-stamp
13486 time
13487 (or org-time-was-given
13488 (and (eq what 'closed) org-log-done-with-time))
13489 (eq what 'closed)
13490 nil nil (list org-end-time-was-given)))
13491 (unless (or (bolp)
13492 (eq (char-before) ?\s)
13493 (memq (char-after) '(?\n ?\s))
13494 (eobp))
13495 (insert " "))
13496 (end-of-line 1))
13497 (goto-char (point-min))
13498 (widen)
13499 (when (and (looking-at "[ \t]*\n") (eq (char-before) ?\n))
13500 (delete-region (1- (point)) (line-end-position)))
13501 ts)))))
13503 (defvar org-log-note-marker (make-marker))
13504 (defvar org-log-note-purpose nil)
13505 (defvar org-log-note-state nil)
13506 (defvar org-log-note-previous-state nil)
13507 (defvar org-log-note-extra nil)
13508 (defvar org-log-note-window-configuration nil)
13509 (defvar org-log-note-return-to (make-marker))
13510 (defvar org-log-note-effective-time nil
13511 "Remembered current time so that dynamically scoped
13512 `org-extend-today-until' affects tha timestamps in state change
13513 log")
13515 (defvar org-log-post-message nil
13516 "Message to be displayed after a log note has been stored.
13517 The auto-repeater uses this.")
13519 (defun org-add-note ()
13520 "Add a note to the current entry.
13521 This is done in the same way as adding a state change note."
13522 (interactive)
13523 (org-add-log-setup 'note nil nil 'findpos nil))
13525 (defun org-log-beginning (&optional create)
13526 "Return expected start of log notes in current entry.
13527 When optional argument CREATE is non-nil, the function creates
13528 a drawer to store notes, if necessary. Returned position ignores
13529 narrowing."
13530 (org-with-wide-buffer
13531 (org-back-to-heading t)
13532 ;; Skip planning info and property drawer.
13533 (forward-line)
13534 (when (org-looking-at-p org-planning-line-re) (forward-line))
13535 (when (looking-at org-property-drawer-re)
13536 (goto-char (match-end 0))
13537 (forward-line))
13538 (if (org-at-heading-p) (point)
13539 (let ((end (save-excursion (outline-next-heading) (point)))
13540 (drawer (cond ((stringp org-log-into-drawer) org-log-into-drawer)
13541 (org-log-into-drawer "LOGBOOK"))))
13542 (cond
13543 (drawer
13544 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13545 (case-fold-search t))
13546 (catch 'exit
13547 ;; Try to find existing drawer.
13548 (while (re-search-forward regexp end t)
13549 (let ((element (org-element-at-point)))
13550 (when (eq (org-element-type element) 'drawer)
13551 (let ((cend (org-element-property :contents-end element)))
13552 (when (and (not org-log-states-order-reversed) cend)
13553 (goto-char cend)))
13554 (throw 'exit nil))))
13555 ;; No drawer found. Create one, if permitted.
13556 (when create
13557 (unless (bolp) (insert "\n"))
13558 (let ((beg (point)))
13559 (insert ":" drawer ":\n:END:\n")
13560 (org-indent-region beg (point)))
13561 (end-of-line -1)))))
13562 (org-log-state-notes-insert-after-drawers
13563 (while (and (looking-at org-drawer-regexp)
13564 (progn (goto-char (match-end 0))
13565 (re-search-forward org-property-end-re end t)))
13566 (forward-line)))))
13567 (if (bolp) (point) (line-beginning-position 2)))))
13569 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13570 "Set up the post command hook to take a note.
13571 If this is about to TODO state change, the new state is expected in STATE.
13572 When FINDPOS is non-nil, find the correct position for the note in
13573 the current entry. If not, assume that it can be inserted at point.
13574 HOW is an indicator what kind of note should be created.
13575 EXTRA is additional text that will be inserted into the notes buffer."
13576 (org-with-wide-buffer
13577 (when findpos
13578 (goto-char (org-log-beginning t))
13579 (unless org-log-states-order-reversed
13580 (org-skip-over-state-notes)
13581 (skip-chars-backward " \t\n\r")
13582 (forward-line)))
13583 (move-marker org-log-note-marker (point))
13584 (setq org-log-note-purpose purpose
13585 org-log-note-state state
13586 org-log-note-previous-state prev-state
13587 org-log-note-how how
13588 org-log-note-extra extra
13589 org-log-note-effective-time (org-current-effective-time))
13590 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13592 (defun org-skip-over-state-notes ()
13593 "Skip past the list of State notes in an entry."
13594 (when (ignore-errors (goto-char (org-in-item-p)))
13595 (let* ((struct (org-list-struct))
13596 (prevs (org-list-prevs-alist struct))
13597 (regexp
13598 (concat "[ \t]*- +"
13599 (replace-regexp-in-string
13600 " +" " +"
13601 (org-replace-escapes
13602 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13603 `(("%d" . ,org-ts-regexp-inactive)
13604 ("%D" . ,org-ts-regexp)
13605 ("%s" . "\"\\S-+\"")
13606 ("%S" . "\"\\S-+\"")
13607 ("%t" . ,org-ts-regexp-inactive)
13608 ("%T" . ,org-ts-regexp)
13609 ("%u" . ".*?")
13610 ("%U" . ".*?")))))))
13611 (while (org-looking-at-p regexp)
13612 (goto-char (or (org-list-get-next-item (point) struct prevs)
13613 (org-list-get-item-end (point) struct)))))))
13615 (defun org-add-log-note (&optional purpose)
13616 "Pop up a window for taking a note, and add this note later at point."
13617 (remove-hook 'post-command-hook 'org-add-log-note)
13618 (setq org-log-note-window-configuration (current-window-configuration))
13619 (delete-other-windows)
13620 (move-marker org-log-note-return-to (point))
13621 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13622 (goto-char org-log-note-marker)
13623 (org-switch-to-buffer-other-window "*Org Note*")
13624 (erase-buffer)
13625 (if (memq org-log-note-how '(time state))
13626 (let (current-prefix-arg) (org-store-log-note))
13627 (let ((org-inhibit-startup t)) (org-mode))
13628 (insert (format "# Insert note for %s.
13629 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13630 (cond
13631 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13632 ((eq org-log-note-purpose 'done) "closed todo item")
13633 ((eq org-log-note-purpose 'state)
13634 (format "state change from \"%s\" to \"%s\""
13635 (or org-log-note-previous-state "")
13636 (or org-log-note-state "")))
13637 ((eq org-log-note-purpose 'reschedule)
13638 "rescheduling")
13639 ((eq org-log-note-purpose 'delschedule)
13640 "no longer scheduled")
13641 ((eq org-log-note-purpose 'redeadline)
13642 "changing deadline")
13643 ((eq org-log-note-purpose 'deldeadline)
13644 "removing deadline")
13645 ((eq org-log-note-purpose 'refile)
13646 "refiling")
13647 ((eq org-log-note-purpose 'note)
13648 "this entry")
13649 (t (error "This should not happen")))))
13650 (if org-log-note-extra (insert org-log-note-extra))
13651 (org-set-local 'org-finish-function 'org-store-log-note)
13652 (run-hooks 'org-log-buffer-setup-hook)))
13654 (defvar org-note-abort nil) ; dynamically scoped
13655 (defun org-store-log-note ()
13656 "Finish taking a log note, and insert it to where it belongs."
13657 (let ((txt (buffer-string)))
13658 (kill-buffer (current-buffer))
13659 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13660 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13661 (setq txt (replace-match "" t t txt)))
13662 (if (string-match "\\s-+\\'" txt)
13663 (setq txt (replace-match "" t t txt)))
13664 (setq lines (org-split-string txt "\n"))
13665 (when (and note (string-match "\\S-" note))
13666 (setq note
13667 (org-replace-escapes
13668 note
13669 (list (cons "%u" (user-login-name))
13670 (cons "%U" user-full-name)
13671 (cons "%t" (format-time-string
13672 (org-time-stamp-format 'long 'inactive)
13673 org-log-note-effective-time))
13674 (cons "%T" (format-time-string
13675 (org-time-stamp-format 'long nil)
13676 org-log-note-effective-time))
13677 (cons "%d" (format-time-string
13678 (org-time-stamp-format nil 'inactive)
13679 org-log-note-effective-time))
13680 (cons "%D" (format-time-string
13681 (org-time-stamp-format nil nil)
13682 org-log-note-effective-time))
13683 (cons "%s" (if org-log-note-state
13684 (concat "\"" org-log-note-state "\"")
13685 ""))
13686 (cons "%S" (if org-log-note-previous-state
13687 (concat "\"" org-log-note-previous-state "\"")
13688 "\"\"")))))
13689 (when lines (setq note (concat note " \\\\")))
13690 (push note lines))
13691 (when (or current-prefix-arg org-note-abort)
13692 (when (org-log-into-drawer)
13693 (org-remove-empty-drawer-at org-log-note-marker))
13694 (setq lines nil))
13695 (when lines
13696 (with-current-buffer (marker-buffer org-log-note-marker)
13697 (save-excursion
13698 (goto-char org-log-note-marker)
13699 (move-marker org-log-note-marker nil)
13700 ;; Make sure point is at the beginning of an empty line.
13701 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13702 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13703 ;; In an existing list, add a new item at the top level.
13704 ;; Otherwise, indent line like a regular one.
13705 (let ((itemp (org-in-item-p)))
13706 (if itemp
13707 (org-indent-line-to
13708 (let ((struct (save-excursion
13709 (goto-char itemp) (org-list-struct))))
13710 (org-list-get-ind (org-list-get-top-point struct) struct)))
13711 (org-indent-line)))
13712 (insert (org-list-bullet-string "-") (pop lines))
13713 (let ((ind (org-list-item-body-column (line-beginning-position))))
13714 (dolist (line lines)
13715 (insert "\n")
13716 (org-indent-line-to ind)
13717 (insert line)))
13718 (message "Note stored")
13719 (org-back-to-heading t)
13720 (org-cycle-hide-drawers 'children))
13721 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13722 ;; from within `org-add-log-note' because `buffer-undo-list'
13723 ;; is then modified outside of `org-with-remote-undo'.
13724 (when (eq this-command 'org-agenda-todo)
13725 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13726 ;; Don't add undo information when called from `org-agenda-todo'
13727 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13728 (set-window-configuration org-log-note-window-configuration)
13729 (with-current-buffer (marker-buffer org-log-note-return-to)
13730 (goto-char org-log-note-return-to))
13731 (move-marker org-log-note-return-to nil)
13732 (and org-log-post-message (message "%s" org-log-post-message))))
13734 (defun org-remove-empty-drawer-at (pos)
13735 "Remove an empty drawer at position POS.
13736 POS may also be a marker."
13737 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13738 (org-with-wide-buffer
13739 (goto-char pos)
13740 (let ((drawer (org-element-at-point)))
13741 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13742 (not (org-element-property :contents-begin drawer)))
13743 (delete-region (org-element-property :begin drawer)
13744 (progn (goto-char (org-element-property :end drawer))
13745 (skip-chars-backward " \r\t\n")
13746 (forward-line)
13747 (point))))))))
13749 (defvar org-ts-type nil)
13750 (defun org-sparse-tree (&optional arg type)
13751 "Create a sparse tree, prompt for the details.
13752 This command can create sparse trees. You first need to select the type
13753 of match used to create the tree:
13755 t Show all TODO entries.
13756 T Show entries with a specific TODO keyword.
13757 m Show entries selected by a tags/property match.
13758 p Enter a property name and its value (both with completion on existing
13759 names/values) and show entries with that property.
13760 r Show entries matching a regular expression (`/' can be used as well).
13761 b Show deadlines and scheduled items before a date.
13762 a Show deadlines and scheduled items after a date.
13763 d Show deadlines due within `org-deadline-warning-days'.
13764 D Show deadlines and scheduled items between a date range."
13765 (interactive "P")
13766 (setq type (or type org-sparse-tree-default-date-type))
13767 (setq org-ts-type type)
13768 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13769 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13770 [c]ycle through date types: %s"
13771 (case type
13772 (all "all timestamps")
13773 (scheduled "only scheduled")
13774 (deadline "only deadline")
13775 (active "only active timestamps")
13776 (inactive "only inactive timestamps")
13777 (scheduled-or-deadline "scheduled/deadline")
13778 (closed "with a closed time-stamp")
13779 (otherwise "scheduled/deadline")))
13780 (let ((answer (read-char-exclusive)))
13781 (case answer
13783 (org-sparse-tree
13785 (cadr (memq type '(scheduled-or-deadline all scheduled deadline active
13786 inactive closed)))))
13787 (?d (call-interactively 'org-check-deadlines))
13788 (?b (call-interactively 'org-check-before-date))
13789 (?a (call-interactively 'org-check-after-date))
13790 (?D (call-interactively 'org-check-dates-range))
13791 (?t (call-interactively 'org-show-todo-tree))
13792 (?T (org-show-todo-tree '(4)))
13793 (?m (call-interactively 'org-match-sparse-tree))
13794 ((?p ?P)
13795 (let* ((kwd (org-icompleting-read
13796 "Property: " (mapcar 'list (org-buffer-property-keys))))
13797 (value (org-icompleting-read
13798 "Value: " (mapcar 'list (org-property-values kwd)))))
13799 (unless (string-match "\\`{.*}\\'" value)
13800 (setq value (concat "\"" value "\"")))
13801 (org-match-sparse-tree arg (concat kwd "=" value))))
13802 ((?r ?R ?/) (call-interactively 'org-occur))
13803 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13805 (defvar org-occur-highlights nil
13806 "List of overlays used for occur matches.")
13807 (make-variable-buffer-local 'org-occur-highlights)
13808 (defvar org-occur-parameters nil
13809 "Parameters of the active org-occur calls.
13810 This is a list, each call to org-occur pushes as cons cell,
13811 containing the regular expression and the callback, onto the list.
13812 The list can contain several entries if `org-occur' has been called
13813 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13814 will only contain one set of parameters. When the highlights are
13815 removed (for example with `C-c C-c', or with the next edit (depending
13816 on `org-remove-highlights-with-change'), this variable is emptied
13817 as well.")
13818 (make-variable-buffer-local 'org-occur-parameters)
13820 (defun org-occur (regexp &optional keep-previous callback)
13821 "Make a compact tree which shows all matches of REGEXP.
13822 The tree will show the lines where the regexp matches, and all higher
13823 headlines above the match. It will also show the heading after the match,
13824 to make sure editing the matching entry is easy.
13825 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13826 call to `org-occur' will be kept, to allow stacking of calls to this
13827 command.
13828 If CALLBACK is non-nil, it is a function which is called to confirm
13829 that the match should indeed be shown."
13830 (interactive "sRegexp: \nP")
13831 (when (equal regexp "")
13832 (user-error "Regexp cannot be empty"))
13833 (unless keep-previous
13834 (org-remove-occur-highlights nil nil t))
13835 (push (cons regexp callback) org-occur-parameters)
13836 (let ((cnt 0))
13837 (save-excursion
13838 (goto-char (point-min))
13839 (if (or (not keep-previous) ; do not want to keep
13840 (not org-occur-highlights)) ; no previous matches
13841 ;; hide everything
13842 (org-overview))
13843 (while (re-search-forward regexp nil t)
13844 (when (or (not callback)
13845 (save-match-data (funcall callback)))
13846 (setq cnt (1+ cnt))
13847 (when org-highlight-sparse-tree-matches
13848 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13849 (org-show-context 'occur-tree))))
13850 (when org-remove-highlights-with-change
13851 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13852 nil 'local))
13853 (unless org-sparse-tree-open-archived-trees
13854 (org-hide-archived-subtrees (point-min) (point-max)))
13855 (run-hooks 'org-occur-hook)
13856 (if (org-called-interactively-p 'interactive)
13857 (message "%d match(es) for regexp %s" cnt regexp))
13858 cnt))
13860 (defun org-occur-next-match (&optional n reset)
13861 "Function for `next-error-function' to find sparse tree matches.
13862 N is the number of matches to move, when negative move backwards.
13863 RESET is entirely ignored - this function always goes back to the
13864 starting point when no match is found."
13865 (let* ((limit (if (< n 0) (point-min) (point-max)))
13866 (search-func (if (< n 0)
13867 'previous-single-char-property-change
13868 'next-single-char-property-change))
13869 (n (abs n))
13870 (pos (point))
13872 (catch 'exit
13873 (while (setq p1 (funcall search-func (point) 'org-type))
13874 (when (equal p1 limit)
13875 (goto-char pos)
13876 (user-error "No more matches"))
13877 (when (equal (get-char-property p1 'org-type) 'org-occur)
13878 (setq n (1- n))
13879 (when (= n 0)
13880 (goto-char p1)
13881 (throw 'exit (point))))
13882 (goto-char p1))
13883 (goto-char p1)
13884 (user-error "No more matches"))))
13886 (defun org-show-context (&optional key)
13887 "Make sure point and context are visible.
13888 How much context is shown depends upon the variables
13889 `org-show-hierarchy-above', `org-show-following-heading',
13890 `org-show-entry-below' and `org-show-siblings'."
13891 (let ((heading-p (org-at-heading-p t))
13892 (hierarchy-p (org-get-alist-option org-show-hierarchy-above key))
13893 (following-p (org-get-alist-option org-show-following-heading key))
13894 (entry-p (org-get-alist-option org-show-entry-below key))
13895 (siblings-p (org-get-alist-option org-show-siblings key)))
13896 ;; Show heading or entry text
13897 (if (and heading-p (not entry-p))
13898 (org-flag-heading nil) ; only show the heading
13899 (and (or entry-p (outline-invisible-p) (org-invisible-p2))
13900 (org-show-hidden-entry))) ; show entire entry
13901 (when following-p
13902 ;; Show next sibling, or heading below text
13903 (save-excursion
13904 (and (if heading-p (org-goto-sibling) (outline-next-heading))
13905 (org-flag-heading nil))))
13906 (when siblings-p (org-show-siblings))
13907 (when hierarchy-p
13908 ;; show all higher headings, possibly with siblings
13909 (save-excursion
13910 (while (and (ignore-errors (progn (org-up-heading-all 1) t))
13911 (not (bobp)))
13912 (org-flag-heading nil)
13913 (when siblings-p (org-show-siblings)))))))
13915 (defvar org-reveal-start-hook nil
13916 "Hook run before revealing a location.")
13918 (defun org-reveal (&optional siblings)
13919 "Show current entry, hierarchy above it, and the following headline.
13920 This can be used to show a consistent set of context around locations
13921 exposed with `org-show-hierarchy-above' or `org-show-following-heading'
13922 not t for the search context.
13924 With optional argument SIBLINGS, on each level of the hierarchy all
13925 siblings are shown. This repairs the tree structure to what it would
13926 look like when opened with hierarchical calls to `org-cycle'.
13927 With double optional argument \\[universal-argument] \\[universal-argument], \
13928 go to the parent and show the
13929 entire tree."
13930 (interactive "P")
13931 (run-hooks 'org-reveal-start-hook)
13932 (let ((org-show-hierarchy-above t)
13933 (org-show-following-heading t)
13934 (org-show-siblings (if siblings t org-show-siblings)))
13935 (org-show-context nil))
13936 (when (equal siblings '(16))
13937 (save-excursion
13938 (when (org-up-heading-safe)
13939 (org-show-subtree)
13940 (run-hook-with-args 'org-cycle-hook 'subtree)))))
13942 (defun org-highlight-new-match (beg end)
13943 "Highlight from BEG to END and mark the highlight is an occur headline."
13944 (let ((ov (make-overlay beg end)))
13945 (overlay-put ov 'face 'secondary-selection)
13946 (overlay-put ov 'org-type 'org-occur)
13947 (push ov org-occur-highlights)))
13949 (defun org-remove-occur-highlights (&optional beg end noremove)
13950 "Remove the occur highlights from the buffer.
13951 BEG and END are ignored. If NOREMOVE is nil, remove this function
13952 from the `before-change-functions' in the current buffer."
13953 (interactive)
13954 (unless org-inhibit-highlight-removal
13955 (mapc 'delete-overlay org-occur-highlights)
13956 (setq org-occur-highlights nil)
13957 (setq org-occur-parameters nil)
13958 (unless noremove
13959 (remove-hook 'before-change-functions
13960 'org-remove-occur-highlights 'local))))
13962 ;;;; Priorities
13964 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
13965 "Regular expression matching the priority indicator.")
13967 (defvar org-remove-priority-next-time nil)
13969 (defun org-priority-up ()
13970 "Increase the priority of the current item."
13971 (interactive)
13972 (org-priority 'up))
13974 (defun org-priority-down ()
13975 "Decrease the priority of the current item."
13976 (interactive)
13977 (org-priority 'down))
13979 (defun org-priority (&optional action show)
13980 "Change the priority of an item.
13981 ACTION can be `set', `up', `down', or a character."
13982 (interactive "P")
13983 (if (equal action '(4))
13984 (org-show-priority)
13985 (unless org-enable-priority-commands
13986 (user-error "Priority commands are disabled"))
13987 (setq action (or action 'set))
13988 (let (current new news have remove)
13989 (save-excursion
13990 (org-back-to-heading t)
13991 (if (looking-at org-priority-regexp)
13992 (setq current (string-to-char (match-string 2))
13993 have t))
13994 (cond
13995 ((eq action 'remove)
13996 (setq remove t new ?\ ))
13997 ((or (eq action 'set)
13998 (if (featurep 'xemacs) (characterp action) (integerp action)))
13999 (if (not (eq action 'set))
14000 (setq new action)
14001 (message "Priority %c-%c, SPC to remove: "
14002 org-highest-priority org-lowest-priority)
14003 (save-match-data
14004 (setq new (read-char-exclusive))))
14005 (if (and (= (upcase org-highest-priority) org-highest-priority)
14006 (= (upcase org-lowest-priority) org-lowest-priority))
14007 (setq new (upcase new)))
14008 (cond ((equal new ?\ ) (setq remove t))
14009 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14010 (user-error "Priority must be between `%c' and `%c'"
14011 org-highest-priority org-lowest-priority))))
14012 ((eq action 'up)
14013 (setq new (if have
14014 (1- current) ; normal cycling
14015 ;; last priority was empty
14016 (if (eq last-command this-command)
14017 org-lowest-priority ; wrap around empty to lowest
14018 ;; default
14019 (if org-priority-start-cycle-with-default
14020 org-default-priority
14021 (1- org-default-priority))))))
14022 ((eq action 'down)
14023 (setq new (if have
14024 (1+ current) ; normal cycling
14025 ;; last priority was empty
14026 (if (eq last-command this-command)
14027 org-highest-priority ; wrap around empty to highest
14028 ;; default
14029 (if org-priority-start-cycle-with-default
14030 org-default-priority
14031 (1+ org-default-priority))))))
14032 (t (user-error "Invalid action")))
14033 (if (or (< (upcase new) org-highest-priority)
14034 (> (upcase new) org-lowest-priority))
14035 (if (and (memq action '(up down))
14036 (not have) (not (eq last-command this-command)))
14037 ;; `new' is from default priority
14038 (error
14039 "The default can not be set, see `org-default-priority' why")
14040 ;; normal cycling: `new' is beyond highest/lowest priority
14041 ;; and is wrapped around to the empty priority
14042 (setq remove t)))
14043 (setq news (format "%c" new))
14044 (if have
14045 (if remove
14046 (replace-match "" t t nil 1)
14047 (replace-match news t t nil 2))
14048 (if remove
14049 (user-error "No priority cookie found in line")
14050 (let ((case-fold-search nil))
14051 (looking-at org-todo-line-regexp))
14052 (if (match-end 2)
14053 (progn
14054 (goto-char (match-end 2))
14055 (insert " [#" news "]"))
14056 (goto-char (match-beginning 3))
14057 (insert "[#" news "] "))))
14058 (org-set-tags nil 'align))
14059 (if remove
14060 (message "Priority removed")
14061 (message "Priority of current item set to %s" news)))))
14063 (defun org-show-priority ()
14064 "Show the priority of the current item.
14065 This priority is composed of the main priority given with the [#A] cookies,
14066 and by additional input from the age of a schedules or deadline entry."
14067 (interactive)
14068 (let ((pri (if (eq major-mode 'org-agenda-mode)
14069 (org-get-at-bol 'priority)
14070 (save-excursion
14071 (save-match-data
14072 (beginning-of-line)
14073 (and (looking-at org-heading-regexp)
14074 (org-get-priority (match-string 0))))))))
14075 (message "Priority is %d" (if pri pri -1000))))
14077 (defun org-get-priority (s)
14078 "Find priority cookie and return priority."
14079 (save-match-data
14080 (if (functionp org-get-priority-function)
14081 (funcall org-get-priority-function)
14082 (if (not (string-match org-priority-regexp s))
14083 (* 1000 (- org-lowest-priority org-default-priority))
14084 (* 1000 (- org-lowest-priority
14085 (string-to-char (match-string 2 s))))))))
14087 ;;;; Tags
14089 (defvar org-agenda-archives-mode)
14090 (defvar org-map-continue-from nil
14091 "Position from where mapping should continue.
14092 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14094 (defvar org-scanner-tags nil
14095 "The current tag list while the tags scanner is running.")
14096 (defvar org-trust-scanner-tags nil
14097 "Should `org-get-tags-at' use the tags for the scanner.
14098 This is for internal dynamical scoping only.
14099 When this is non-nil, the function `org-get-tags-at' will return the value
14100 of `org-scanner-tags' instead of building the list by itself. This
14101 can lead to large speed-ups when the tags scanner is used in a file with
14102 many entries, and when the list of tags is retrieved, for example to
14103 obtain a list of properties. Building the tags list for each entry in such
14104 a file becomes an N^2 operation - but with this variable set, it scales
14105 as N.")
14107 (defun org-scan-tags (action matcher todo-only &optional start-level)
14108 "Scan headline tags with inheritance and produce output ACTION.
14110 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14111 or `agenda' to produce an entry list for an agenda view. It can also be
14112 a Lisp form or a function that should be called at each matched headline, in
14113 this case the return value is a list of all return values from these calls.
14115 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14116 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14117 only lines with a not-done TODO keyword are included in the output.
14118 This should be the same variable that was scoped into
14119 and set by `org-make-tags-matcher' when it constructed MATCHER.
14121 START-LEVEL can be a string with asterisks, reducing the scope to
14122 headlines matching this string."
14123 (require 'org-agenda)
14124 (let* ((re (concat "^"
14125 (if start-level
14126 ;; Get the correct level to match
14127 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14128 org-outline-regexp)
14129 " *\\(\\<\\("
14130 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14131 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14132 (props (list 'face 'default
14133 'done-face 'org-agenda-done
14134 'undone-face 'default
14135 'mouse-face 'highlight
14136 'org-not-done-regexp org-not-done-regexp
14137 'org-todo-regexp org-todo-regexp
14138 'org-complex-heading-regexp org-complex-heading-regexp
14139 'help-echo
14140 (format "mouse-2 or RET jump to org file %s"
14141 (abbreviate-file-name
14142 (or (buffer-file-name (buffer-base-buffer))
14143 (buffer-name (buffer-base-buffer)))))))
14144 (org-map-continue-from nil)
14145 lspos tags tags-list
14146 (tags-alist (list (cons 0 org-file-tags)))
14147 (llast 0) rtn rtn1 level category i txt
14148 todo marker entry priority)
14149 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14150 (setq action (list 'lambda nil action)))
14151 (save-excursion
14152 (goto-char (point-min))
14153 (when (eq action 'sparse-tree)
14154 (org-overview)
14155 (org-remove-occur-highlights))
14156 (while (let (case-fold-search)
14157 (re-search-forward re nil t))
14158 (setq org-map-continue-from nil)
14159 (catch :skip
14160 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14161 tags (if (match-end 4) (org-match-string-no-properties 4)))
14162 (goto-char (setq lspos (match-beginning 0)))
14163 (setq level (org-reduced-level (org-outline-level))
14164 category (org-get-category))
14165 (setq i llast llast level)
14166 ;; remove tag lists from same and sublevels
14167 (while (>= i level)
14168 (when (setq entry (assoc i tags-alist))
14169 (setq tags-alist (delete entry tags-alist)))
14170 (setq i (1- i)))
14171 ;; add the next tags
14172 (when tags
14173 (setq tags (org-split-string tags ":")
14174 tags-alist
14175 (cons (cons level tags) tags-alist)))
14176 ;; compile tags for current headline
14177 (setq tags-list
14178 (if org-use-tag-inheritance
14179 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14180 tags)
14181 org-scanner-tags tags-list)
14182 (when org-use-tag-inheritance
14183 (setcdr (car tags-alist)
14184 (mapcar (lambda (x)
14185 (setq x (copy-sequence x))
14186 (org-add-prop-inherited x))
14187 (cdar tags-alist))))
14188 (when (and tags org-use-tag-inheritance
14189 (or (not (eq t org-use-tag-inheritance))
14190 org-tags-exclude-from-inheritance))
14191 ;; selective inheritance, remove uninherited ones
14192 (setcdr (car tags-alist)
14193 (org-remove-uninherited-tags (cdar tags-alist))))
14194 (when (and
14196 ;; eval matcher only when the todo condition is OK
14197 (and (or (not todo-only) (member todo org-not-done-keywords))
14198 (let ((case-fold-search t) (org-trust-scanner-tags t))
14199 (eval matcher)))
14201 ;; Call the skipper, but return t if it does not skip,
14202 ;; so that the `and' form continues evaluating
14203 (progn
14204 (unless (eq action 'sparse-tree) (org-agenda-skip))
14207 ;; Check if timestamps are deselecting this entry
14208 (or (not todo-only)
14209 (and (member todo org-not-done-keywords)
14210 (or (not org-agenda-tags-todo-honor-ignore-options)
14211 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14213 ;; select this headline
14214 (cond
14215 ((eq action 'sparse-tree)
14216 (and org-highlight-sparse-tree-matches
14217 (org-get-heading) (match-end 0)
14218 (org-highlight-new-match
14219 (match-beginning 1) (match-end 1)))
14220 (org-show-context 'tags-tree))
14221 ((eq action 'agenda)
14222 (setq txt (org-agenda-format-item
14224 (concat
14225 (if (eq org-tags-match-list-sublevels 'indented)
14226 (make-string (1- level) ?.) "")
14227 (org-get-heading))
14228 level category
14229 tags-list)
14230 priority (org-get-priority txt))
14231 (goto-char lspos)
14232 (setq marker (org-agenda-new-marker))
14233 (org-add-props txt props
14234 'org-marker marker 'org-hd-marker marker 'org-category category
14235 'todo-state todo
14236 'priority priority 'type "tagsmatch")
14237 (push txt rtn))
14238 ((functionp action)
14239 (setq org-map-continue-from nil)
14240 (save-excursion
14241 (setq rtn1 (funcall action))
14242 (push rtn1 rtn)))
14243 (t (user-error "Invalid action")))
14245 ;; if we are to skip sublevels, jump to end of subtree
14246 (unless org-tags-match-list-sublevels
14247 (org-end-of-subtree t)
14248 (backward-char 1))))
14249 ;; Get the correct position from where to continue
14250 (if org-map-continue-from
14251 (goto-char org-map-continue-from)
14252 (and (= (point) lspos) (end-of-line 1)))))
14253 (when (and (eq action 'sparse-tree)
14254 (not org-sparse-tree-open-archived-trees))
14255 (org-hide-archived-subtrees (point-min) (point-max)))
14256 (nreverse rtn)))
14258 (defun org-remove-uninherited-tags (tags)
14259 "Remove all tags that are not inherited from the list TAGS."
14260 (cond
14261 ((eq org-use-tag-inheritance t)
14262 (if org-tags-exclude-from-inheritance
14263 (org-delete-all org-tags-exclude-from-inheritance tags)
14264 tags))
14265 ((not org-use-tag-inheritance) nil)
14266 ((stringp org-use-tag-inheritance)
14267 (delq nil (mapcar
14268 (lambda (x)
14269 (if (and (string-match org-use-tag-inheritance x)
14270 (not (member x org-tags-exclude-from-inheritance)))
14271 x nil))
14272 tags)))
14273 ((listp org-use-tag-inheritance)
14274 (delq nil (mapcar
14275 (lambda (x)
14276 (if (member x org-use-tag-inheritance) x nil))
14277 tags)))))
14279 (defun org-match-sparse-tree (&optional todo-only match)
14280 "Create a sparse tree according to tags string MATCH.
14281 MATCH can contain positive and negative selection of tags, like
14282 \"+WORK+URGENT-WITHBOSS\".
14283 If optional argument TODO-ONLY is non-nil, only select lines that are
14284 also TODO lines."
14285 (interactive "P")
14286 (org-agenda-prepare-buffers (list (current-buffer)))
14287 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14289 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14291 (defvar org-cached-props nil)
14292 (defun org-cached-entry-get (pom property)
14293 (if (or (eq t org-use-property-inheritance)
14294 (and (stringp org-use-property-inheritance)
14295 (string-match org-use-property-inheritance property))
14296 (and (listp org-use-property-inheritance)
14297 (member property org-use-property-inheritance)))
14298 ;; Caching is not possible, check it directly
14299 (org-entry-get pom property 'inherit)
14300 ;; Get all properties, so that we can do complicated checks easily
14301 (cdr (assoc property (or org-cached-props
14302 (setq org-cached-props
14303 (org-entry-properties pom)))))))
14305 (defun org-global-tags-completion-table (&optional files)
14306 "Return the list of all tags in all agenda buffer/files.
14307 Optional FILES argument is a list of files which can be used
14308 instead of the agenda files."
14309 (save-excursion
14310 (org-uniquify
14311 (delq nil
14312 (apply 'append
14313 (mapcar
14314 (lambda (file)
14315 (set-buffer (find-file-noselect file))
14316 (append (org-get-buffer-tags)
14317 (mapcar (lambda (x) (if (stringp (car-safe x))
14318 (list (car-safe x)) nil))
14319 org-tag-alist)))
14320 (if (and files (car files))
14321 files
14322 (org-agenda-files))))))))
14324 (defun org-make-tags-matcher (match)
14325 "Create the TAGS/TODO matcher form for the selection string MATCH.
14327 The variable `todo-only' is scoped dynamically into this function.
14328 It will be set to t if the matcher restricts matching to TODO entries,
14329 otherwise will not be touched.
14331 Returns a cons of the selection string MATCH and the constructed
14332 lisp form implementing the matcher. The matcher is to be evaluated
14333 at an Org entry, with point on the headline, and returns t if the
14334 entry matches the selection string MATCH. The returned lisp form
14335 references two variables with information about the entry, which
14336 must be bound around the form's evaluation: todo, the TODO keyword
14337 at the entry (or nil of none); and tags-list, the list of all tags
14338 at the entry including inherited ones. Additionally, the category
14339 of the entry (if any) must be specified as the text property
14340 'org-category on the headline.
14342 See also `org-scan-tags'.
14344 (declare (special todo-only))
14345 (unless (boundp 'todo-only)
14346 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14347 (unless match
14348 ;; Get a new match request, with completion against the global
14349 ;; tags table and the local tags in current buffer
14350 (let ((org-last-tags-completion-table
14351 (org-uniquify
14352 (delq nil (append (org-get-buffer-tags)
14353 (org-global-tags-completion-table))))))
14354 (setq match (org-completing-read-no-i
14355 "Match: " 'org-tags-completion-function nil nil nil
14356 'org-tags-history))))
14358 ;; Parse the string and create a lisp form
14359 (let ((match0 match)
14360 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14361 minus tag mm
14362 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14363 orterms term orlist re-p str-p level-p level-op time-p
14364 prop-p pn pv po gv rest (start 0) (ss 0))
14365 ;; Expand group tags
14366 (setq match (org-tags-expand match))
14368 ;; Check if there is a TODO part of this match, which would be the
14369 ;; part after a "/". TO make sure that this slash is not part of
14370 ;; a property value to be matched against, we also check that there
14371 ;; is no " after that slash.
14372 ;; First, find the last slash
14373 (while (string-match "/+" match ss)
14374 (setq start (match-beginning 0) ss (match-end 0)))
14375 (if (and (string-match "/+" match start)
14376 (not (save-match-data (string-match "\"" match start))))
14377 ;; match contains also a todo-matching request
14378 (progn
14379 (setq tagsmatch (substring match 0 (match-beginning 0))
14380 todomatch (substring match (match-end 0)))
14381 (if (string-match "^!" todomatch)
14382 (setq todo-only t todomatch (substring todomatch 1)))
14383 (if (string-match "^\\s-*$" todomatch)
14384 (setq todomatch nil)))
14385 ;; only matching tags
14386 (setq tagsmatch match todomatch nil))
14388 ;; Make the tags matcher
14389 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14390 (setq tagsmatcher t)
14391 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14392 (while (setq term (pop orterms))
14393 (while (and (equal (substring term -1) "\\") orterms)
14394 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14395 (while (string-match re term)
14396 (setq rest (substring term (match-end 0))
14397 minus (and (match-end 1)
14398 (equal (match-string 1 term) "-"))
14399 tag (save-match-data (replace-regexp-in-string
14400 "\\\\-" "-"
14401 (match-string 2 term)))
14402 re-p (equal (string-to-char tag) ?{)
14403 level-p (match-end 4)
14404 prop-p (match-end 5)
14405 mm (cond
14406 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14407 (level-p
14408 (setq level-op (org-op-to-function (match-string 3 term)))
14409 `(,level-op level ,(string-to-number
14410 (match-string 4 term))))
14411 (prop-p
14412 (setq pn (match-string 5 term)
14413 po (match-string 6 term)
14414 pv (match-string 7 term)
14415 re-p (equal (string-to-char pv) ?{)
14416 str-p (equal (string-to-char pv) ?\")
14417 time-p (save-match-data
14418 (string-match "^\"[[<].*[]>]\"$" pv))
14419 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14420 (if time-p (setq pv (org-matcher-time pv)))
14421 (setq po (org-op-to-function po (if time-p 'time str-p)))
14422 (cond
14423 ((equal pn "CATEGORY")
14424 (setq gv '(get-text-property (point) 'org-category)))
14425 ((equal pn "TODO")
14426 (setq gv 'todo))
14428 (setq gv `(org-cached-entry-get nil ,pn))))
14429 (if re-p
14430 (if (eq po 'org<>)
14431 `(not (string-match ,pv (or ,gv "")))
14432 `(string-match ,pv (or ,gv "")))
14433 (if str-p
14434 `(,po (or ,gv "") ,pv)
14435 `(,po (string-to-number (or ,gv ""))
14436 ,(string-to-number pv) ))))
14437 (t `(member ,tag tags-list)))
14438 mm (if minus (list 'not mm) mm)
14439 term rest)
14440 (push mm tagsmatcher))
14441 (push (if (> (length tagsmatcher) 1)
14442 (cons 'and tagsmatcher)
14443 (car tagsmatcher))
14444 orlist)
14445 (setq tagsmatcher nil))
14446 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14447 (setq tagsmatcher
14448 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14449 ;; Make the todo matcher
14450 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14451 (setq todomatcher t)
14452 (setq orterms (org-split-string todomatch "|") orlist nil)
14453 (while (setq term (pop orterms))
14454 (while (string-match re term)
14455 (setq minus (and (match-end 1)
14456 (equal (match-string 1 term) "-"))
14457 kwd (match-string 2 term)
14458 re-p (equal (string-to-char kwd) ?{)
14459 term (substring term (match-end 0))
14460 mm (if re-p
14461 `(string-match ,(substring kwd 1 -1) todo)
14462 (list 'equal 'todo kwd))
14463 mm (if minus (list 'not mm) mm))
14464 (push mm todomatcher))
14465 (push (if (> (length todomatcher) 1)
14466 (cons 'and todomatcher)
14467 (car todomatcher))
14468 orlist)
14469 (setq todomatcher nil))
14470 (setq todomatcher (if (> (length orlist) 1)
14471 (cons 'or orlist) (car orlist))))
14473 ;; Return the string and lisp forms of the matcher
14474 (setq matcher (if todomatcher
14475 (list 'and tagsmatcher todomatcher)
14476 tagsmatcher))
14477 (when todo-only
14478 (setq matcher (list 'and '(member todo org-not-done-keywords)
14479 matcher)))
14480 (cons match0 matcher)))
14482 (defun org-tags-expand (match &optional single-as-list downcased)
14483 "Expand group tags in MATCH.
14485 This replaces every group tag in MATCH with a regexp tag search.
14486 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14487 will be replaced like this:
14489 Work => {\\(?:Work\\|Lab\\|Conf\\)}
14490 +Work => +{\\(?:Work\\|Lab\\|Conf\\)}
14491 -Work => -{\\(?:Work\\|Lab\\|Conf\\)}
14493 Replacing by a regexp preserves the structure of the match.
14494 E.g., this expansion
14496 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14498 will match anything tagged with \"Lab\" and \"Home\", or tagged
14499 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14501 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14502 assumed to be a single group tag, and the function will return
14503 the list of tags in this group.
14505 When DOWNCASE is non-nil, expand downcased TAGS."
14506 (if org-group-tags
14507 (let* ((case-fold-search t)
14508 (stable org-mode-syntax-table)
14509 (tal (or org-tag-groups-alist-for-agenda
14510 org-tag-groups-alist))
14511 (tal (if downcased
14512 (mapcar (lambda(tg) (mapcar 'downcase tg)) tal) tal))
14513 (tml (mapcar 'car tal))
14514 (rtnmatch match) rpl)
14515 ;; @ and _ are allowed as word-components in tags
14516 (modify-syntax-entry ?@ "w" stable)
14517 (modify-syntax-entry ?_ "w" stable)
14518 (while (and tml
14519 (with-syntax-table stable
14520 (string-match
14521 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14522 (regexp-opt tml) "\\>\\)") rtnmatch)))
14523 (let* ((dir (match-string 1 rtnmatch))
14524 (tag (match-string 2 rtnmatch))
14525 (tag (if downcased (downcase tag) tag)))
14526 (setq tml (delete tag tml))
14527 (when (not (get-text-property 0 'grouptag (match-string 2 rtnmatch)))
14528 (setq rpl (append (org-uniquify rpl) (assoc tag tal)))
14529 (setq rpl (concat dir "{\\<" (regexp-opt rpl) "\\>}"))
14530 (if (stringp rpl) (org-add-props rpl '(grouptag t)))
14531 (setq rtnmatch (replace-match rpl t t rtnmatch)))))
14532 (if single-as-list
14533 (or (reverse rpl) (list rtnmatch))
14534 rtnmatch))
14535 (if single-as-list (list (if downcased (downcase match) match))
14536 match)))
14538 (defun org-op-to-function (op &optional stringp)
14539 "Turn an operator into the appropriate function."
14540 (setq op
14541 (cond
14542 ((equal op "<" ) '(< string< org-time<))
14543 ((equal op ">" ) '(> org-string> org-time>))
14544 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14545 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14546 ((member op '("=" "==")) '(= string= org-time=))
14547 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14548 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14550 (defun org<> (a b) (not (= a b)))
14551 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14552 (defun org-string>= (a b) (not (string< a b)))
14553 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14554 (defun org-string<> (a b) (not (string= a b)))
14555 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14556 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14557 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14558 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14559 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14560 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14561 (defun org-2ft (s)
14562 "Convert S to a floating point time.
14563 If S is already a number, just return it. If it is a string, parse
14564 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14565 (cond
14566 ((numberp s) s)
14567 ((stringp s)
14568 (condition-case nil
14569 (float-time (apply 'encode-time (org-parse-time-string s)))
14570 (error 0.)))
14571 (t 0.)))
14573 (defun org-time-today ()
14574 "Time in seconds today at 0:00.
14575 Returns the float number of seconds since the beginning of the
14576 epoch to the beginning of today (00:00)."
14577 (float-time (apply 'encode-time
14578 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14580 (defun org-matcher-time (s)
14581 "Interpret a time comparison value."
14582 (save-match-data
14583 (cond
14584 ((string= s "<now>") (float-time))
14585 ((string= s "<today>") (org-time-today))
14586 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14587 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14588 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14589 (+ (org-time-today)
14590 (* (string-to-number (match-string 1 s))
14591 (cdr (assoc (match-string 2 s)
14592 '(("d" . 86400.0) ("w" . 604800.0)
14593 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14594 (t (org-2ft s)))))
14596 (defun org-match-any-p (re list)
14597 "Does re match any element of list?"
14598 (setq list (mapcar (lambda (x) (string-match re x)) list))
14599 (delq nil list))
14601 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14602 (defvar org-tags-overlay (make-overlay 1 1))
14603 (org-detach-overlay org-tags-overlay)
14605 (defun org-get-local-tags-at (&optional pos)
14606 "Get a list of tags defined in the current headline."
14607 (org-get-tags-at pos 'local))
14609 (defun org-get-local-tags ()
14610 "Get a list of tags defined in the current headline."
14611 (org-get-tags-at nil 'local))
14613 (defun org-get-tags-at (&optional pos local)
14614 "Get a list of all headline tags applicable at POS.
14615 POS defaults to point. If tags are inherited, the list contains
14616 the targets in the same sequence as the headlines appear, i.e.
14617 the tags of the current headline come last.
14618 When LOCAL is non-nil, only return tags from the current headline,
14619 ignore inherited ones."
14620 (interactive)
14621 (if (and org-trust-scanner-tags
14622 (or (not pos) (equal pos (point)))
14623 (not local))
14624 org-scanner-tags
14625 (let (tags ltags lastpos parent)
14626 (save-excursion
14627 (save-restriction
14628 (widen)
14629 (goto-char (or pos (point)))
14630 (save-match-data
14631 (catch 'done
14632 (condition-case nil
14633 (progn
14634 (org-back-to-heading t)
14635 (while (not (equal lastpos (point)))
14636 (setq lastpos (point))
14637 (when (looking-at
14638 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14639 (setq ltags (org-split-string
14640 (org-match-string-no-properties 1) ":"))
14641 (when parent
14642 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14643 (setq tags (append
14644 (if parent
14645 (org-remove-uninherited-tags ltags)
14646 ltags)
14647 tags)))
14648 (or org-use-tag-inheritance (throw 'done t))
14649 (if local (throw 'done t))
14650 (or (org-up-heading-safe) (error nil))
14651 (setq parent t)))
14652 (error nil)))))
14653 (if local
14654 tags
14655 (reverse (delete-dups
14656 (reverse (append
14657 (org-remove-uninherited-tags
14658 org-file-tags) tags)))))))))
14660 (defun org-add-prop-inherited (s)
14661 (add-text-properties 0 (length s) '(inherited t) s)
14664 (defun org-toggle-tag (tag &optional onoff)
14665 "Toggle the tag TAG for the current line.
14666 If ONOFF is `on' or `off', don't toggle but set to this state."
14667 (let (res current)
14668 (save-excursion
14669 (org-back-to-heading t)
14670 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14671 (point-at-eol) t)
14672 (progn
14673 (setq current (match-string 1))
14674 (replace-match ""))
14675 (setq current ""))
14676 (setq current (nreverse (org-split-string current ":")))
14677 (cond
14678 ((eq onoff 'on)
14679 (setq res t)
14680 (or (member tag current) (push tag current)))
14681 ((eq onoff 'off)
14682 (or (not (member tag current)) (setq current (delete tag current))))
14683 (t (if (member tag current)
14684 (setq current (delete tag current))
14685 (setq res t)
14686 (push tag current))))
14687 (end-of-line 1)
14688 (if current
14689 (progn
14690 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14691 (org-set-tags nil t))
14692 (delete-horizontal-space))
14693 (run-hooks 'org-after-tags-change-hook))
14694 res))
14696 (defun org-align-tags-here (to-col)
14697 ;; Assumes that this is a headline
14698 "Align tags on the current headline to TO-COL."
14699 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14700 (beginning-of-line 1)
14701 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14702 (< pos (match-beginning 2)))
14703 (progn
14704 (setq tags-l (- (match-end 2) (match-beginning 2)))
14705 (goto-char (match-beginning 1))
14706 (insert " ")
14707 (delete-region (point) (1+ (match-beginning 2)))
14708 (setq ncol (max (current-column)
14709 (1+ col)
14710 (if (> to-col 0)
14711 to-col
14712 (- (abs to-col) tags-l))))
14713 (setq p (point))
14714 (insert (make-string (- ncol (current-column)) ?\ ))
14715 (setq ncol (current-column))
14716 (when indent-tabs-mode (tabify p (point-at-eol)))
14717 (org-move-to-column (min ncol col)))
14718 (goto-char pos))))
14720 (defun org-set-tags-command (&optional arg just-align)
14721 "Call the set-tags command for the current entry."
14722 (interactive "P")
14723 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14724 (org-set-tags arg just-align)
14725 (save-excursion
14726 (unless (and (org-region-active-p)
14727 org-loop-over-headlines-in-active-region)
14728 (org-back-to-heading t))
14729 (org-set-tags arg just-align))))
14731 (defun org-set-tags-to (data)
14732 "Set the tags of the current entry to DATA, replacing the current tags.
14733 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14734 If DATA is nil or the empty string, any tags will be removed."
14735 (interactive "sTags: ")
14736 (setq data
14737 (cond
14738 ((eq data nil) "")
14739 ((equal data "") "")
14740 ((stringp data)
14741 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14742 ":"))
14743 ((listp data)
14744 (concat ":" (mapconcat 'identity data ":") ":"))))
14745 (when data
14746 (save-excursion
14747 (org-back-to-heading t)
14748 (when (looking-at org-complex-heading-regexp)
14749 (if (match-end 5)
14750 (progn
14751 (goto-char (match-beginning 5))
14752 (insert data)
14753 (delete-region (point) (point-at-eol))
14754 (org-set-tags nil 'align))
14755 (goto-char (point-at-eol))
14756 (insert " " data)
14757 (org-set-tags nil 'align)))
14758 (beginning-of-line 1)
14759 (if (looking-at ".*?\\([ \t]+\\)$")
14760 (delete-region (match-beginning 1) (match-end 1))))))
14762 (defun org-align-all-tags ()
14763 "Align the tags i all headings."
14764 (interactive)
14765 (save-excursion
14766 (or (ignore-errors (org-back-to-heading t))
14767 (outline-next-heading))
14768 (if (org-at-heading-p)
14769 (org-set-tags t)
14770 (message "No headings"))))
14772 (defvar org-indent-indentation-per-level)
14773 (defun org-set-tags (&optional arg just-align)
14774 "Set the tags for the current headline.
14775 With prefix ARG, realign all tags in headings in the current buffer.
14776 When JUST-ALIGN is non-nil, only align tags."
14777 (interactive "P")
14778 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14779 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14780 'region-start-level 'region))
14781 org-loop-over-headlines-in-active-region)
14782 (org-map-entries
14783 ;; We don't use ARG and JUST-ALIGN here because these args
14784 ;; are not useful when looping over headlines.
14785 `(org-set-tags)
14786 org-loop-over-headlines-in-active-region
14787 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
14788 (let* ((re org-outline-regexp-bol)
14789 (current (unless arg (org-get-tags-string)))
14790 (col (current-column))
14791 (org-setting-tags t)
14792 table current-tags inherited-tags ; computed below when needed
14793 tags p0 c0 c1 rpl di tc level)
14794 (if arg
14795 (save-excursion
14796 (goto-char (point-min))
14797 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14798 (while (re-search-forward re nil t)
14799 (org-set-tags nil t)
14800 (end-of-line 1)))
14801 (message "All tags realigned to column %d" org-tags-column))
14802 (if just-align
14803 (setq tags current)
14804 ;; Get a new set of tags from the user
14805 (save-excursion
14806 (setq table (append org-tag-persistent-alist
14807 (or org-tag-alist (org-get-buffer-tags))
14808 (and
14809 org-complete-tags-always-offer-all-agenda-tags
14810 (org-global-tags-completion-table
14811 (org-agenda-files))))
14812 org-last-tags-completion-table table
14813 current-tags (org-split-string current ":")
14814 inherited-tags (nreverse
14815 (nthcdr (length current-tags)
14816 (nreverse (org-get-tags-at))))
14817 tags
14818 (if (or (eq t org-use-fast-tag-selection)
14819 (and org-use-fast-tag-selection
14820 (delq nil (mapcar 'cdr table))))
14821 (org-fast-tag-selection
14822 current-tags inherited-tags table
14823 (if org-fast-tag-selection-include-todo
14824 org-todo-key-alist))
14825 (let ((org-add-colon-after-tag-completion (< 1 (length table))))
14826 (org-trim
14827 (org-icompleting-read "Tags: "
14828 'org-tags-completion-function
14829 nil nil current 'org-tags-history))))))
14830 (while (string-match "[-+&]+" tags)
14831 ;; No boolean logic, just a list
14832 (setq tags (replace-match ":" t t tags))))
14834 (setq tags (replace-regexp-in-string "[,]" ":" tags))
14836 (if org-tags-sort-function
14837 (setq tags (mapconcat 'identity
14838 (sort (org-split-string
14839 tags (org-re "[^[:alnum:]_@#%]+"))
14840 org-tags-sort-function) ":")))
14842 (if (string-match "\\`[\t ]*\\'" tags)
14843 (setq tags "")
14844 (unless (string-match ":$" tags) (setq tags (concat tags ":")))
14845 (unless (string-match "^:" tags) (setq tags (concat ":" tags))))
14847 ;; Insert new tags at the correct column
14848 (beginning-of-line 1)
14849 (setq level (or (and (looking-at org-outline-regexp)
14850 (- (match-end 0) (point) 1))
14852 (cond
14853 ((and (equal current "") (equal tags "")))
14854 ((re-search-forward
14855 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
14856 (point-at-eol) t)
14857 (if (equal tags "")
14858 (setq rpl "")
14859 (goto-char (match-beginning 0))
14860 (setq c0 (current-column)
14861 ;; compute offset for the case of org-indent-mode active
14862 di (if (org-bound-and-true-p org-indent-mode)
14863 (* (1- org-indent-indentation-per-level) (1- level))
14865 p0 (if (equal (char-before) ?*) (1+ (point)) (point))
14866 tc (+ org-tags-column (if (> org-tags-column 0) (- di) di))
14867 c1 (max (1+ c0) (if (> tc 0) tc (- (- tc) (string-width tags))))
14868 rpl (concat (make-string (max 0 (- c1 c0)) ?\ ) tags)))
14869 (replace-match rpl t t)
14870 (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point)))
14871 tags)
14872 (t (error "Tags alignment failed")))
14873 (org-move-to-column col)
14874 (unless just-align
14875 (run-hooks 'org-after-tags-change-hook))))))
14877 (defun org-change-tag-in-region (beg end tag off)
14878 "Add or remove TAG for each entry in the region.
14879 This works in the agenda, and also in an org-mode buffer."
14880 (interactive
14881 (list (region-beginning) (region-end)
14882 (let ((org-last-tags-completion-table
14883 (if (derived-mode-p 'org-mode)
14884 (org-uniquify
14885 (delq nil (append (org-get-buffer-tags)
14886 (org-global-tags-completion-table))))
14887 (org-global-tags-completion-table))))
14888 (org-icompleting-read
14889 "Tag: " 'org-tags-completion-function nil nil nil
14890 'org-tags-history))
14891 (progn
14892 (message "[s]et or [r]emove? ")
14893 (equal (read-char-exclusive) ?r))))
14894 (if (fboundp 'deactivate-mark) (deactivate-mark))
14895 (let ((agendap (equal major-mode 'org-agenda-mode))
14896 l1 l2 m buf pos newhead (cnt 0))
14897 (goto-char end)
14898 (setq l2 (1- (org-current-line)))
14899 (goto-char beg)
14900 (setq l1 (org-current-line))
14901 (loop for l from l1 to l2 do
14902 (org-goto-line l)
14903 (setq m (get-text-property (point) 'org-hd-marker))
14904 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
14905 (and agendap m))
14906 (setq buf (if agendap (marker-buffer m) (current-buffer))
14907 pos (if agendap m (point)))
14908 (with-current-buffer buf
14909 (save-excursion
14910 (save-restriction
14911 (goto-char pos)
14912 (setq cnt (1+ cnt))
14913 (org-toggle-tag tag (if off 'off 'on))
14914 (setq newhead (org-get-heading)))))
14915 (and agendap (org-agenda-change-all-lines newhead m))))
14916 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
14918 (defun org-tags-completion-function (string predicate &optional flag)
14919 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
14920 (confirm (lambda (x) (stringp (car x)))))
14921 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
14922 (setq s1 (match-string 1 string)
14923 s2 (match-string 2 string))
14924 (setq s1 "" s2 string))
14925 (cond
14926 ((eq flag nil)
14927 ;; try completion
14928 (setq rtn (try-completion s2 ctable confirm))
14929 (if (stringp rtn)
14930 (setq rtn
14931 (concat s1 s2 (substring rtn (length s2))
14932 (if (and org-add-colon-after-tag-completion
14933 (assoc rtn ctable))
14934 ":" ""))))
14935 rtn)
14936 ((eq flag t)
14937 ;; all-completions
14938 (all-completions s2 ctable confirm))
14939 ((eq flag 'lambda)
14940 ;; exact match?
14941 (assoc s2 ctable)))))
14943 (defun org-fast-tag-insert (kwd tags face &optional end)
14944 "Insert KDW, and the TAGS, the latter with face FACE.
14945 Also insert END."
14946 (insert (format "%-12s" (concat kwd ":"))
14947 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
14948 (or end "")))
14950 (defun org-fast-tag-show-exit (flag)
14951 (save-excursion
14952 (org-goto-line 3)
14953 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
14954 (replace-match ""))
14955 (when flag
14956 (end-of-line 1)
14957 (org-move-to-column (- (window-width) 19) t)
14958 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
14960 (defun org-set-current-tags-overlay (current prefix)
14961 "Add an overlay to CURRENT tag with PREFIX."
14962 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
14963 (if (featurep 'xemacs)
14964 (org-overlay-display org-tags-overlay (concat prefix s)
14965 'secondary-selection)
14966 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
14967 (org-overlay-display org-tags-overlay (concat prefix s)))))
14969 (defvar org-last-tag-selection-key nil)
14970 (defun org-fast-tag-selection (current inherited table &optional todo-table)
14971 "Fast tag selection with single keys.
14972 CURRENT is the current list of tags in the headline, INHERITED is the
14973 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
14974 possibly with grouping information. TODO-TABLE is a similar table with
14975 TODO keywords, should these have keys assigned to them.
14976 If the keys are nil, a-z are automatically assigned.
14977 Returns the new tags string, or nil to not change the current settings."
14978 (let* ((fulltable (append table todo-table))
14979 (maxlen (apply 'max (mapcar
14980 (lambda (x)
14981 (if (stringp (car x)) (string-width (car x)) 0))
14982 fulltable)))
14983 (buf (current-buffer))
14984 (expert (eq org-fast-tag-selection-single-key 'expert))
14985 (buffer-tags nil)
14986 (fwidth (+ maxlen 3 1 3))
14987 (ncol (/ (- (window-width) 4) fwidth))
14988 (i-face 'org-done)
14989 (c-face 'org-todo)
14990 tg cnt e c char c1 c2 ntable tbl rtn
14991 ov-start ov-end ov-prefix
14992 (exit-after-next org-fast-tag-selection-single-key)
14993 (done-keywords org-done-keywords)
14994 groups ingroup)
14995 (save-excursion
14996 (beginning-of-line 1)
14997 (if (looking-at
14998 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14999 (setq ov-start (match-beginning 1)
15000 ov-end (match-end 1)
15001 ov-prefix "")
15002 (setq ov-start (1- (point-at-eol))
15003 ov-end (1+ ov-start))
15004 (skip-chars-forward "^\n\r")
15005 (setq ov-prefix
15006 (concat
15007 (buffer-substring (1- (point)) (point))
15008 (if (> (current-column) org-tags-column)
15010 (make-string (- org-tags-column (current-column)) ?\ ))))))
15011 (move-overlay org-tags-overlay ov-start ov-end)
15012 (save-window-excursion
15013 (if expert
15014 (set-buffer (get-buffer-create " *Org tags*"))
15015 (delete-other-windows)
15016 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15017 (org-switch-to-buffer-other-window " *Org tags*"))
15018 (erase-buffer)
15019 (org-set-local 'org-done-keywords done-keywords)
15020 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15021 (org-fast-tag-insert "Current" current c-face "\n\n")
15022 (org-fast-tag-show-exit exit-after-next)
15023 (org-set-current-tags-overlay current ov-prefix)
15024 (setq tbl fulltable char ?a cnt 0)
15025 (while (setq e (pop tbl))
15026 (cond
15027 ((equal (car e) :startgroup)
15028 (push '() groups) (setq ingroup t)
15029 (when (not (= cnt 0))
15030 (setq cnt 0)
15031 (insert "\n"))
15032 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15033 ((equal (car e) :endgroup)
15034 (setq ingroup nil cnt 0)
15035 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15036 ((equal e '(:newline))
15037 (when (not (= cnt 0))
15038 (setq cnt 0)
15039 (insert "\n")
15040 (setq e (car tbl))
15041 (while (equal (car tbl) '(:newline))
15042 (insert "\n")
15043 (setq tbl (cdr tbl)))))
15044 ((equal e '(:grouptags)) nil)
15046 (setq tg (copy-sequence (car e)) c2 nil)
15047 (if (cdr e)
15048 (setq c (cdr e))
15049 ;; automatically assign a character.
15050 (setq c1 (string-to-char
15051 (downcase (substring
15052 tg (if (= (string-to-char tg) ?@) 1 0)))))
15053 (if (or (rassoc c1 ntable) (rassoc c1 table))
15054 (while (or (rassoc char ntable) (rassoc char table))
15055 (setq char (1+ char)))
15056 (setq c2 c1))
15057 (setq c (or c2 char)))
15058 (if ingroup (push tg (car groups)))
15059 (setq tg (org-add-props tg nil 'face
15060 (cond
15061 ((not (assoc tg table))
15062 (org-get-todo-face tg))
15063 ((member tg current) c-face)
15064 ((member tg inherited) i-face))))
15065 (if (equal (caar tbl) :grouptags)
15066 (org-add-props tg nil 'face 'org-tag-group))
15067 (if (and (= cnt 0) (not ingroup)) (insert " "))
15068 (insert "[" c "] " tg (make-string
15069 (- fwidth 4 (length tg)) ?\ ))
15070 (push (cons tg c) ntable)
15071 (when (= (setq cnt (1+ cnt)) ncol)
15072 (insert "\n")
15073 (if ingroup (insert " "))
15074 (setq cnt 0)))))
15075 (setq ntable (nreverse ntable))
15076 (insert "\n")
15077 (goto-char (point-min))
15078 (if (not expert) (org-fit-window-to-buffer))
15079 (setq rtn
15080 (catch 'exit
15081 (while t
15082 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15083 (if (not groups) "no " "")
15084 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15085 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15086 (setq org-last-tag-selection-key c)
15087 (cond
15088 ((= c ?\r) (throw 'exit t))
15089 ((= c ?!)
15090 (setq groups (not groups))
15091 (goto-char (point-min))
15092 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15093 ((= c ?\C-c)
15094 (if (not expert)
15095 (org-fast-tag-show-exit
15096 (setq exit-after-next (not exit-after-next)))
15097 (setq expert nil)
15098 (delete-other-windows)
15099 (set-window-buffer (split-window-vertically) " *Org tags*")
15100 (org-switch-to-buffer-other-window " *Org tags*")
15101 (org-fit-window-to-buffer)))
15102 ((or (= c ?\C-g)
15103 (and (= c ?q) (not (rassoc c ntable))))
15104 (org-detach-overlay org-tags-overlay)
15105 (setq quit-flag t))
15106 ((= c ?\ )
15107 (setq current nil)
15108 (if exit-after-next (setq exit-after-next 'now)))
15109 ((= c ?\t)
15110 (condition-case nil
15111 (setq tg (org-icompleting-read
15112 "Tag: "
15113 (or buffer-tags
15114 (with-current-buffer buf
15115 (org-get-buffer-tags)))))
15116 (quit (setq tg "")))
15117 (when (string-match "\\S-" tg)
15118 (add-to-list 'buffer-tags (list tg))
15119 (if (member tg current)
15120 (setq current (delete tg current))
15121 (push tg current)))
15122 (if exit-after-next (setq exit-after-next 'now)))
15123 ((setq e (rassoc c todo-table) tg (car e))
15124 (with-current-buffer buf
15125 (save-excursion (org-todo tg)))
15126 (if exit-after-next (setq exit-after-next 'now)))
15127 ((setq e (rassoc c ntable) tg (car e))
15128 (if (member tg current)
15129 (setq current (delete tg current))
15130 (loop for g in groups do
15131 (if (member tg g)
15132 (mapc (lambda (x)
15133 (setq current (delete x current)))
15134 g)))
15135 (push tg current))
15136 (if exit-after-next (setq exit-after-next 'now))))
15138 ;; Create a sorted list
15139 (setq current
15140 (sort current
15141 (lambda (a b)
15142 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15143 (if (eq exit-after-next 'now) (throw 'exit t))
15144 (goto-char (point-min))
15145 (beginning-of-line 2)
15146 (delete-region (point) (point-at-eol))
15147 (org-fast-tag-insert "Current" current c-face)
15148 (org-set-current-tags-overlay current ov-prefix)
15149 (while (re-search-forward
15150 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15151 (setq tg (match-string 1))
15152 (add-text-properties
15153 (match-beginning 1) (match-end 1)
15154 (list 'face
15155 (cond
15156 ((member tg current) c-face)
15157 ((member tg inherited) i-face)
15158 (t (get-text-property (match-beginning 1) 'face))))))
15159 (goto-char (point-min)))))
15160 (org-detach-overlay org-tags-overlay)
15161 (if rtn
15162 (mapconcat 'identity current ":")
15163 nil))))
15165 (defun org-get-tags-string ()
15166 "Get the TAGS string in the current headline."
15167 (unless (org-at-heading-p t)
15168 (user-error "Not on a heading"))
15169 (save-excursion
15170 (beginning-of-line 1)
15171 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15172 (org-match-string-no-properties 1)
15173 "")))
15175 (defun org-get-tags ()
15176 "Get the list of tags specified in the current headline."
15177 (org-split-string (org-get-tags-string) ":"))
15179 (defun org-get-buffer-tags ()
15180 "Get a table of all tags used in the buffer, for completion."
15181 (let (tags)
15182 (save-excursion
15183 (goto-char (point-min))
15184 (while (re-search-forward
15185 (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t\r\n]") nil t)
15186 (when (equal (char-after (point-at-bol 0)) ?*)
15187 (mapc (lambda (x) (add-to-list 'tags x))
15188 (org-split-string (org-match-string-no-properties 1) ":")))))
15189 (mapc (lambda (s) (add-to-list 'tags s)) org-file-tags)
15190 (mapcar 'list tags)))
15192 ;;;; The mapping API
15194 (defun org-map-entries (func &optional match scope &rest skip)
15195 "Call FUNC at each headline selected by MATCH in SCOPE.
15197 FUNC is a function or a lisp form. The function will be called without
15198 arguments, with the cursor positioned at the beginning of the headline.
15199 The return values of all calls to the function will be collected and
15200 returned as a list.
15202 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15203 does not need to preserve point. After evaluation, the cursor will be
15204 moved to the end of the line (presumably of the headline of the
15205 processed entry) and search continues from there. Under some
15206 circumstances, this may not produce the wanted results. For example,
15207 if you have removed (e.g. archived) the current (sub)tree it could
15208 mean that the next entry will be skipped entirely. In such cases, you
15209 can specify the position from where search should continue by making
15210 FUNC set the variable `org-map-continue-from' to the desired buffer
15211 position.
15213 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15214 Only headlines that are matched by this query will be considered during
15215 the iteration. When MATCH is nil or t, all headlines will be
15216 visited by the iteration.
15218 SCOPE determines the scope of this command. It can be any of:
15220 nil The current buffer, respecting the restriction if any
15221 tree The subtree started with the entry at point
15222 region The entries within the active region, if any
15223 region-start-level
15224 The entries within the active region, but only those at
15225 the same level than the first one.
15226 file The current buffer, without restriction
15227 file-with-archives
15228 The current buffer, and any archives associated with it
15229 agenda All agenda files
15230 agenda-with-archives
15231 All agenda files with any archive files associated with them
15232 \(file1 file2 ...)
15233 If this is a list, all files in the list will be scanned
15235 The remaining args are treated as settings for the skipping facilities of
15236 the scanner. The following items can be given here:
15238 archive skip trees with the archive tag
15239 comment skip trees with the COMMENT keyword
15240 function or Emacs Lisp form:
15241 will be used as value for `org-agenda-skip-function', so
15242 whenever the function returns a position, FUNC will not be
15243 called for that entry and search will continue from the
15244 position returned
15246 If your function needs to retrieve the tags including inherited tags
15247 at the *current* entry, you can use the value of the variable
15248 `org-scanner-tags' which will be much faster than getting the value
15249 with `org-get-tags-at'. If your function gets properties with
15250 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15251 to t around the call to `org-entry-properties' to get the same speedup.
15252 Note that if your function moves around to retrieve tags and properties at
15253 a *different* entry, you cannot use these techniques."
15254 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15255 (not (org-region-active-p)))
15256 (let* ((org-agenda-archives-mode nil) ; just to make sure
15257 (org-agenda-skip-archived-trees (memq 'archive skip))
15258 (org-agenda-skip-comment-trees (memq 'comment skip))
15259 (org-agenda-skip-function
15260 (car (org-delete-all '(comment archive) skip)))
15261 (org-tags-match-list-sublevels t)
15262 (start-level (eq scope 'region-start-level))
15263 matcher file res
15264 org-todo-keywords-for-agenda
15265 org-done-keywords-for-agenda
15266 org-todo-keyword-alist-for-agenda
15267 org-tag-alist-for-agenda
15268 todo-only)
15270 (cond
15271 ((eq match t) (setq matcher t))
15272 ((eq match nil) (setq matcher t))
15273 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15275 (save-excursion
15276 (save-restriction
15277 (cond ((eq scope 'tree)
15278 (org-back-to-heading t)
15279 (org-narrow-to-subtree)
15280 (setq scope nil))
15281 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15282 (org-region-active-p))
15283 ;; If needed, set start-level to a string like "2"
15284 (when start-level
15285 (save-excursion
15286 (goto-char (region-beginning))
15287 (unless (org-at-heading-p) (outline-next-heading))
15288 (setq start-level (org-current-level))))
15289 (narrow-to-region (region-beginning)
15290 (save-excursion
15291 (goto-char (region-end))
15292 (unless (and (bolp) (org-at-heading-p))
15293 (outline-next-heading))
15294 (point)))
15295 (setq scope nil)))
15297 (if (not scope)
15298 (progn
15299 (org-agenda-prepare-buffers
15300 (list (buffer-file-name (current-buffer))))
15301 (setq res (org-scan-tags func matcher todo-only start-level)))
15302 ;; Get the right scope
15303 (cond
15304 ((and scope (listp scope) (symbolp (car scope)))
15305 (setq scope (eval scope)))
15306 ((eq scope 'agenda)
15307 (setq scope (org-agenda-files t)))
15308 ((eq scope 'agenda-with-archives)
15309 (setq scope (org-agenda-files t))
15310 (setq scope (org-add-archive-files scope)))
15311 ((eq scope 'file)
15312 (setq scope (list (buffer-file-name))))
15313 ((eq scope 'file-with-archives)
15314 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15315 (org-agenda-prepare-buffers scope)
15316 (while (setq file (pop scope))
15317 (with-current-buffer (org-find-base-buffer-visiting file)
15318 (save-excursion
15319 (save-restriction
15320 (widen)
15321 (goto-char (point-min))
15322 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15323 res)))
15325 ;;; Properties API
15327 (defconst org-special-properties
15328 '("TODO" "TAGS" "ALLTAGS" "DEADLINE" "SCHEDULED" "CLOSED" "PRIORITY"
15329 "TIMESTAMP" "TIMESTAMP_IA" "BLOCKED" "FILE" "CLOCKSUM" "CLOCKSUM_T")
15330 "The special properties valid in Org-mode.
15331 These are properties that are not defined in the property drawer,
15332 but in some other way.")
15334 (defconst org-default-properties
15335 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15336 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15337 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15338 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15339 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15340 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15341 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15342 "Some properties that are used by Org mode for various purposes.
15343 Being in this list makes sure that they are offered for completion.")
15345 (defun org--update-property-plist (key val props)
15346 "Associate KEY to VAL in alist PROPS.
15347 Modifications are made by side-effect. Return new alist."
15348 (let* ((appending (string= (substring key -1) "+"))
15349 (key (if appending (substring key 0 -1) key))
15350 (old (assoc-string key props t)))
15351 (if (not old) (cons (cons key val) props)
15352 (setcdr old (if appending (concat (cdr old) " " val) val))
15353 props)))
15355 (defun org-get-property-block (&optional beg force)
15356 "Return the (beg . end) range of the body of the property drawer.
15357 BEG is the beginning of the current subtree, or of the part
15358 before the first headline. If it is not given, it will be found.
15359 If the drawer does not exist, create it if FORCE is non-nil, or
15360 return nil."
15361 (org-with-wide-buffer
15362 (when beg (goto-char beg))
15363 (unless (org-before-first-heading-p)
15364 (let ((beg (cond (beg)
15365 ((or (not (featurep 'org-inlinetask))
15366 (org-inlinetask-in-task-p))
15367 (org-back-to-heading t))
15368 (t (org-with-limited-levels (org-back-to-heading t))))))
15369 (forward-line)
15370 (when (org-looking-at-p org-planning-line-re) (forward-line))
15371 (cond ((looking-at org-property-drawer-re)
15372 (forward-line)
15373 (cons (point) (progn (goto-char (match-end 0))
15374 (line-beginning-position))))
15375 (force
15376 (goto-char beg)
15377 (org-insert-property-drawer)
15378 (let ((pos (save-excursion (search-forward ":END:")
15379 (line-beginning-position))))
15380 (cons pos pos))))))))
15382 (defun org-at-property-p ()
15383 "Non-nil when point is inside a property drawer.
15384 See `org-property-re' for match data, if applicable."
15385 (save-excursion
15386 (beginning-of-line)
15387 (and (looking-at org-property-re)
15388 (let ((property-drawer (save-match-data (org-get-property-block))))
15389 (and property-drawer (< (point) (cdr property-drawer)))))))
15391 (defun org-property-action ()
15392 "Do an action on properties."
15393 (interactive)
15394 (unless (org-at-property-p) (user-error "Not at a property"))
15395 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15396 (let ((c (read-char-exclusive)))
15397 (case c
15398 (?s (call-interactively #'org-set-property))
15399 (?d (call-interactively #'org-delete-property))
15400 (?D (call-interactively #'org-delete-property-globally))
15401 (?c (call-interactively #'org-compute-property-at-point))
15402 (otherwise (user-error "No such property action %c" c)))))
15404 (defun org-inc-effort ()
15405 "Increment the value of the effort property in the current entry."
15406 (interactive)
15407 (org-set-effort nil t))
15409 (defvar org-clock-effort) ; Defined in org-clock.el.
15410 (defvar org-clock-current-task) ; Defined in org-clock.el.
15411 (defun org-set-effort (&optional value increment)
15412 "Set the effort property of the current entry.
15413 With numerical prefix arg, use the nth allowed value, 0 stands for the
15414 10th allowed value.
15416 When INCREMENT is non-nil, set the property to the next allowed value."
15417 (interactive "P")
15418 (if (equal value 0) (setq value 10))
15419 (let* ((completion-ignore-case t)
15420 (prop org-effort-property)
15421 (cur (org-entry-get nil prop))
15422 (allowed (org-property-get-allowed-values nil prop 'table))
15423 (existing (mapcar 'list (org-property-values prop)))
15424 (heading (nth 4 (org-heading-components)))
15426 (val (cond
15427 ((stringp value) value)
15428 ((and allowed (integerp value))
15429 (or (car (nth (1- value) allowed))
15430 (car (org-last allowed))))
15431 ((and allowed increment)
15432 (or (caadr (member (list cur) allowed))
15433 (user-error "Allowed effort values are not set")))
15434 (allowed
15435 (message "Select 1-9,0, [RET%s]: %s"
15436 (if cur (concat "=" cur) "")
15437 (mapconcat 'car allowed " "))
15438 (setq rpl (read-char-exclusive))
15439 (if (equal rpl ?\r)
15441 (setq rpl (- rpl ?0))
15442 (if (equal rpl 0) (setq rpl 10))
15443 (if (and (> rpl 0) (<= rpl (length allowed)))
15444 (car (nth (1- rpl) allowed))
15445 (org-completing-read "Effort: " allowed nil))))
15447 (let (org-completion-use-ido org-completion-use-iswitchb)
15448 (org-completing-read
15449 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15450 (concat "[" cur "]") "")
15451 ": ")
15452 existing nil nil "" nil cur))))))
15453 (unless (equal (org-entry-get nil prop) val)
15454 (org-entry-put nil prop val))
15455 (org-refresh-property
15456 '((effort . identity)
15457 (effort-minutes . org-duration-string-to-minutes))
15458 val)
15459 (when (string= heading org-clock-current-task)
15460 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15461 (org-clock-update-mode-line))
15462 (message "%s is now %s" prop val)))
15464 (defun org-entry-properties (&optional pom which)
15465 "Get all properties of the current entry.
15467 When POM is a buffer position, get all properties from the entry
15468 there instead.
15470 This includes the TODO keyword, the tags, time strings for
15471 deadline, scheduled, and clocking, and any additional properties
15472 defined in the entry.
15474 If WHICH is nil or `all', get all properties. If WHICH is
15475 `special' or `standard', only get that subclass. If WHICH is
15476 a string, only get that property.
15478 Return value is an alist. Keys are properties, as upcased
15479 strings."
15480 (org-with-point-at pom
15481 (when (and (derived-mode-p 'org-mode)
15482 (ignore-errors (org-back-to-heading t)))
15483 (catch 'exit
15484 (let* ((beg (point))
15485 (specific (and (stringp which) (upcase which)))
15486 (which (cond ((not specific) which)
15487 ((member specific org-special-properties) 'special)
15488 (t 'standard)))
15489 props)
15490 ;; Get the special properties, like TODO and TAGS.
15491 (when (memq which '(nil all special))
15492 (when (or (not specific) (string= specific "CLOCKSUM"))
15493 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15494 (when clocksum
15495 (push (cons "CLOCKSUM"
15496 (org-columns-number-to-string
15497 (/ (float clocksum) 60.) 'add_times))
15498 props)))
15499 (when specific (throw 'exit props)))
15500 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15501 (let ((clocksumt (get-text-property (point)
15502 :org-clock-minutes-today)))
15503 (when clocksumt
15504 (push (cons "CLOCKSUM_T"
15505 (org-columns-number-to-string
15506 (/ (float clocksumt) 60.) 'add_times))
15507 props)))
15508 (when specific (throw 'exit props)))
15509 (when (or (not specific) (string= specific "TODO"))
15510 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15511 (push (cons "TODO" (org-match-string-no-properties 2)) props))
15512 (when specific (throw 'exit props)))
15513 (when (or (not specific) (string= specific "PRIORITY"))
15514 (when (looking-at org-priority-regexp)
15515 (push (cons "PRIORITY" (org-match-string-no-properties 2)) props))
15516 (when specific (throw 'exit props)))
15517 (when (or (not specific) (string= specific "FILE"))
15518 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15519 props)
15520 (when specific (throw 'exit props)))
15521 (when (or (not specific) (string= specific "TAGS"))
15522 (let ((value (org-string-nw-p (org-get-tags-string))))
15523 (when value (push (cons "TAGS" value) props)))
15524 (when specific (throw 'exit props)))
15525 (when (or (not specific) (string= specific "ALLTAGS"))
15526 (let ((value (org-get-tags-at)))
15527 (when value
15528 (push (cons "ALLTAGS"
15529 (format ":%s:" (mapconcat #'identity value ":")))
15530 props)))
15531 (when specific (throw 'exit props)))
15532 (when (or (not specific) (string= specific "BLOCKED"))
15533 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15534 (when specific (throw 'exit props)))
15535 (when (or (not specific)
15536 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15537 (forward-line)
15538 (when (org-looking-at-p org-planning-line-re)
15539 (end-of-line)
15540 (let ((bol (line-beginning-position)))
15541 ;; Backward compatibility: time keywords used to be
15542 ;; configurable (before 8.3). Make sure we get the
15543 ;; correct keyword.
15544 (dolist (k (if (not specific)
15545 (list org-closed-string
15546 org-deadline-string
15547 org-scheduled-string)
15548 (list (cond ((string= specific "CLOSED")
15549 org-closed-string)
15550 ((string= specific "DEADLINE")
15551 org-deadline-string)
15552 (t org-scheduled-string)))))
15553 (save-excursion
15554 (when (search-backward k bol t)
15555 (goto-char (match-end 0))
15556 (skip-chars-forward " \t")
15557 (and (looking-at org-ts-regexp-both)
15558 (push (cons specific (match-string 0)) props)))))))
15559 (when specific (throw 'exit props)))
15560 (when (or (not specific)
15561 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15562 (let ((find-ts
15563 (lambda (end ts)
15564 (let ((regexp (if (or (string= specific "TIMESTAMP")
15565 (assoc "TIMESTAMP_IA" ts))
15566 org-ts-regexp
15567 org-ts-regexp-both)))
15568 (catch 'next
15569 (while (re-search-forward regexp end t)
15570 (backward-char)
15571 (let ((object (org-element-context)))
15572 ;; Accept to match timestamps in node
15573 ;; properties, too.
15574 (when (memq (org-element-type object)
15575 '(node-property timestamp))
15576 (let ((type
15577 (org-element-property :type object)))
15578 (cond
15579 ((and (memq type '(active active-range))
15580 (not (equal specific "TIMESTAMP_IA")))
15581 (unless (assoc "TIMESTAMP" ts)
15582 (push (cons "TIMESTAMP"
15583 (org-element-property
15584 :raw-value object))
15586 (when specific (throw 'exit ts))))
15587 ((and (memq type '(inactive inactive-range))
15588 (not (string= specific "TIMESTAMP")))
15589 (unless (assoc "TIMESTAMP_IA" ts)
15590 (push (cons "TIMESTAMP_IA"
15591 (org-element-property
15592 :raw-value object))
15594 (when specific (throw 'exit ts))))))
15595 ;; Both timestamp types are found,
15596 ;; move to next part.
15597 (when (= (length ts) 2) (throw 'next ts)))))
15598 ts)))))
15599 (goto-char beg)
15600 ;; First look for timestamps within headline.
15601 (let ((ts (funcall find-ts (line-end-position) nil)))
15602 (if (= (length ts) 2) (setq props (nconc ts props))
15603 (forward-line)
15604 ;; Then find timestamps in the section, skipping
15605 ;; planning line.
15606 (when (org-looking-at-p org-planning-line-re)
15607 (forward-line))
15608 (let ((end (save-excursion (outline-next-heading))))
15609 (setq props (nconc (funcall find-ts end ts) props))))))))
15610 ;; Get the standard properties, like :PROP:.
15611 (when (memq which '(nil all standard))
15612 ;; If we are looking after a specific property, delegate
15613 ;; to `org-entry-get', which is faster. However, make an
15614 ;; exception for "CATEGORY", since it can be also set
15615 ;; through keywords (i.e. #+CATEGORY).
15616 (if (and specific (not (equal specific "CATEGORY")))
15617 (let ((value (org-entry-get beg specific nil t)))
15618 (throw 'exit (and value (list (cons specific value)))))
15619 (let ((range (org-get-property-block beg)))
15620 (when range
15621 (let ((end (cdr range)) seen-base)
15622 (goto-char (car range))
15623 ;; Unlike to `org--update-property-plist', we
15624 ;; handle the case where base values is found
15625 ;; after its extension. We also forbid standard
15626 ;; properties to be named as special properties.
15627 (while (re-search-forward org-property-re end t)
15628 (let* ((key (upcase (org-match-string-no-properties 2)))
15629 (extendp (org-string-match-p "\\+\\'" key))
15630 (key-base (if extendp (substring key 0 -1) key))
15631 (value (org-match-string-no-properties 3)))
15632 (cond
15633 ((member-ignore-case key-base org-special-properties))
15634 (extendp
15635 (setq props
15636 (org--update-property-plist key value props)))
15637 ((member key seen-base))
15638 (t (push key seen-base)
15639 (let ((p (assoc-string key props t)))
15640 (if p (setcdr p (concat value " " (cdr p)))
15641 (push (cons key value) props))))))))))))
15642 (unless (assoc "CATEGORY" props)
15643 (push (cons "CATEGORY" (org-get-category)) props)
15644 (when (string= specific "CATEGORY") (throw 'exit props)))
15645 ;; Return value.
15646 (append (get-text-property beg 'org-summaries) props))))))
15648 (defun org-entry-get (pom property &optional inherit literal-nil)
15649 "Get value of PROPERTY for entry or content at point-or-marker POM.
15651 If INHERIT is non-nil and the entry does not have the property,
15652 then also check higher levels of the hierarchy. If INHERIT is
15653 the symbol `selective', use inheritance only if the setting in
15654 `org-use-property-inheritance' selects PROPERTY for inheritance.
15656 If the property is present but empty, the return value is the
15657 empty string. If the property is not present at all, nil is
15658 returned. In any other case, return the value as a string.
15659 Search is case-insensitive.
15661 If LITERAL-NIL is set, return the string value \"nil\" as
15662 a string, do not interpret it as the list atom nil. This is used
15663 for inheritance when a \"nil\" value can supersede a non-nil
15664 value higher up the hierarchy."
15665 (org-with-point-at pom
15666 (cond
15667 ((and inherit
15668 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15669 (org-entry-get-with-inheritance property literal-nil))
15670 ((member-ignore-case property org-special-properties)
15671 ;; We need a special property. Use `org-entry-properties' to
15672 ;; retrieve it, but specify the wanted property.
15673 (cdr (assoc-string property (org-entry-properties nil property))))
15675 (let ((range (org-get-property-block)))
15676 (when range
15677 (let* ((case-fold-search t)
15678 (end (cdr range))
15679 (props
15680 (let ((global
15681 (or (assoc-string property org-file-properties t)
15682 (assoc-string property org-global-properties t)
15683 (assoc-string
15684 property org-global-properties-fixed t))))
15685 ;; Make sure to not re-use GLOBAL as
15686 ;; `org--update-property-plist' would alter it by
15687 ;; side-effect.
15688 (and global (list (cons property (cdr global))))))
15689 (find-value
15690 (lambda (key)
15691 (when (re-search-forward (org-re-property key nil t) end t)
15692 (setq props
15693 (org--update-property-plist
15694 key (org-match-string-no-properties 3) props))))))
15695 (goto-char (car range))
15696 ;; Find base value.
15697 (save-excursion (funcall find-value property))
15698 ;; Find additional values.
15699 (let ((property+ (concat property "+")))
15700 (while (funcall find-value property+)))
15701 ;; Return final value.
15702 (let ((val (cdr (assoc-string property props t))))
15703 (if literal-nil val (org-not-nil val))))))))))
15705 (defun org-property-or-variable-value (var &optional inherit)
15706 "Check if there is a property fixing the value of VAR.
15707 If yes, return this value. If not, return the current value of the variable."
15708 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15709 (if (and prop (stringp prop) (string-match "\\S-" prop))
15710 (read prop)
15711 (symbol-value var))))
15713 (defun org-entry-delete (pom property)
15714 "Delete the property PROPERTY from entry at point-or-marker POM."
15715 (unless (member property org-special-properties)
15716 (org-with-point-at pom
15717 (let ((range (org-get-property-block)))
15718 (when range
15719 (let ((begin (car range))
15720 (end (copy-marker (cdr range))))
15721 (goto-char begin)
15722 (when (re-search-forward (org-re-property property nil t) end t)
15723 (delete-region (match-beginning 0) (line-beginning-position 2))
15724 ;; If drawer is empty, remove it altogether.
15725 (when (= begin end)
15726 (delete-region (line-beginning-position 0)
15727 (line-beginning-position 2)))
15728 (set-marker end nil))))))))
15730 ;; Multi-values properties are properties that contain multiple values
15731 ;; These values are assumed to be single words, separated by whitespace.
15732 (defun org-entry-add-to-multivalued-property (pom property value)
15733 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15734 (let* ((old (org-entry-get pom property))
15735 (values (and old (org-split-string old "[ \t]"))))
15736 (setq value (org-entry-protect-space value))
15737 (unless (member value values)
15738 (setq values (append values (list value)))
15739 (org-entry-put pom property
15740 (mapconcat 'identity values " ")))))
15742 (defun org-entry-remove-from-multivalued-property (pom property value)
15743 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15744 (let* ((old (org-entry-get pom property))
15745 (values (and old (org-split-string old "[ \t]"))))
15746 (setq value (org-entry-protect-space value))
15747 (when (member value values)
15748 (setq values (delete value values))
15749 (org-entry-put pom property
15750 (mapconcat 'identity values " ")))))
15752 (defun org-entry-member-in-multivalued-property (pom property value)
15753 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
15754 (let* ((old (org-entry-get pom property))
15755 (values (and old (org-split-string old "[ \t]"))))
15756 (setq value (org-entry-protect-space value))
15757 (member value values)))
15759 (defun org-entry-get-multivalued-property (pom property)
15760 "Return a list of values in a multivalued property."
15761 (let* ((value (org-entry-get pom property))
15762 (values (and value (org-split-string value "[ \t]"))))
15763 (mapcar 'org-entry-restore-space values)))
15765 (defun org-entry-put-multivalued-property (pom property &rest values)
15766 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
15767 VALUES should be a list of strings. Spaces will be protected."
15768 (org-entry-put pom property
15769 (mapconcat 'org-entry-protect-space values " "))
15770 (let* ((value (org-entry-get pom property))
15771 (values (and value (org-split-string value "[ \t]"))))
15772 (mapcar 'org-entry-restore-space values)))
15774 (defun org-entry-protect-space (s)
15775 "Protect spaces and newline in string S."
15776 (while (string-match " " s)
15777 (setq s (replace-match "%20" t t s)))
15778 (while (string-match "\n" s)
15779 (setq s (replace-match "%0A" t t s)))
15782 (defun org-entry-restore-space (s)
15783 "Restore spaces and newline in string S."
15784 (while (string-match "%20" s)
15785 (setq s (replace-match " " t t s)))
15786 (while (string-match "%0A" s)
15787 (setq s (replace-match "\n" t t s)))
15790 (defvar org-entry-property-inherited-from (make-marker)
15791 "Marker pointing to the entry from where a property was inherited.
15792 Each call to `org-entry-get-with-inheritance' will set this marker to the
15793 location of the entry where the inheritance search matched. If there was
15794 no match, the marker will point nowhere.
15795 Note that also `org-entry-get' calls this function, if the INHERIT flag
15796 is set.")
15798 (defun org-entry-get-with-inheritance (property &optional literal-nil)
15799 "Get PROPERTY of entry or content at point, search higher levels if needed.
15800 The search will stop at the first ancestor which has the property defined.
15801 If the value found is \"nil\", return nil to show that the property
15802 should be considered as undefined (this is the meaning of nil here).
15803 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
15804 (move-marker org-entry-property-inherited-from nil)
15805 (let (value)
15806 (org-with-wide-buffer
15807 (catch 'exit
15808 (while t
15809 (when (setq value (org-entry-get nil property nil literal-nil))
15810 (org-back-to-heading t)
15811 (move-marker org-entry-property-inherited-from (point))
15812 (throw 'exit nil))
15813 (or (org-up-heading-safe) (throw 'exit nil)))))
15814 (unless value
15815 (setq value
15816 (cdr (or (assoc-string property org-file-properties t)
15817 (assoc-string property org-global-properties t)
15818 (assoc-string property org-global-properties-fixed t)))))
15819 (if literal-nil value (org-not-nil value))))
15821 (defvar org-property-changed-functions nil
15822 "Hook called when the value of a property has changed.
15823 Each hook function should accept two arguments, the name of the property
15824 and the new value.")
15826 (defun org-entry-put (pom property value)
15827 "Set PROPERTY to VALUE for entry at point-or-marker POM.
15829 If the value is `nil', it is converted to the empty string. If
15830 it is not a string, an error is raised.
15832 PROPERTY can be any regular property (see
15833 `org-special-properties'). It can also be \"TODO\",
15834 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
15836 For the last two properties, VALUE may have any of the special
15837 values \"earlier\" and \"later\". The function then increases or
15838 decreases scheduled or deadline date by one day."
15839 (cond ((null value) (setq value ""))
15840 ((not (stringp value)) (error "Properties values should be strings")))
15841 (org-with-point-at pom
15842 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15843 (org-back-to-heading t)
15844 (org-with-limited-levels (org-back-to-heading t)))
15845 (let ((beg (point)))
15846 (cond
15847 ((equal property "TODO")
15848 (cond ((not (org-string-nw-p value)) (setq value 'none))
15849 ((not (member value org-todo-keywords-1))
15850 (user-error "\"%s\" is not a valid TODO state" value)))
15851 (org-todo value)
15852 (org-set-tags nil 'align))
15853 ((equal property "PRIORITY")
15854 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
15855 (org-set-tags nil 'align))
15856 ((equal property "SCHEDULED")
15857 (forward-line)
15858 (if (and (org-looking-at-p org-planning-line-re)
15859 (re-search-forward
15860 org-scheduled-time-regexp (line-end-position) t))
15861 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15862 ((string= value "later") (org-timestamp-change 1 'day))
15863 ((string= value "") (org-schedule '(4)))
15864 (t (org-schedule nil value)))
15865 (if (member value '("earlier" "later" ""))
15866 (call-interactively #'org-schedule)
15867 (org-schedule nil value))))
15868 ((equal property "DEADLINE")
15869 (forward-line)
15870 (if (and (org-looking-at-p org-planning-line-re)
15871 (re-search-forward
15872 org-deadline-time-regexp (line-end-position) t))
15873 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
15874 ((string= value "later") (org-timestamp-change 1 'day))
15875 ((string= value "") (org-deadline '(4)))
15876 (t (org-deadline nil value)))
15877 (if (member value '("earlier" "later" ""))
15878 (call-interactively #'org-deadline)
15879 (org-deadline nil value))))
15880 ((member property org-special-properties)
15881 (error "The %s property cannot be set with `org-entry-put'" property))
15883 (let* ((range (org-get-property-block beg 'force))
15884 (end (cdr range))
15885 (case-fold-search t))
15886 (goto-char (car range))
15887 (if (re-search-forward (org-re-property property nil t) end t)
15888 (progn (delete-region (match-beginning 0) (match-end 0))
15889 (goto-char (match-beginning 0)))
15890 (goto-char end)
15891 (insert "\n")
15892 (backward-char))
15893 (insert ":" property ":")
15894 (when value (insert " " value))
15895 (org-indent-line)))))
15896 (run-hook-with-args 'org-property-changed-functions property value)))
15898 (defun org-buffer-property-keys (&optional specials defaults columns)
15899 "Get all property keys in the current buffer.
15901 When SPECIALS is non-nil, also list the special properties that
15902 reflect things like tags and TODO state.
15904 When DEFAULTS is non-nil, also include properties that has
15905 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
15906 DESCRIPTION, LOCATION, and LOGGING and others.
15908 When COLUMNS in non-nil, also include property names given in
15909 COLUMN formats in the current buffer."
15910 (let ((case-fold-search t)
15911 (props (append
15912 (and specials org-special-properties)
15913 (and defaults (cons org-effort-property org-default-properties))
15914 nil)))
15915 (org-with-wide-buffer
15916 (goto-char (point-min))
15917 (while (re-search-forward org-property-start-re nil t)
15918 (let ((range (org-get-property-block)))
15919 (catch 'skip
15920 (unless range
15921 (when (and (not (org-before-first-heading-p))
15922 (y-or-n-p (format "Malformed drawer at %d, repair?"
15923 (line-beginning-position))))
15924 (org-get-property-block nil t))
15925 (throw 'skip nil))
15926 (goto-char (car range))
15927 (let ((begin (car range))
15928 (end (cdr range)))
15929 ;; Make sure that found property block is not located
15930 ;; before current point, as it would generate an infloop.
15931 ;; It can happen, for example, in the following
15932 ;; situation:
15934 ;; * Headline
15935 ;; :PROPERTIES:
15936 ;; ...
15937 ;; :END:
15938 ;; *************** Inlinetask
15939 ;; #+BEGIN_EXAMPLE
15940 ;; :PROPERTIES:
15941 ;; #+END_EXAMPLE
15943 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
15944 (while (< (point) end)
15945 (let ((p (progn (looking-at org-property-re)
15946 (org-match-string-no-properties 2))))
15947 ;; Only add true property name, not extension symbol.
15948 (add-to-list 'props
15949 (if (not (org-string-match-p "\\+\\'" p)) p
15950 (substring p 0 -1))))
15951 (forward-line))))
15952 (outline-next-heading)))
15953 (when columns
15954 (goto-char (point-min))
15955 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
15956 (let ((element (org-element-at-point)))
15957 (when (memq (org-element-type element) '(keyword node-property))
15958 (let ((value (org-element-property :value element))
15959 (start 0))
15960 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
15961 (setq start (match-end 0))
15962 (let ((p (org-match-string-no-properties 1 value)))
15963 (unless (member-ignore-case
15964 p (cons "ITEM" org-special-properties))
15965 (add-to-list 'props p))))))))))
15966 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
15968 (defun org-property-values (key)
15969 "List all non-nil values of property KEY in current buffer."
15970 (org-with-wide-buffer
15971 (goto-char (point-min))
15972 (let ((case-fold-search t)
15973 (re (org-re-property key))
15974 values)
15975 (while (re-search-forward re nil t)
15976 (add-to-list 'values (org-entry-get (point) key)))
15977 values)))
15979 (defun org-insert-property-drawer ()
15980 "Insert a property drawer into the current entry."
15981 (org-with-wide-buffer
15982 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
15983 (org-back-to-heading t)
15984 (org-with-limited-levels (org-back-to-heading t)))
15985 (forward-line)
15986 (when (org-looking-at-p org-planning-line-re) (forward-line))
15987 (unless (org-looking-at-p org-property-drawer-re)
15988 (let ((inhibit-read-only t))
15989 (unless (bolp) (insert "\n"))
15990 (let ((begin (point)))
15991 (insert ":PROPERTIES:\n:END:\n")
15992 (org-indent-region begin (point)))))))
15994 (defun org-insert-drawer (&optional arg drawer)
15995 "Insert a drawer at point.
15997 When optional argument ARG is non-nil, insert a property drawer.
15999 Optional argument DRAWER, when non-nil, is a string representing
16000 drawer's name. Otherwise, the user is prompted for a name.
16002 If a region is active, insert the drawer around that region
16003 instead.
16005 Point is left between drawer's boundaries."
16006 (interactive "P")
16007 (let* ((drawer (if arg "PROPERTIES"
16008 (or drawer (read-from-minibuffer "Drawer: ")))))
16009 (cond
16010 ;; With C-u, fall back on `org-insert-property-drawer'
16011 (arg (org-insert-property-drawer))
16012 ;; Check validity of suggested drawer's name.
16013 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16014 (user-error "Invalid drawer name"))
16015 ;; With an active region, insert a drawer at point.
16016 ((not (org-region-active-p))
16017 (progn
16018 (unless (bolp) (insert "\n"))
16019 (insert (format ":%s:\n\n:END:\n" drawer))
16020 (forward-line -2)))
16021 ;; Otherwise, insert the drawer at point
16023 (let ((rbeg (region-beginning))
16024 (rend (copy-marker (region-end))))
16025 (unwind-protect
16026 (progn
16027 (goto-char rbeg)
16028 (beginning-of-line)
16029 (when (save-excursion
16030 (re-search-forward org-outline-regexp-bol rend t))
16031 (user-error "Drawers cannot contain headlines"))
16032 ;; Position point at the beginning of the first
16033 ;; non-blank line in region. Insert drawer's opening
16034 ;; there, then indent it.
16035 (org-skip-whitespace)
16036 (beginning-of-line)
16037 (insert ":" drawer ":\n")
16038 (forward-line -1)
16039 (indent-for-tab-command)
16040 ;; Move point to the beginning of the first blank line
16041 ;; after the last non-blank line in region. Insert
16042 ;; drawer's closing, then indent it.
16043 (goto-char rend)
16044 (skip-chars-backward " \r\t\n")
16045 (insert "\n:END:")
16046 (deactivate-mark t)
16047 (indent-for-tab-command)
16048 (unless (eolp) (insert "\n")))
16049 ;; Clear marker, whatever the outcome of insertion is.
16050 (set-marker rend nil)))))))
16052 (defvar org-property-set-functions-alist nil
16053 "Property set function alist.
16054 Each entry should have the following format:
16056 (PROPERTY . READ-FUNCTION)
16058 The read function will be called with the same argument as
16059 `org-completing-read'.")
16061 (defun org-set-property-function (property)
16062 "Get the function that should be used to set PROPERTY.
16063 This is computed according to `org-property-set-functions-alist'."
16064 (or (cdr (assoc property org-property-set-functions-alist))
16065 'org-completing-read))
16067 (defun org-read-property-value (property)
16068 "Read PROPERTY value from user."
16069 (let* ((completion-ignore-case t)
16070 (allowed (org-property-get-allowed-values nil property 'table))
16071 (cur (org-entry-get nil property))
16072 (prompt (concat property " value"
16073 (if (and cur (string-match "\\S-" cur))
16074 (concat " [" cur "]") "") ": "))
16075 (set-function (org-set-property-function property))
16076 (val (if allowed
16077 (funcall set-function prompt allowed nil
16078 (not (get-text-property 0 'org-unrestricted
16079 (caar allowed))))
16080 (let (org-completion-use-ido org-completion-use-iswitchb)
16081 (funcall set-function prompt
16082 (mapcar 'list (org-property-values property))
16083 nil nil "" nil cur)))))
16084 (org-trim val)))
16086 (defvar org-last-set-property nil)
16087 (defvar org-last-set-property-value nil)
16088 (defun org-read-property-name ()
16089 "Read a property name."
16090 (let* ((completion-ignore-case t)
16091 (keys (org-buffer-property-keys nil t t))
16092 (default-prop (or (save-excursion
16093 (save-match-data
16094 (beginning-of-line)
16095 (and (looking-at "^\\s-*:\\([^:\n]+\\):")
16096 (null (string= (match-string 1) "END"))
16097 (match-string 1))))
16098 org-last-set-property))
16099 (property (org-icompleting-read
16100 (concat "Property"
16101 (if default-prop (concat " [" default-prop "]") "")
16102 ": ")
16103 (mapcar 'list keys)
16104 nil nil nil nil
16105 default-prop)))
16106 (if (member property keys)
16107 property
16108 (or (cdr (assoc (downcase property)
16109 (mapcar (lambda (x) (cons (downcase x) x))
16110 keys)))
16111 property))))
16113 (defun org-set-property-and-value (use-last)
16114 "Allow to set [PROPERTY]: [value] direction from prompt.
16115 When use-default, don't even ask, just use the last
16116 \"[PROPERTY]: [value]\" string from the history."
16117 (interactive "P")
16118 (let* ((completion-ignore-case t)
16119 (pv (or (and use-last org-last-set-property-value)
16120 (org-completing-read
16121 "Enter a \"[Property]: [value]\" pair: "
16122 nil nil nil nil nil
16123 org-last-set-property-value)))
16124 prop val)
16125 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16126 (setq prop (match-string 1 pv)
16127 val (match-string 2 pv))
16128 (org-set-property prop val))))
16130 (defun org-set-property (property value)
16131 "In the current entry, set PROPERTY to VALUE.
16132 When called interactively, this will prompt for a property name, offering
16133 completion on existing and default properties. And then it will prompt
16134 for a value, offering completion either on allowed values (via an inherited
16135 xxx_ALL property) or on existing values in other instances of this property
16136 in the current file."
16137 (interactive (list nil nil))
16138 (let* ((property (or property (org-read-property-name)))
16139 (value (or value (org-read-property-value property)))
16140 (fn (cdr (assoc property org-properties-postprocess-alist))))
16141 (setq org-last-set-property property)
16142 (setq org-last-set-property-value (concat property ": " value))
16143 ;; Possibly postprocess the inserted value:
16144 (when fn (setq value (funcall fn value)))
16145 (unless (equal (org-entry-get nil property) value)
16146 (org-entry-put nil property value))))
16148 (defun org-delete-property (property)
16149 "In the current entry, delete PROPERTY."
16150 (interactive
16151 (let* ((completion-ignore-case t)
16152 (cat (org-entry-get (point) "CATEGORY"))
16153 (props0 (org-entry-properties nil 'standard))
16154 (props (if cat props0
16155 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16156 (prop (if (< 1 (length props))
16157 (org-icompleting-read "Property: " props nil t)
16158 (caar props))))
16159 (list prop)))
16160 (if (not property)
16161 (message "No property to delete in this entry")
16162 (org-entry-delete nil property)
16163 (message "Property \"%s\" deleted" property)))
16165 (defun org-delete-property-globally (property)
16166 "Remove PROPERTY globally, from all entries."
16167 (interactive
16168 (let* ((completion-ignore-case t)
16169 (prop (org-icompleting-read
16170 "Globally remove property: "
16171 (mapcar 'list (org-buffer-property-keys)))))
16172 (list prop)))
16173 (save-excursion
16174 (save-restriction
16175 (widen)
16176 (goto-char (point-min))
16177 (let ((cnt 0))
16178 (while (re-search-forward
16179 (org-re-property property)
16180 nil t)
16181 (setq cnt (1+ cnt))
16182 (delete-region (match-beginning 0) (1+ (point-at-eol))))
16183 (message "Property \"%s\" removed from %d entries" property cnt)))))
16185 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16187 (defun org-compute-property-at-point ()
16188 "Compute the property at point.
16189 This looks for an enclosing column format, extracts the operator and
16190 then applies it to the property in the column format's scope."
16191 (interactive)
16192 (unless (org-at-property-p)
16193 (user-error "Not at a property"))
16194 (let ((prop (org-match-string-no-properties 2)))
16195 (org-columns-get-format-and-top-level)
16196 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16197 (user-error "No operator defined for property %s" prop))
16198 (org-columns-compute prop)))
16200 (defvar org-property-allowed-value-functions nil
16201 "Hook for functions supplying allowed values for a specific property.
16202 The functions must take a single argument, the name of the property, and
16203 return a flat list of allowed values. If \":ETC\" is one of
16204 the values, this means that these values are intended as defaults for
16205 completion, but that other values should be allowed too.
16206 The functions must return nil if they are not responsible for this
16207 property.")
16209 (defun org-property-get-allowed-values (pom property &optional table)
16210 "Get allowed values for the property PROPERTY.
16211 When TABLE is non-nil, return an alist that can directly be used for
16212 completion."
16213 (let (vals)
16214 (cond
16215 ((equal property "TODO")
16216 (setq vals (org-with-point-at pom
16217 (append org-todo-keywords-1 '("")))))
16218 ((equal property "PRIORITY")
16219 (let ((n org-lowest-priority))
16220 (while (>= n org-highest-priority)
16221 (push (char-to-string n) vals)
16222 (setq n (1- n)))))
16223 ((member property org-special-properties))
16224 ((setq vals (run-hook-with-args-until-success
16225 'org-property-allowed-value-functions property)))
16227 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16228 (when (and vals (string-match "\\S-" vals))
16229 (setq vals (car (read-from-string (concat "(" vals ")"))))
16230 (setq vals (mapcar (lambda (x)
16231 (cond ((stringp x) x)
16232 ((numberp x) (number-to-string x))
16233 ((symbolp x) (symbol-name x))
16234 (t "???")))
16235 vals)))))
16236 (when (member ":ETC" vals)
16237 (setq vals (remove ":ETC" vals))
16238 (org-add-props (car vals) '(org-unrestricted t)))
16239 (if table (mapcar 'list vals) vals)))
16241 (defun org-property-previous-allowed-value (&optional previous)
16242 "Switch to the next allowed value for this property."
16243 (interactive)
16244 (org-property-next-allowed-value t))
16246 (defun org-property-next-allowed-value (&optional previous)
16247 "Switch to the next allowed value for this property."
16248 (interactive)
16249 (unless (org-at-property-p)
16250 (user-error "Not at a property"))
16251 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16252 (key (match-string 2))
16253 (value (match-string 3))
16254 (allowed (or (org-property-get-allowed-values (point) key)
16255 (and (member value '("[ ]" "[-]" "[X]"))
16256 '("[ ]" "[X]"))))
16257 (heading (save-match-data (nth 4 (org-heading-components))))
16258 nval)
16259 (unless allowed
16260 (user-error "Allowed values for this property have not been defined"))
16261 (if previous (setq allowed (reverse allowed)))
16262 (if (member value allowed)
16263 (setq nval (car (cdr (member value allowed)))))
16264 (setq nval (or nval (car allowed)))
16265 (if (equal nval value)
16266 (user-error "Only one allowed value for this property"))
16267 (org-at-property-p)
16268 (replace-match (concat " :" key ": " nval) t t)
16269 (org-indent-line)
16270 (beginning-of-line 1)
16271 (skip-chars-forward " \t")
16272 (when (equal prop org-effort-property)
16273 (org-refresh-property
16274 '((effort . identity)
16275 (effort-minutes . org-duration-string-to-minutes))
16276 nval)
16277 (when (string= org-clock-current-task heading)
16278 (setq org-clock-effort nval)
16279 (org-clock-update-mode-line)))
16280 (run-hook-with-args 'org-property-changed-functions key nval)))
16282 (defun org-find-olp (path &optional this-buffer)
16283 "Return a marker pointing to the entry at outline path OLP.
16284 If anything goes wrong, throw an error.
16285 You can wrap this call to catch the error like this:
16287 (condition-case msg
16288 (org-mobile-locate-entry (match-string 4))
16289 (error (nth 1 msg)))
16291 The return value will then be either a string with the error message,
16292 or a marker if everything is OK.
16294 If THIS-BUFFER is set, the outline path does not contain a file,
16295 only headings."
16296 (let* ((file (if this-buffer buffer-file-name (pop path)))
16297 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16298 (level 1)
16299 (lmin 1)
16300 (lmax 1)
16301 limit re end found pos heading cnt flevel)
16302 (unless buffer (error "File not found :%s" file))
16303 (with-current-buffer buffer
16304 (save-excursion
16305 (save-restriction
16306 (widen)
16307 (setq limit (point-max))
16308 (goto-char (point-min))
16309 (while (setq heading (pop path))
16310 (setq re (format org-complex-heading-regexp-format
16311 (regexp-quote heading)))
16312 (setq cnt 0 pos (point))
16313 (while (re-search-forward re end t)
16314 (setq level (- (match-end 1) (match-beginning 1)))
16315 (if (and (>= level lmin) (<= level lmax))
16316 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16317 (when (= cnt 0) (error "Heading not found on level %d: %s"
16318 lmax heading))
16319 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16320 lmax heading))
16321 (goto-char found)
16322 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16323 (setq end (save-excursion (org-end-of-subtree t t))))
16324 (when (org-at-heading-p)
16325 (point-marker)))))))
16327 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16328 "Find node HEADING in BUFFER.
16329 Return a marker to the heading if it was found, or nil if not.
16330 If POS-ONLY is set, return just the position instead of a marker.
16332 The heading text must match exact, but it may have a TODO keyword,
16333 a priority cookie and tags in the standard locations."
16334 (with-current-buffer (or buffer (current-buffer))
16335 (save-excursion
16336 (save-restriction
16337 (widen)
16338 (goto-char (point-min))
16339 (let (case-fold-search)
16340 (if (re-search-forward
16341 (format org-complex-heading-regexp-format
16342 (regexp-quote heading)) nil t)
16343 (if pos-only
16344 (match-beginning 0)
16345 (move-marker (make-marker) (match-beginning 0)))))))))
16347 (defun org-find-exact-heading-in-directory (heading &optional dir)
16348 "Find Org node headline HEADING in all .org files in directory DIR.
16349 When the target headline is found, return a marker to this location."
16350 (let ((files (directory-files (or dir default-directory)
16351 t "\\`[^.#].*\\.org\\'"))
16352 file visiting m buffer)
16353 (catch 'found
16354 (while (setq file (pop files))
16355 (message "trying %s" file)
16356 (setq visiting (org-find-base-buffer-visiting file))
16357 (setq buffer (or visiting (find-file-noselect file)))
16358 (setq m (org-find-exact-headline-in-buffer
16359 heading buffer))
16360 (when (and (not m) (not visiting)) (kill-buffer buffer))
16361 (and m (throw 'found m))))))
16363 (defun org-find-entry-with-id (ident)
16364 "Locate the entry that contains the ID property with exact value IDENT.
16365 IDENT can be a string, a symbol or a number, this function will search for
16366 the string representation of it.
16367 Return the position where this entry starts, or nil if there is no such entry."
16368 (interactive "sID: ")
16369 (let ((id (cond
16370 ((stringp ident) ident)
16371 ((symbol-name ident) (symbol-name ident))
16372 ((numberp ident) (number-to-string ident))
16373 (t (error "IDENT %s must be a string, symbol or number" ident))))
16374 (case-fold-search nil))
16375 (save-excursion
16376 (save-restriction
16377 (widen)
16378 (goto-char (point-min))
16379 (when (re-search-forward
16380 (concat "^[ \t]*:ID:[ \t]+" (regexp-quote id) "[ \t]*$")
16381 nil t)
16382 (org-back-to-heading t)
16383 (point))))))
16385 ;;;; Timestamps
16387 (defvar org-last-changed-timestamp nil)
16388 (defvar org-last-inserted-timestamp nil
16389 "The last time stamp inserted with `org-insert-time-stamp'.")
16390 (defvar org-ts-what) ; dynamically scoped parameter
16392 (defun org-time-stamp (arg &optional inactive)
16393 "Prompt for a date/time and insert a time stamp.
16394 If the user specifies a time like HH:MM or if this command is
16395 called with at least one prefix argument, the time stamp contains
16396 the date and the time. Otherwise, only the date is be included.
16398 All parts of a date not specified by the user is filled in from
16399 the current date/time. So if you just press return without
16400 typing anything, the time stamp will represent the current
16401 date/time.
16403 If there is already a timestamp at the cursor, it will be
16404 modified.
16406 With two universal prefix arguments, insert an active timestamp
16407 with the current time without prompting the user.
16409 When called from lisp, the timestamp is inactive if INACTIVE is
16410 non-nil."
16411 (interactive "P")
16412 (let* ((ts nil)
16413 (default-time
16414 ;; Default time is either today, or, when entering a range,
16415 ;; the range start.
16416 (if (or (and (org-at-timestamp-p t) (setq ts (match-string 0)))
16417 (save-excursion
16418 (re-search-backward
16419 (concat org-ts-regexp "--?-?\\=") ; 1-3 minuses
16420 (- (point) 20) t)))
16421 (apply 'encode-time (org-parse-time-string (match-string 1)))
16422 (current-time)))
16423 (default-input (and ts (org-get-compact-tod ts)))
16424 (repeater (save-excursion
16425 (save-match-data
16426 (beginning-of-line)
16427 (when (re-search-forward
16428 "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ;;\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
16429 (save-excursion (progn (end-of-line) (point))) t)
16430 (match-string 0)))))
16431 org-time-was-given org-end-time-was-given time)
16432 (cond
16433 ((and (org-at-timestamp-p t)
16434 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16435 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16436 (insert "--")
16437 (setq time (let ((this-command this-command))
16438 (org-read-date arg 'totime nil nil
16439 default-time default-input inactive)))
16440 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16441 ((org-at-timestamp-p t)
16442 (setq time (let ((this-command this-command))
16443 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16444 (when (org-at-timestamp-p t) ; just to get the match data
16445 ; (setq inactive (eq (char-after (match-beginning 0)) ?\[))
16446 (replace-match "")
16447 (setq org-last-changed-timestamp
16448 (org-insert-time-stamp
16449 time (or org-time-was-given arg)
16450 inactive nil nil (list org-end-time-was-given)))
16451 (when repeater (goto-char (1- (point))) (insert " " repeater)
16452 (setq org-last-changed-timestamp
16453 (concat (substring org-last-inserted-timestamp 0 -1)
16454 " " repeater ">"))))
16455 (message "Timestamp updated"))
16456 ((equal arg '(16))
16457 (org-insert-time-stamp (current-time) t inactive))
16459 (setq time (let ((this-command this-command))
16460 (org-read-date arg 'totime nil nil default-time default-input inactive)))
16461 (org-insert-time-stamp time (or org-time-was-given arg) inactive
16462 nil nil (list org-end-time-was-given))))))
16464 ;; FIXME: can we use this for something else, like computing time differences?
16465 (defun org-get-compact-tod (s)
16466 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16467 (let* ((t1 (match-string 1 s))
16468 (h1 (string-to-number (match-string 2 s)))
16469 (m1 (string-to-number (match-string 3 s)))
16470 (t2 (and (match-end 4) (match-string 5 s)))
16471 (h2 (and t2 (string-to-number (match-string 6 s))))
16472 (m2 (and t2 (string-to-number (match-string 7 s))))
16473 dh dm)
16474 (if (not t2)
16476 (setq dh (- h2 h1) dm (- m2 m1))
16477 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16478 (concat t1 "+" (number-to-string dh)
16479 (and (/= 0 dm) (format ":%02d" dm)))))))
16481 (defun org-time-stamp-inactive (&optional arg)
16482 "Insert an inactive time stamp.
16483 An inactive time stamp is enclosed in square brackets instead of angle
16484 brackets. It is inactive in the sense that it does not trigger agenda entries,
16485 does not link to the calendar and cannot be changed with the S-cursor keys.
16486 So these are more for recording a certain time/date."
16487 (interactive "P")
16488 (org-time-stamp arg 'inactive))
16490 (defvar org-date-ovl (make-overlay 1 1))
16491 (overlay-put org-date-ovl 'face 'org-date-selected)
16492 (org-detach-overlay org-date-ovl)
16494 (defvar org-ans1) ; dynamically scoped parameter
16495 (defvar org-ans2) ; dynamically scoped parameter
16497 (defvar org-plain-time-of-day-regexp) ; defined below
16499 (defvar org-overriding-default-time nil) ; dynamically scoped
16500 (defvar org-read-date-overlay nil)
16501 (defvar org-dcst nil) ; dynamically scoped
16502 (defvar org-read-date-history nil)
16503 (defvar org-read-date-final-answer nil)
16504 (defvar org-read-date-analyze-futurep nil)
16505 (defvar org-read-date-analyze-forced-year nil)
16506 (defvar org-read-date-inactive)
16508 (defvar org-read-date-minibuffer-local-map
16509 (let* ((org-replace-disputed-keys nil)
16510 (map (make-sparse-keymap)))
16511 (set-keymap-parent map minibuffer-local-map)
16512 (org-defkey map (kbd ".")
16513 (lambda () (interactive)
16514 ;; Are we at the beginning of the prompt?
16515 (if (looking-back "^[^:]+: ")
16516 (org-eval-in-calendar '(calendar-goto-today))
16517 (insert "."))))
16518 (org-defkey map (kbd "C-.")
16519 (lambda () (interactive)
16520 (org-eval-in-calendar '(calendar-goto-today))))
16521 (org-defkey map [(meta shift left)]
16522 (lambda () (interactive)
16523 (org-eval-in-calendar '(calendar-backward-month 1))))
16524 (org-defkey map [(meta shift right)]
16525 (lambda () (interactive)
16526 (org-eval-in-calendar '(calendar-forward-month 1))))
16527 (org-defkey map [(meta shift up)]
16528 (lambda () (interactive)
16529 (org-eval-in-calendar '(calendar-backward-year 1))))
16530 (org-defkey map [(meta shift down)]
16531 (lambda () (interactive)
16532 (org-eval-in-calendar '(calendar-forward-year 1))))
16533 (org-defkey map [?\e (shift left)]
16534 (lambda () (interactive)
16535 (org-eval-in-calendar '(calendar-backward-month 1))))
16536 (org-defkey map [?\e (shift right)]
16537 (lambda () (interactive)
16538 (org-eval-in-calendar '(calendar-forward-month 1))))
16539 (org-defkey map [?\e (shift up)]
16540 (lambda () (interactive)
16541 (org-eval-in-calendar '(calendar-backward-year 1))))
16542 (org-defkey map [?\e (shift down)]
16543 (lambda () (interactive)
16544 (org-eval-in-calendar '(calendar-forward-year 1))))
16545 (org-defkey map [(shift up)]
16546 (lambda () (interactive)
16547 (org-eval-in-calendar '(calendar-backward-week 1))))
16548 (org-defkey map [(shift down)]
16549 (lambda () (interactive)
16550 (org-eval-in-calendar '(calendar-forward-week 1))))
16551 (org-defkey map [(shift left)]
16552 (lambda () (interactive)
16553 (org-eval-in-calendar '(calendar-backward-day 1))))
16554 (org-defkey map [(shift right)]
16555 (lambda () (interactive)
16556 (org-eval-in-calendar '(calendar-forward-day 1))))
16557 (org-defkey map "!"
16558 (lambda () (interactive)
16559 (org-eval-in-calendar '(diary-view-entries))
16560 (message "")))
16561 (org-defkey map ">"
16562 (lambda () (interactive)
16563 (org-eval-in-calendar '(calendar-scroll-left 1))))
16564 (org-defkey map "<"
16565 (lambda () (interactive)
16566 (org-eval-in-calendar '(calendar-scroll-right 1))))
16567 (org-defkey map "\C-v"
16568 (lambda () (interactive)
16569 (org-eval-in-calendar
16570 '(calendar-scroll-left-three-months 1))))
16571 (org-defkey map "\M-v"
16572 (lambda () (interactive)
16573 (org-eval-in-calendar
16574 '(calendar-scroll-right-three-months 1))))
16575 map)
16576 "Keymap for minibuffer commands when using `org-read-date'.")
16578 (defvar org-def)
16579 (defvar org-defdecode)
16580 (defvar org-with-time)
16582 (defun org-read-date (&optional org-with-time to-time from-string prompt
16583 default-time default-input inactive)
16584 "Read a date, possibly a time, and make things smooth for the user.
16585 The prompt will suggest to enter an ISO date, but you can also enter anything
16586 which will at least partially be understood by `parse-time-string'.
16587 Unrecognized parts of the date will default to the current day, month, year,
16588 hour and minute. If this command is called to replace a timestamp at point,
16589 or to enter the second timestamp of a range, the default time is taken
16590 from the existing stamp. Furthermore, the command prefers the future,
16591 so if you are giving a date where the year is not given, and the day-month
16592 combination is already past in the current year, it will assume you
16593 mean next year. For details, see the manual. A few examples:
16595 3-2-5 --> 2003-02-05
16596 feb 15 --> currentyear-02-15
16597 2/15 --> currentyear-02-15
16598 sep 12 9 --> 2009-09-12
16599 12:45 --> today 12:45
16600 22 sept 0:34 --> currentyear-09-22 0:34
16601 12 --> currentyear-currentmonth-12
16602 Fri --> nearest Friday after today
16603 -Tue --> last Tuesday
16604 etc.
16606 Furthermore you can specify a relative date by giving, as the *first* thing
16607 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16608 change in days weeks, months, years.
16609 With a single plus or minus, the date is relative to today. With a double
16610 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16611 +4d --> four days from today
16612 +4 --> same as above
16613 +2w --> two weeks from today
16614 ++5 --> five days from default date
16616 The function understands only English month and weekday abbreviations.
16618 While prompting, a calendar is popped up - you can also select the
16619 date with the mouse (button 1). The calendar shows a period of three
16620 months. To scroll it to other months, use the keys `>' and `<'.
16621 If you don't like the calendar, turn it off with
16622 \(setq org-read-date-popup-calendar nil)
16624 With optional argument TO-TIME, the date will immediately be converted
16625 to an internal time.
16626 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16627 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16628 still enter a time, and this function will inform the calling routine
16629 about this change. The calling routine may then choose to change the
16630 format used to insert the time stamp into the buffer to include the time.
16631 With optional argument FROM-STRING, read from this string instead from
16632 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16633 the time/date that is used for everything that is not specified by the
16634 user."
16635 (require 'parse-time)
16636 (let* ((org-time-stamp-rounding-minutes
16637 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16638 (org-dcst org-display-custom-times)
16639 (ct (org-current-time))
16640 (org-def (or org-overriding-default-time default-time ct))
16641 (org-defdecode (decode-time org-def))
16642 (dummy (progn
16643 (when (< (nth 2 org-defdecode) org-extend-today-until)
16644 (setcar (nthcdr 2 org-defdecode) -1)
16645 (setcar (nthcdr 1 org-defdecode) 59)
16646 (setq org-def (apply 'encode-time org-defdecode)
16647 org-defdecode (decode-time org-def)))))
16648 (mouse-autoselect-window nil) ; Don't let the mouse jump
16649 (calendar-frame-setup nil)
16650 (calendar-setup nil)
16651 (calendar-move-hook nil)
16652 (calendar-view-diary-initially-flag nil)
16653 (calendar-view-holidays-initially-flag nil)
16654 (timestr (format-time-string
16655 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16656 (prompt (concat (if prompt (concat prompt " ") "")
16657 (format "Date+time [%s]: " timestr)))
16658 ans (org-ans0 "") org-ans1 org-ans2 final)
16660 (cond
16661 (from-string (setq ans from-string))
16662 (org-read-date-popup-calendar
16663 (save-excursion
16664 (save-window-excursion
16665 (calendar)
16666 (org-eval-in-calendar '(setq cursor-type nil) t)
16667 (unwind-protect
16668 (progn
16669 (calendar-forward-day (- (time-to-days org-def)
16670 (calendar-absolute-from-gregorian
16671 (calendar-current-date))))
16672 (org-eval-in-calendar nil t)
16673 (let* ((old-map (current-local-map))
16674 (map (copy-keymap calendar-mode-map))
16675 (minibuffer-local-map
16676 (copy-keymap org-read-date-minibuffer-local-map)))
16677 (org-defkey map (kbd "RET") 'org-calendar-select)
16678 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16679 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16680 (unwind-protect
16681 (progn
16682 (use-local-map map)
16683 (setq org-read-date-inactive inactive)
16684 (add-hook 'post-command-hook 'org-read-date-display)
16685 (setq org-ans0 (read-string prompt default-input
16686 'org-read-date-history nil))
16687 ;; org-ans0: from prompt
16688 ;; org-ans1: from mouse click
16689 ;; org-ans2: from calendar motion
16690 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16691 (remove-hook 'post-command-hook 'org-read-date-display)
16692 (use-local-map old-map)
16693 (when org-read-date-overlay
16694 (delete-overlay org-read-date-overlay)
16695 (setq org-read-date-overlay nil)))))
16696 (bury-buffer "*Calendar*")))))
16698 (t ; Naked prompt only
16699 (unwind-protect
16700 (setq ans (read-string prompt default-input
16701 'org-read-date-history timestr))
16702 (when org-read-date-overlay
16703 (delete-overlay org-read-date-overlay)
16704 (setq org-read-date-overlay nil)))))
16706 (setq final (org-read-date-analyze ans org-def org-defdecode))
16708 (when org-read-date-analyze-forced-year
16709 (message "Year was forced into %s"
16710 (if org-read-date-force-compatible-dates
16711 "compatible range (1970-2037)"
16712 "range representable on this machine"))
16713 (ding))
16715 ;; One round trip to get rid of 34th of August and stuff like that....
16716 (setq final (decode-time (apply 'encode-time final)))
16718 (setq org-read-date-final-answer ans)
16720 (if to-time
16721 (apply 'encode-time final)
16722 (if (and (boundp 'org-time-was-given) org-time-was-given)
16723 (format "%04d-%02d-%02d %02d:%02d"
16724 (nth 5 final) (nth 4 final) (nth 3 final)
16725 (nth 2 final) (nth 1 final))
16726 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
16728 (defun org-read-date-display ()
16729 "Display the current date prompt interpretation in the minibuffer."
16730 (when org-read-date-display-live
16731 (when org-read-date-overlay
16732 (delete-overlay org-read-date-overlay))
16733 (when (minibufferp (current-buffer))
16734 (save-excursion
16735 (end-of-line 1)
16736 (while (not (equal (buffer-substring
16737 (max (point-min) (- (point) 4)) (point))
16738 " "))
16739 (insert " ")))
16740 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
16741 " " (or org-ans1 org-ans2)))
16742 (org-end-time-was-given nil)
16743 (f (org-read-date-analyze ans org-def org-defdecode))
16744 (fmts (if org-dcst
16745 org-time-stamp-custom-formats
16746 org-time-stamp-formats))
16747 (fmt (if (or org-with-time
16748 (and (boundp 'org-time-was-given) org-time-was-given))
16749 (cdr fmts)
16750 (car fmts)))
16751 (txt (format-time-string fmt (apply 'encode-time f)))
16752 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
16753 (txt (concat "=> " txt)))
16754 (when (and org-end-time-was-given
16755 (string-match org-plain-time-of-day-regexp txt))
16756 (setq txt (concat (substring txt 0 (match-end 0)) "-"
16757 org-end-time-was-given
16758 (substring txt (match-end 0)))))
16759 (when org-read-date-analyze-futurep
16760 (setq txt (concat txt " (=>F)")))
16761 (setq org-read-date-overlay
16762 (make-overlay (1- (point-at-eol)) (point-at-eol)))
16763 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
16765 (defun org-read-date-analyze (ans org-def org-defdecode)
16766 "Analyze the combined answer of the date prompt."
16767 ;; FIXME: cleanup and comment
16768 (let ((nowdecode (decode-time (current-time)))
16769 delta deltan deltaw deltadef year month day
16770 hour minute second wday pm h2 m2 tl wday1
16771 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
16772 (setq org-read-date-analyze-futurep nil
16773 org-read-date-analyze-forced-year nil)
16774 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
16775 (setq ans "+0"))
16777 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
16778 (setq ans (replace-match "" t t ans)
16779 deltan (car delta)
16780 deltaw (nth 1 delta)
16781 deltadef (nth 2 delta)))
16783 ;; Check if there is an iso week date in there. If yes, store the
16784 ;; info and postpone interpreting it until the rest of the parsing
16785 ;; is done.
16786 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
16787 (setq iso-year (if (match-end 1)
16788 (org-small-year-to-year
16789 (string-to-number (match-string 1 ans))))
16790 iso-weekday (if (match-end 3)
16791 (string-to-number (match-string 3 ans)))
16792 iso-week (string-to-number (match-string 2 ans)))
16793 (setq ans (replace-match "" t t ans)))
16795 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
16796 (when (string-match
16797 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
16798 (setq year (if (match-end 2)
16799 (string-to-number (match-string 2 ans))
16800 (progn (setq kill-year t)
16801 (string-to-number (format-time-string "%Y"))))
16802 month (string-to-number (match-string 3 ans))
16803 day (string-to-number (match-string 4 ans)))
16804 (if (< year 100) (setq year (+ 2000 year)))
16805 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16806 t nil ans)))
16808 ;; Help matching dotted european dates
16809 (when (string-match
16810 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
16811 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
16812 (setq kill-year t)
16813 (string-to-number (format-time-string "%Y")))
16814 day (string-to-number (match-string 1 ans))
16815 month (string-to-number (match-string 2 ans))
16816 ans (replace-match (format "%04d-%02d-%02d" year month day)
16817 t nil ans)))
16819 ;; Help matching american dates, like 5/30 or 5/30/7
16820 (when (string-match
16821 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
16822 (setq year (if (match-end 4)
16823 (string-to-number (match-string 4 ans))
16824 (progn (setq kill-year t)
16825 (string-to-number (format-time-string "%Y"))))
16826 month (string-to-number (match-string 1 ans))
16827 day (string-to-number (match-string 2 ans)))
16828 (if (< year 100) (setq year (+ 2000 year)))
16829 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
16830 t nil ans)))
16831 ;; Help matching am/pm times, because `parse-time-string' does not do that.
16832 ;; If there is a time with am/pm, and *no* time without it, we convert
16833 ;; so that matching will be successful.
16834 (loop for i from 1 to 2 do ; twice, for end time as well
16835 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
16836 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
16837 (setq hour (string-to-number (match-string 1 ans))
16838 minute (if (match-end 3)
16839 (string-to-number (match-string 3 ans))
16841 pm (equal ?p
16842 (string-to-char (downcase (match-string 4 ans)))))
16843 (if (and (= hour 12) (not pm))
16844 (setq hour 0)
16845 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
16846 (setq ans (replace-match (format "%02d:%02d" hour minute)
16847 t t ans))))
16849 ;; Check if a time range is given as a duration
16850 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
16851 (setq hour (string-to-number (match-string 1 ans))
16852 h2 (+ hour (string-to-number (match-string 3 ans)))
16853 minute (string-to-number (match-string 2 ans))
16854 m2 (+ minute (if (match-end 5) (string-to-number
16855 (match-string 5 ans))0)))
16856 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
16857 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
16858 t t ans)))
16860 ;; Check if there is a time range
16861 (when (boundp 'org-end-time-was-given)
16862 (setq org-time-was-given nil)
16863 (when (and (string-match org-plain-time-of-day-regexp ans)
16864 (match-end 8))
16865 (setq org-end-time-was-given (match-string 8 ans))
16866 (setq ans (concat (substring ans 0 (match-beginning 7))
16867 (substring ans (match-end 7))))))
16869 (setq tl (parse-time-string ans)
16870 day (or (nth 3 tl) (nth 3 org-defdecode))
16871 month (or (nth 4 tl)
16872 (if (and org-read-date-prefer-future
16873 (nth 3 tl) (< (nth 3 tl) (nth 3 nowdecode)))
16874 (prog1 (1+ (nth 4 nowdecode)) (setq futurep t))
16875 (nth 4 org-defdecode)))
16876 year (or (and (not kill-year) (nth 5 tl))
16877 (if (and org-read-date-prefer-future
16878 (nth 4 tl) (< (nth 4 tl) (nth 4 nowdecode)))
16879 (prog1 (1+ (nth 5 nowdecode)) (setq futurep t))
16880 (nth 5 org-defdecode)))
16881 hour (or (nth 2 tl) (nth 2 org-defdecode))
16882 minute (or (nth 1 tl) (nth 1 org-defdecode))
16883 second (or (nth 0 tl) 0)
16884 wday (nth 6 tl))
16886 (when (and (eq org-read-date-prefer-future 'time)
16887 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
16888 (equal day (nth 3 nowdecode))
16889 (equal month (nth 4 nowdecode))
16890 (equal year (nth 5 nowdecode))
16891 (nth 2 tl)
16892 (or (< (nth 2 tl) (nth 2 nowdecode))
16893 (and (= (nth 2 tl) (nth 2 nowdecode))
16894 (nth 1 tl)
16895 (< (nth 1 tl) (nth 1 nowdecode)))))
16896 (setq day (1+ day)
16897 futurep t))
16899 ;; Special date definitions below
16900 (cond
16901 (iso-week
16902 ;; There was an iso week
16903 (require 'cal-iso)
16904 (setq futurep nil)
16905 (setq year (or iso-year year)
16906 day (or iso-weekday wday 1)
16907 wday nil ; to make sure that the trigger below does not match
16908 iso-date (calendar-gregorian-from-absolute
16909 (calendar-absolute-from-iso
16910 (list iso-week day year))))
16911 ; FIXME: Should we also push ISO weeks into the future?
16912 ; (when (and org-read-date-prefer-future
16913 ; (not iso-year)
16914 ; (< (calendar-absolute-from-gregorian iso-date)
16915 ; (time-to-days (current-time))))
16916 ; (setq year (1+ year)
16917 ; iso-date (calendar-gregorian-from-absolute
16918 ; (calendar-absolute-from-iso
16919 ; (list iso-week day year)))))
16920 (setq month (car iso-date)
16921 year (nth 2 iso-date)
16922 day (nth 1 iso-date)))
16923 (deltan
16924 (setq futurep nil)
16925 (unless deltadef
16926 (let ((now (decode-time (current-time))))
16927 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
16928 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
16929 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
16930 ((equal deltaw "m") (setq month (+ month deltan)))
16931 ((equal deltaw "y") (setq year (+ year deltan)))))
16932 ((and wday (not (nth 3 tl)))
16933 ;; Weekday was given, but no day, so pick that day in the week
16934 ;; on or after the derived date.
16935 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
16936 (unless (equal wday wday1)
16937 (setq day (+ day (% (- wday wday1 -7) 7))))))
16938 (if (and (boundp 'org-time-was-given)
16939 (nth 2 tl))
16940 (setq org-time-was-given t))
16941 (if (< year 100) (setq year (+ 2000 year)))
16942 ;; Check of the date is representable
16943 (if org-read-date-force-compatible-dates
16944 (progn
16945 (if (< year 1970)
16946 (setq year 1970 org-read-date-analyze-forced-year t))
16947 (if (> year 2037)
16948 (setq year 2037 org-read-date-analyze-forced-year t)))
16949 (condition-case nil
16950 (ignore (encode-time second minute hour day month year))
16951 (error
16952 (setq year (nth 5 org-defdecode))
16953 (setq org-read-date-analyze-forced-year t))))
16954 (setq org-read-date-analyze-futurep futurep)
16955 (list second minute hour day month year)))
16957 (defvar parse-time-weekdays)
16958 (defun org-read-date-get-relative (s today default)
16959 "Check string S for special relative date string.
16960 TODAY and DEFAULT are internal times, for today and for a default.
16961 Return shift list (N what def-flag)
16962 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
16963 N is the number of WHATs to shift.
16964 DEF-FLAG is t when a double ++ or -- indicates shift relative to
16965 the DEFAULT date rather than TODAY."
16966 (require 'parse-time)
16967 (when (and
16968 (string-match
16969 (concat
16970 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
16971 "\\([0-9]+\\)?"
16972 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
16973 "\\([ \t]\\|$\\)") s)
16974 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
16975 (let* ((dir (if (> (match-end 1) (match-beginning 1))
16976 (string-to-char (substring (match-string 1 s) -1))
16977 ?+))
16978 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
16979 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
16980 (what (if (match-end 3) (match-string 3 s) "d"))
16981 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
16982 (date (if rel default today))
16983 (wday (nth 6 (decode-time date)))
16984 delta)
16985 (if wday1
16986 (progn
16987 (setq delta (mod (+ 7 (- wday1 wday)) 7))
16988 (if (= delta 0) (setq delta 7))
16989 (if (= dir ?-)
16990 (progn
16991 (setq delta (- delta 7))
16992 (if (= delta 0) (setq delta -7))))
16993 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
16994 (list delta "d" rel))
16995 (list (* n (if (= dir ?-) -1 1)) what rel)))))
16997 (defun org-order-calendar-date-args (arg1 arg2 arg3)
16998 "Turn a user-specified date into the internal representation.
16999 The internal representation needed by the calendar is (month day year).
17000 This is a wrapper to handle the brain-dead convention in calendar that
17001 user function argument order change dependent on argument order."
17002 (if (boundp 'calendar-date-style)
17003 (cond
17004 ((eq calendar-date-style 'american)
17005 (list arg1 arg2 arg3))
17006 ((eq calendar-date-style 'european)
17007 (list arg2 arg1 arg3))
17008 ((eq calendar-date-style 'iso)
17009 (list arg2 arg3 arg1)))
17010 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17011 (if (org-bound-and-true-p european-calendar-style)
17012 (list arg2 arg1 arg3)
17013 (list arg1 arg2 arg3)))))
17015 (defun org-eval-in-calendar (form &optional keepdate)
17016 "Eval FORM in the calendar window and return to current window.
17017 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17018 otherwise stick to the current value of `org-ans2'."
17019 (let ((sf (selected-frame))
17020 (sw (selected-window)))
17021 (select-window (get-buffer-window "*Calendar*" t))
17022 (eval form)
17023 (when (and (not keepdate) (calendar-cursor-to-date))
17024 (let* ((date (calendar-cursor-to-date))
17025 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17026 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17027 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17028 (select-window sw)
17029 (org-select-frame-set-input-focus sf)))
17031 (defun org-calendar-select ()
17032 "Return to `org-read-date' with the date currently selected.
17033 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17034 (interactive)
17035 (when (calendar-cursor-to-date)
17036 (let* ((date (calendar-cursor-to-date))
17037 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17038 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17039 (if (active-minibuffer-window) (exit-minibuffer))))
17041 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17042 "Insert a date stamp for the date given by the internal TIME.
17043 WITH-HM means use the stamp format that includes the time of the day.
17044 INACTIVE means use square brackets instead of angular ones, so that the
17045 stamp will not contribute to the agenda.
17046 PRE and POST are optional strings to be inserted before and after the
17047 stamp.
17048 The command returns the inserted time stamp."
17049 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17050 stamp)
17051 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17052 (insert-before-markers (or pre ""))
17053 (when (listp extra)
17054 (setq extra (car extra))
17055 (if (and (stringp extra)
17056 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17057 (setq extra (format "-%02d:%02d"
17058 (string-to-number (match-string 1 extra))
17059 (string-to-number (match-string 2 extra))))
17060 (setq extra nil)))
17061 (when extra
17062 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17063 (insert-before-markers (setq stamp (format-time-string fmt time)))
17064 (insert-before-markers (or post ""))
17065 (setq org-last-inserted-timestamp stamp)))
17067 (defun org-toggle-time-stamp-overlays ()
17068 "Toggle the use of custom time stamp formats."
17069 (interactive)
17070 (setq org-display-custom-times (not org-display-custom-times))
17071 (unless org-display-custom-times
17072 (let ((p (point-min)) (bmp (buffer-modified-p)))
17073 (while (setq p (next-single-property-change p 'display))
17074 (if (and (get-text-property p 'display)
17075 (eq (get-text-property p 'face) 'org-date))
17076 (remove-text-properties
17077 p (setq p (next-single-property-change p 'display))
17078 '(display t))))
17079 (set-buffer-modified-p bmp)))
17080 (if (featurep 'xemacs)
17081 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17082 (org-restart-font-lock)
17083 (setq org-table-may-need-update t)
17084 (if org-display-custom-times
17085 (message "Time stamps are overlaid with custom format")
17086 (message "Time stamp overlays removed")))
17088 (defun org-display-custom-time (beg end)
17089 "Overlay modified time stamp format over timestamp between BEG and END."
17090 (let* ((ts (buffer-substring beg end))
17091 t1 w1 with-hm tf time str w2 (off 0))
17092 (save-match-data
17093 (setq t1 (org-parse-time-string ts t))
17094 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17095 (setq off (- (match-end 0) (match-beginning 0)))))
17096 (setq end (- end off))
17097 (setq w1 (- end beg)
17098 with-hm (and (nth 1 t1) (nth 2 t1))
17099 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17100 time (org-fix-decoded-time t1)
17101 str (org-add-props
17102 (format-time-string
17103 (substring tf 1 -1) (apply 'encode-time time))
17104 nil 'mouse-face 'highlight)
17105 w2 (length str))
17106 (if (not (= w2 w1))
17107 (add-text-properties (1+ beg) (+ 2 beg)
17108 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17109 (if (featurep 'xemacs)
17110 (progn
17111 (put-text-property beg end 'invisible t)
17112 (put-text-property beg end 'end-glyph (make-glyph str)))
17113 (put-text-property beg end 'display str))))
17115 (defun org-translate-time (string)
17116 "Translate all timestamps in STRING to custom format.
17117 But do this only if the variable `org-display-custom-times' is set."
17118 (when org-display-custom-times
17119 (save-match-data
17120 (let* ((start 0)
17121 (re org-ts-regexp-both)
17122 t1 with-hm inactive tf time str beg end)
17123 (while (setq start (string-match re string start))
17124 (setq beg (match-beginning 0)
17125 end (match-end 0)
17126 t1 (save-match-data
17127 (org-parse-time-string (substring string beg end) t))
17128 with-hm (and (nth 1 t1) (nth 2 t1))
17129 inactive (equal (substring string beg (1+ beg)) "[")
17130 tf (funcall (if with-hm 'cdr 'car)
17131 org-time-stamp-custom-formats)
17132 time (org-fix-decoded-time t1)
17133 str (format-time-string
17134 (concat
17135 (if inactive "[" "<") (substring tf 1 -1)
17136 (if inactive "]" ">"))
17137 (apply 'encode-time time))
17138 string (replace-match str t t string)
17139 start (+ start (length str)))))))
17140 string)
17142 (defun org-fix-decoded-time (time)
17143 "Set 0 instead of nil for the first 6 elements of time.
17144 Don't touch the rest."
17145 (let ((n 0))
17146 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17148 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17150 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17151 "Difference between TIMESTAMP-STRING and now in days.
17152 If SECONDS is non-nil, return the difference in seconds."
17153 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17154 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17155 (funcall fdiff (current-time)))))
17157 (defun org-deadline-close (timestamp-string &optional ndays)
17158 "Is the time in TIMESTAMP-STRING close to the current date?"
17159 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17160 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17161 (not (org-entry-is-done-p))))
17163 (defun org-get-wdays (ts &optional delay zero-delay)
17164 "Get the deadline lead time appropriate for timestring TS.
17165 When DELAY is non-nil, get the delay time for scheduled items
17166 instead of the deadline lead time. When ZERO-DELAY is non-nil
17167 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17168 don't try to find the delay cookie in the scheduled timestamp."
17169 (let ((tv (if delay org-scheduled-delay-days
17170 org-deadline-warning-days)))
17171 (cond
17172 ((or (and delay (< tv 0))
17173 (and delay zero-delay (<= tv 0))
17174 (and (not delay) (<= tv 0)))
17175 ;; Enforce this value no matter what
17176 (- tv))
17177 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17178 ;; lead time is specified.
17179 (floor (* (string-to-number (match-string 1 ts))
17180 (cdr (assoc (match-string 2 ts)
17181 '(("d" . 1) ("w" . 7)
17182 ("m" . 30.4) ("y" . 365.25)
17183 ("h" . 0.041667)))))))
17184 ;; go for the default.
17185 (t tv))))
17187 (defun org-calendar-select-mouse (ev)
17188 "Return to `org-read-date' with the date currently selected.
17189 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17190 (interactive "e")
17191 (mouse-set-point ev)
17192 (when (calendar-cursor-to-date)
17193 (let* ((date (calendar-cursor-to-date))
17194 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17195 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17196 (if (active-minibuffer-window) (exit-minibuffer))))
17198 (defun org-check-deadlines (ndays)
17199 "Check if there are any deadlines due or past due.
17200 A deadline is considered due if it happens within `org-deadline-warning-days'
17201 days from today's date. If the deadline appears in an entry marked DONE,
17202 it is not shown. The prefix arg NDAYS can be used to test that many
17203 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17204 (interactive "P")
17205 (let* ((org-warn-days
17206 (cond
17207 ((equal ndays '(4)) 100000)
17208 (ndays (prefix-numeric-value ndays))
17209 (t (abs org-deadline-warning-days))))
17210 (case-fold-search nil)
17211 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17212 (callback
17213 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17215 (message "%d deadlines past-due or due within %d days"
17216 (org-occur regexp nil callback)
17217 org-warn-days)))
17219 (defsubst org-re-timestamp (type)
17220 "Return a regexp for timestamp TYPE.
17221 Allowed values for TYPE are:
17223 all: all timestamps
17224 active: only active timestamps (<...>)
17225 inactive: only inactive timestamps ([...])
17226 scheduled: only scheduled timestamps
17227 deadline: only deadline timestamps
17228 closed: only closed time-stamps
17230 When TYPE is nil, fall back on returning a regexp that matches
17231 both scheduled and deadline timestamps."
17232 (cond ((eq type 'all) "\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}\\(?: +[^]+0-9> \n -]+\\)?\\(?: +[0-9]\\{1,2\\}:[0-9]\\{2\\}\\)?\\)")
17233 ((eq type 'active) org-ts-regexp)
17234 ((eq type 'inactive) "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]")
17235 ((eq type 'scheduled) (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
17236 ((eq type 'deadline) (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17237 ((eq type 'closed) (concat org-closed-string " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^ \n>]*?\\)\\]"))
17238 ((eq type 'scheduled-or-deadline)
17239 (concat "\\<\\(?:" org-deadline-string "\\|" org-scheduled-string "\\) *<\\([^>]+\\)>"))))
17241 (defun org-check-before-date (date)
17242 "Check if there are deadlines or scheduled entries before DATE."
17243 (interactive (list (org-read-date)))
17244 (let ((case-fold-search nil)
17245 (regexp (org-re-timestamp org-ts-type))
17246 (callback
17247 (lambda () (time-less-p
17248 (org-time-string-to-time (match-string 1))
17249 (org-time-string-to-time date)))))
17250 (message "%d entries before %s"
17251 (org-occur regexp nil callback) date)))
17253 (defun org-check-after-date (date)
17254 "Check if there are deadlines or scheduled entries after DATE."
17255 (interactive (list (org-read-date)))
17256 (let ((case-fold-search nil)
17257 (regexp (org-re-timestamp org-ts-type))
17258 (callback
17259 (lambda () (not
17260 (time-less-p
17261 (org-time-string-to-time (match-string 1))
17262 (org-time-string-to-time date))))))
17263 (message "%d entries after %s"
17264 (org-occur regexp nil callback) date)))
17266 (defun org-check-dates-range (start-date end-date)
17267 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17268 (interactive (list (org-read-date nil nil nil "Range starts")
17269 (org-read-date nil nil nil "Range end")))
17270 (let ((case-fold-search nil)
17271 (regexp (org-re-timestamp org-ts-type))
17272 (callback
17273 (lambda ()
17274 (let ((match (match-string 1)))
17275 (and
17276 (not (time-less-p
17277 (org-time-string-to-time match)
17278 (org-time-string-to-time start-date)))
17279 (time-less-p
17280 (org-time-string-to-time match)
17281 (org-time-string-to-time end-date)))))))
17282 (message "%d entries between %s and %s"
17283 (org-occur regexp nil callback) start-date end-date)))
17285 (defun org-evaluate-time-range (&optional to-buffer)
17286 "Evaluate a time range by computing the difference between start and end.
17287 Normally the result is just printed in the echo area, but with prefix arg
17288 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17289 If the time range is actually in a table, the result is inserted into the
17290 next column.
17291 For time difference computation, a year is assumed to be exactly 365
17292 days in order to avoid rounding problems."
17293 (interactive "P")
17295 (org-clock-update-time-maybe)
17296 (save-excursion
17297 (unless (org-at-date-range-p t)
17298 (goto-char (point-at-bol))
17299 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17300 (if (not (org-at-date-range-p t))
17301 (user-error "Not at a time-stamp range, and none found in current line")))
17302 (let* ((ts1 (match-string 1))
17303 (ts2 (match-string 2))
17304 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17305 (match-end (match-end 0))
17306 (time1 (org-time-string-to-time ts1))
17307 (time2 (org-time-string-to-time ts2))
17308 (t1 (org-float-time time1))
17309 (t2 (org-float-time time2))
17310 (diff (abs (- t2 t1)))
17311 (negative (< (- t2 t1) 0))
17312 ;; (ys (floor (* 365 24 60 60)))
17313 (ds (* 24 60 60))
17314 (hs (* 60 60))
17315 (fy "%dy %dd %02d:%02d")
17316 (fy1 "%dy %dd")
17317 (fd "%dd %02d:%02d")
17318 (fd1 "%dd")
17319 (fh "%02d:%02d")
17320 y d h m align)
17321 (if havetime
17322 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17324 d (floor (/ diff ds)) diff (mod diff ds)
17325 h (floor (/ diff hs)) diff (mod diff hs)
17326 m (floor (/ diff 60)))
17327 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17329 d (floor (+ (/ diff ds) 0.5))
17330 h 0 m 0))
17331 (if (not to-buffer)
17332 (message "%s" (org-make-tdiff-string y d h m))
17333 (if (org-at-table-p)
17334 (progn
17335 (goto-char match-end)
17336 (setq align t)
17337 (and (looking-at " *|") (goto-char (match-end 0))))
17338 (goto-char match-end))
17339 (if (looking-at
17340 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17341 (replace-match ""))
17342 (if negative (insert " -"))
17343 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17344 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17345 (insert " " (format fh h m))))
17346 (if align (org-table-align))
17347 (message "Time difference inserted")))))
17349 (defun org-make-tdiff-string (y d h m)
17350 (let ((fmt "")
17351 (l nil))
17352 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17353 l (push y l)))
17354 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17355 l (push d l)))
17356 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17357 l (push h l)))
17358 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17359 l (push m l)))
17360 (apply 'format fmt (nreverse l))))
17362 (defun org-time-string-to-time (s &optional buffer pos)
17363 "Convert a timestamp string into internal time."
17364 (condition-case errdata
17365 (apply 'encode-time (org-parse-time-string s))
17366 (error (error "Bad timestamp `%s'%s\nError was: %s"
17367 s (if (not (and buffer pos))
17369 (format " at %d in buffer `%s'" pos buffer))
17370 (cdr errdata)))))
17372 (defun org-time-string-to-seconds (s)
17373 "Convert a timestamp string to a number of seconds."
17374 (org-float-time (org-time-string-to-time s)))
17376 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17377 "Convert a time stamp to an absolute day number.
17378 If there is a specifier for a cyclic time stamp, get the closest
17379 date to DAYNR.
17380 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17381 The variable `date' is bound by the calendar when this is called."
17382 (cond
17383 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17384 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17385 daynr
17386 (+ daynr 1000)))
17387 ((and daynr (string-match "\\+[0-9]+[hdwmy]" s))
17388 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17389 (time-to-days (current-time))) (match-string 0 s)
17390 prefer show-all))
17391 (t (time-to-days
17392 (condition-case errdata
17393 (apply 'encode-time (org-parse-time-string s))
17394 (error (error "Bad timestamp `%s'%s\nError was: %s"
17395 s (if (not (and buffer pos))
17397 (format " at %d in buffer `%s'" pos buffer))
17398 (cdr errdata))))))))
17400 (defun org-days-to-iso-week (days)
17401 "Return the iso week number."
17402 (require 'cal-iso)
17403 (car (calendar-iso-from-absolute days)))
17405 (defun org-small-year-to-year (year)
17406 "Convert 2-digit years into 4-digit years.
17407 38-99 are mapped into 1938-1999. 1-37 are mapped into 2001-2037.
17408 The year 2000 cannot be abbreviated. Any year larger than 99
17409 is returned unchanged."
17410 (if (< year 38)
17411 (setq year (+ 2000 year))
17412 (if (< year 100)
17413 (setq year (+ 1900 year))))
17414 year)
17416 (defun org-time-from-absolute (d)
17417 "Return the time corresponding to date D.
17418 D may be an absolute day number, or a calendar-type list (month day year)."
17419 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17420 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17422 (defun org-calendar-holiday ()
17423 "List of holidays, for Diary display in Org-mode."
17424 (require 'holidays)
17425 (let ((hl (funcall
17426 (if (fboundp 'calendar-check-holidays)
17427 'calendar-check-holidays 'check-calendar-holidays) date)))
17428 (if hl (mapconcat 'identity hl "; "))))
17430 (defun org-diary-sexp-entry (sexp entry date)
17431 "Process a SEXP diary ENTRY for DATE."
17432 (require 'diary-lib)
17433 (let ((result (if calendar-debug-sexp
17434 (let ((stack-trace-on-error t))
17435 (eval (car (read-from-string sexp))))
17436 (condition-case nil
17437 (eval (car (read-from-string sexp)))
17438 (error
17439 (beep)
17440 (message "Bad sexp at line %d in %s: %s"
17441 (org-current-line)
17442 (buffer-file-name) sexp)
17443 (sleep-for 2))))))
17444 (cond ((stringp result) (split-string result "; "))
17445 ((and (consp result)
17446 (not (consp (cdr result)))
17447 (stringp (cdr result))) (cdr result))
17448 ((and (consp result)
17449 (stringp (car result))) result)
17450 (result entry))))
17452 (defun org-diary-to-ical-string (frombuf)
17453 "Get iCalendar entries from diary entries in buffer FROMBUF.
17454 This uses the icalendar.el library."
17455 (let* ((tmpdir (if (featurep 'xemacs)
17456 (temp-directory)
17457 temporary-file-directory))
17458 (tmpfile (make-temp-name
17459 (expand-file-name "orgics" tmpdir)))
17460 buf rtn b e)
17461 (with-current-buffer frombuf
17462 (icalendar-export-region (point-min) (point-max) tmpfile)
17463 (setq buf (find-buffer-visiting tmpfile))
17464 (set-buffer buf)
17465 (goto-char (point-min))
17466 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17467 (setq b (match-beginning 0)))
17468 (goto-char (point-max))
17469 (if (re-search-backward "^END:VEVENT" nil t)
17470 (setq e (match-end 0)))
17471 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17472 (kill-buffer buf)
17473 (delete-file tmpfile)
17474 rtn))
17476 (defun org-closest-date (start current change prefer show-all)
17477 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17478 When PREFER is `past', return a date that is either CURRENT or past.
17479 When PREFER is `future', return a date that is either CURRENT or future.
17480 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17481 ;; Make the proper lists from the dates
17482 (catch 'exit
17483 (let ((a1 '(("h" . hour)
17484 ("d" . day)
17485 ("w" . week)
17486 ("m" . month)
17487 ("y" . year)))
17488 (shour (nth 2 (org-parse-time-string start)))
17489 dn dw sday cday n1 n2 n0
17490 d m y y1 y2 date1 date2 nmonths nm ny m2)
17492 (setq start (org-date-to-gregorian start)
17493 current (org-date-to-gregorian
17494 (if show-all
17495 current
17496 (time-to-days (current-time))))
17497 sday (calendar-absolute-from-gregorian start)
17498 cday (calendar-absolute-from-gregorian current))
17500 (if (<= cday sday) (throw 'exit sday))
17502 (if (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17503 (setq dn (string-to-number (match-string 1 change))
17504 dw (cdr (assoc (match-string 2 change) a1)))
17505 (user-error "Invalid change specifier: %s" change))
17506 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17507 (cond
17508 ((eq dw 'hour)
17509 (let ((missing-hours
17510 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17511 dn)))
17512 (setq n1 (if (zerop missing-hours) cday
17513 (- cday (1+ (floor (/ missing-hours 24)))))
17514 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17515 ((eq dw 'day)
17516 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17517 n2 (+ n1 dn)))
17518 ((eq dw 'year)
17519 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17520 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17521 (setq date1 (list m d y1)
17522 n1 (calendar-absolute-from-gregorian date1)
17523 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17524 n2 (calendar-absolute-from-gregorian date2)))
17525 ((eq dw 'month)
17526 ;; approx number of month between the two dates
17527 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17528 ;; How often does dn fit in there?
17529 (setq d (nth 1 start) m (car start) y (nth 2 start)
17530 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17531 m (+ m nm)
17532 ny (floor (/ m 12))
17533 y (+ y ny)
17534 m (- m (* ny 12)))
17535 (while (> m 12) (setq m (- m 12) y (1+ y)))
17536 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17537 (setq m2 (+ m dn) y2 y)
17538 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17539 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17540 (while (<= n2 cday)
17541 (setq n1 n2 m m2 y y2)
17542 (setq m2 (+ m dn) y2 y)
17543 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17544 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17545 ;; Make sure n1 is the earlier date
17546 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17547 (if show-all
17548 (cond
17549 ((eq prefer 'past) (if (= cday n2) n2 n1))
17550 ((eq prefer 'future) (if (= cday n1) n1 n2))
17551 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17552 (cond
17553 ((eq prefer 'past) (if (= cday n2) n2 n1))
17554 ((eq prefer 'future) (if (= cday n1) n1 n2))
17555 (t (if (= cday n1) n1 n2)))))))
17557 (defun org-date-to-gregorian (date)
17558 "Turn any specification of DATE into a Gregorian date for the calendar."
17559 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17560 ((and (listp date) (= (length date) 3)) date)
17561 ((stringp date)
17562 (setq date (org-parse-time-string date))
17563 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17564 ((listp date)
17565 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17567 (defun org-parse-time-string (s &optional nodefault)
17568 "Parse the standard Org-mode time string.
17569 This should be a lot faster than the normal `parse-time-string'.
17570 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17571 hour and minute fields will be nil if not given."
17572 (cond ((string-match org-ts-regexp0 s)
17573 (list 0
17574 (if (or (match-beginning 8) (not nodefault))
17575 (string-to-number (or (match-string 8 s) "0")))
17576 (if (or (match-beginning 7) (not nodefault))
17577 (string-to-number (or (match-string 7 s) "0")))
17578 (string-to-number (match-string 4 s))
17579 (string-to-number (match-string 3 s))
17580 (string-to-number (match-string 2 s))
17581 nil nil nil))
17582 ((string-match "^<[^>]+>$" s)
17583 (decode-time (seconds-to-time (org-matcher-time s))))
17584 (t (error "Not a standard Org-mode time string: %s" s))))
17586 (defun org-timestamp-up (&optional arg)
17587 "Increase the date item at the cursor by one.
17588 If the cursor is on the year, change the year. If it is on the month,
17589 the day or the time, change that.
17590 With prefix ARG, change by that many units."
17591 (interactive "p")
17592 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17594 (defun org-timestamp-down (&optional arg)
17595 "Decrease the date item at the cursor by one.
17596 If the cursor is on the year, change the year. If it is on the month,
17597 the day or the time, change that.
17598 With prefix ARG, change by that many units."
17599 (interactive "p")
17600 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17602 (defun org-timestamp-up-day (&optional arg)
17603 "Increase the date in the time stamp by one day.
17604 With prefix ARG, change that many days."
17605 (interactive "p")
17606 (if (and (not (org-at-timestamp-p t))
17607 (org-at-heading-p))
17608 (org-todo 'up)
17609 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17611 (defun org-timestamp-down-day (&optional arg)
17612 "Decrease the date in the time stamp by one day.
17613 With prefix ARG, change that many days."
17614 (interactive "p")
17615 (if (and (not (org-at-timestamp-p t))
17616 (org-at-heading-p))
17617 (org-todo 'down)
17618 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17620 (defun org-at-timestamp-p (&optional inactive-ok)
17621 "Determine if the cursor is in or at a timestamp."
17622 (interactive)
17623 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17624 (pos (point))
17625 (ans (or (looking-at tsr)
17626 (save-excursion
17627 (skip-chars-backward "^[<\n\r\t")
17628 (if (> (point) (point-min)) (backward-char 1))
17629 (and (looking-at tsr)
17630 (> (- (match-end 0) pos) -1))))))
17631 (and ans
17632 (boundp 'org-ts-what)
17633 (setq org-ts-what
17634 (cond
17635 ((= pos (match-beginning 0)) 'bracket)
17636 ;; Point is considered to be "on the bracket" whether
17637 ;; it's really on it or right after it.
17638 ((= pos (1- (match-end 0))) 'bracket)
17639 ((= pos (match-end 0)) 'after)
17640 ((org-pos-in-match-range pos 2) 'year)
17641 ((org-pos-in-match-range pos 3) 'month)
17642 ((org-pos-in-match-range pos 7) 'hour)
17643 ((org-pos-in-match-range pos 8) 'minute)
17644 ((or (org-pos-in-match-range pos 4)
17645 (org-pos-in-match-range pos 5)) 'day)
17646 ((and (> pos (or (match-end 8) (match-end 5)))
17647 (< pos (match-end 0)))
17648 (- pos (or (match-end 8) (match-end 5))))
17649 (t 'day))))
17650 ans))
17652 (defun org-toggle-timestamp-type ()
17653 "Toggle the type (<active> or [inactive]) of a time stamp."
17654 (interactive)
17655 (when (org-at-timestamp-p t)
17656 (let ((beg (match-beginning 0)) (end (match-end 0))
17657 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17658 (save-excursion
17659 (goto-char beg)
17660 (while (re-search-forward "[][<>]" end t)
17661 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17662 t t)))
17663 (message "Timestamp is now %sactive"
17664 (if (equal (char-after beg) ?<) "" "in")))))
17666 (defun org-at-clock-log-p nil
17667 "Is the cursor on the clock log line?"
17668 (save-excursion
17669 (move-beginning-of-line 1)
17670 (looking-at org-clock-line-re)))
17672 (defvar org-clock-history) ; defined in org-clock.el
17673 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17674 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17675 "Change the date in the time stamp at point.
17676 The date will be changed by N times WHAT. WHAT can be `day', `month',
17677 `year', `minute', `second'. If WHAT is not given, the cursor position
17678 in the timestamp determines what will be changed.
17679 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17680 (let ((origin (point)) origin-cat
17681 with-hm inactive
17682 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17683 org-ts-what
17684 extra rem
17685 ts time time0 fixnext clrgx)
17686 (if (not (org-at-timestamp-p t))
17687 (user-error "Not at a timestamp"))
17688 (if (and (not what) (eq org-ts-what 'bracket))
17689 (org-toggle-timestamp-type)
17690 ;; Point isn't on brackets. Remember the part of the time-stamp
17691 ;; the point was in. Indeed, size of time-stamps may change,
17692 ;; but point must be kept in the same category nonetheless.
17693 (setq origin-cat org-ts-what)
17694 (if (and (not what) (not (eq org-ts-what 'day))
17695 org-display-custom-times
17696 (get-text-property (point) 'display)
17697 (not (get-text-property (1- (point)) 'display)))
17698 (setq org-ts-what 'day))
17699 (setq org-ts-what (or what org-ts-what)
17700 inactive (= (char-after (match-beginning 0)) ?\[)
17701 ts (match-string 0))
17702 (replace-match "")
17703 (when (string-match
17704 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
17706 (setq extra (match-string 1 ts))
17707 (if suppress-tmp-delay
17708 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
17709 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
17710 (setq with-hm t))
17711 (setq time0 (org-parse-time-string ts))
17712 (when (and updown
17713 (eq org-ts-what 'minute)
17714 (not current-prefix-arg))
17715 ;; This looks like s-up and s-down. Change by one rounding step.
17716 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
17717 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
17718 (setcar (cdr time0) (+ (nth 1 time0)
17719 (if (> n 0) (- rem) (- dm rem))))))
17720 (setq time
17721 (encode-time (or (car time0) 0)
17722 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
17723 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
17724 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
17725 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
17726 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
17727 (nthcdr 6 time0)))
17728 (when (and (member org-ts-what '(hour minute))
17729 extra
17730 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
17731 (setq extra (org-modify-ts-extra
17732 extra
17733 (if (eq org-ts-what 'hour) 2 5)
17734 n dm)))
17735 (when (integerp org-ts-what)
17736 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
17737 (if (eq what 'calendar)
17738 (let ((cal-date (org-get-date-from-calendar)))
17739 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
17740 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
17741 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
17742 (setcar time0 (or (car time0) 0))
17743 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
17744 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
17745 (setq time (apply 'encode-time time0))))
17746 ;; Insert the new time-stamp, and ensure point stays in the same
17747 ;; category as before (i.e. not after the last position in that
17748 ;; category).
17749 (let ((pos (point)))
17750 ;; Stay before inserted string. `save-excursion' is of no use.
17751 (setq org-last-changed-timestamp
17752 (org-insert-time-stamp time with-hm inactive nil nil extra))
17753 (goto-char pos))
17754 (save-match-data
17755 (looking-at org-ts-regexp3)
17756 (goto-char (cond
17757 ;; `day' category ends before `hour' if any, or at
17758 ;; the end of the day name.
17759 ((eq origin-cat 'day)
17760 (min (or (match-beginning 7) (1- (match-end 5))) origin))
17761 ((eq origin-cat 'hour) (min (match-end 7) origin))
17762 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
17763 ((integerp origin-cat) (min (1- (match-end 0)) origin))
17764 ;; `year' and `month' have both fixed size: point
17765 ;; couldn't have moved into another part.
17766 (t origin))))
17767 ;; Update clock if on a CLOCK line.
17768 (org-clock-update-time-maybe)
17769 ;; Maybe adjust the closest clock in `org-clock-history'
17770 (when org-clock-adjust-closest
17771 (if (not (and (org-at-clock-log-p)
17772 (< 1 (length (delq nil (mapcar 'marker-position
17773 org-clock-history))))))
17774 (message "No clock to adjust")
17775 (cond ((save-excursion ; fix previous clock?
17776 (re-search-backward org-ts-regexp0 nil t)
17777 (org-looking-back (concat org-clock-string " \\[")))
17778 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
17779 ((save-excursion ; fix next clock?
17780 (re-search-backward org-ts-regexp0 nil t)
17781 (looking-at (concat org-ts-regexp0 "\\] =>")))
17782 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
17783 (save-window-excursion
17784 ;; Find closest clock to point, adjust the previous/next one in history
17785 (let* ((p (save-excursion (org-back-to-heading t)))
17786 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
17787 (clfixnth
17788 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
17789 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
17790 (if (not clfixpos)
17791 (message "No clock to adjust")
17792 (save-excursion
17793 (org-goto-marker-or-bmk clfixpos)
17794 (org-show-subtree)
17795 (when (re-search-forward clrgx nil t)
17796 (goto-char (match-beginning 1))
17797 (let (org-clock-adjust-closest)
17798 (org-timestamp-change n org-ts-what updown))
17799 (message "Clock adjusted in %s for heading: %s"
17800 (file-name-nondirectory (buffer-file-name))
17801 (org-get-heading t t)))))))))
17802 ;; Try to recenter the calendar window, if any.
17803 (if (and org-calendar-follow-timestamp-change
17804 (get-buffer-window "*Calendar*" t)
17805 (memq org-ts-what '(day month year)))
17806 (org-recenter-calendar (time-to-days time))))))
17808 (defun org-modify-ts-extra (s pos n dm)
17809 "Change the different parts of the lead-time and repeat fields in timestamp."
17810 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
17811 ng h m new rem)
17812 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
17813 (cond
17814 ((or (org-pos-in-match-range pos 2)
17815 (org-pos-in-match-range pos 3))
17816 (setq m (string-to-number (match-string 3 s))
17817 h (string-to-number (match-string 2 s)))
17818 (if (org-pos-in-match-range pos 2)
17819 (setq h (+ h n))
17820 (setq n (* dm (org-no-warnings (signum n))))
17821 (when (not (= 0 (setq rem (% m dm))))
17822 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
17823 (setq m (+ m n)))
17824 (if (< m 0) (setq m (+ m 60) h (1- h)))
17825 (if (> m 59) (setq m (- m 60) h (1+ h)))
17826 (setq h (min 24 (max 0 h)))
17827 (setq ng 1 new (format "-%02d:%02d" h m)))
17828 ((org-pos-in-match-range pos 6)
17829 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
17830 ((org-pos-in-match-range pos 5)
17831 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
17833 ((org-pos-in-match-range pos 9)
17834 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
17835 ((org-pos-in-match-range pos 8)
17836 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
17838 (when ng
17839 (setq s (concat
17840 (substring s 0 (match-beginning ng))
17842 (substring s (match-end ng))))))
17845 (defun org-recenter-calendar (date)
17846 "If the calendar is visible, recenter it to DATE."
17847 (let ((cwin (get-buffer-window "*Calendar*" t)))
17848 (when cwin
17849 (let ((calendar-move-hook nil))
17850 (with-selected-window cwin
17851 (calendar-goto-date (if (listp date) date
17852 (calendar-gregorian-from-absolute date))))))))
17854 (defun org-goto-calendar (&optional arg)
17855 "Go to the Emacs calendar at the current date.
17856 If there is a time stamp in the current line, go to that date.
17857 A prefix ARG can be used to force the current date."
17858 (interactive "P")
17859 (let ((tsr org-ts-regexp) diff
17860 (calendar-move-hook nil)
17861 (calendar-view-holidays-initially-flag nil)
17862 (calendar-view-diary-initially-flag nil))
17863 (if (or (org-at-timestamp-p)
17864 (save-excursion
17865 (beginning-of-line 1)
17866 (looking-at (concat ".*" tsr))))
17867 (let ((d1 (time-to-days (current-time)))
17868 (d2 (time-to-days
17869 (org-time-string-to-time (match-string 1)))))
17870 (setq diff (- d2 d1))))
17871 (calendar)
17872 (calendar-goto-today)
17873 (if (and diff (not arg)) (calendar-forward-day diff))))
17875 (defun org-get-date-from-calendar ()
17876 "Return a list (month day year) of date at point in calendar."
17877 (with-current-buffer "*Calendar*"
17878 (save-match-data
17879 (calendar-cursor-to-date))))
17881 (defun org-date-from-calendar ()
17882 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
17883 If there is already a time stamp at the cursor position, update it."
17884 (interactive)
17885 (if (org-at-timestamp-p t)
17886 (org-timestamp-change 0 'calendar)
17887 (let ((cal-date (org-get-date-from-calendar)))
17888 (org-insert-time-stamp
17889 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
17891 (defcustom org-effort-durations
17892 `(("min" . 1)
17893 ("h" . 60)
17894 ("d" . ,(* 60 8))
17895 ("w" . ,(* 60 8 5))
17896 ("m" . ,(* 60 8 5 4))
17897 ("y" . ,(* 60 8 5 40)))
17898 "Conversion factor to minutes for an effort modifier.
17900 Each entry has the form (MODIFIER . MINUTES).
17902 In an effort string, a number followed by MODIFIER is multiplied
17903 by the specified number of MINUTES to obtain an effort in
17904 minutes.
17906 For example, if the value of this variable is ((\"hours\" . 60)), then an
17907 effort string \"2hours\" is equivalent to 120 minutes."
17908 :group 'org-agenda
17909 :version "25.1"
17910 :package-version '(Org . "8.3")
17911 :type '(alist :key-type (string :tag "Modifier")
17912 :value-type (number :tag "Minutes")))
17914 (defun org-minutes-to-clocksum-string (m)
17915 "Format number of minutes as a clocksum string.
17916 The format is determined by `org-time-clocksum-format',
17917 `org-time-clocksum-use-fractional' and
17918 `org-time-clocksum-fractional-format' and
17919 `org-time-clocksum-use-effort-durations'."
17920 (let ((clocksum "")
17921 (m (round m)) ; Don't allow fractions of minutes
17922 h d w mo y fmt n)
17923 (setq h (if org-time-clocksum-use-effort-durations
17924 (cdr (assoc "h" org-effort-durations)) 60)
17925 d (if org-time-clocksum-use-effort-durations
17926 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
17927 w (if org-time-clocksum-use-effort-durations
17928 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
17929 mo (if org-time-clocksum-use-effort-durations
17930 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
17931 y (if org-time-clocksum-use-effort-durations
17932 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
17933 ;; fractional format
17934 (if org-time-clocksum-use-fractional
17935 (cond
17936 ;; single format string
17937 ((stringp org-time-clocksum-fractional-format)
17938 (format org-time-clocksum-fractional-format (/ m (float h))))
17939 ;; choice of fractional formats for different time units
17940 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
17941 (> (/ (truncate m) (* y d h)) 0))
17942 (format fmt (/ m (* y d (float h)))))
17943 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
17944 (> (/ (truncate m) (* mo d h)) 0))
17945 (format fmt (/ m (* mo d (float h)))))
17946 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17947 (> (/ (truncate m) (* w d h)) 0))
17948 (format fmt (/ m (* w d (float h)))))
17949 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
17950 (> (/ (truncate m) (* d h)) 0))
17951 (format fmt (/ m (* d (float h)))))
17952 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17953 (> (/ (truncate m) h) 0))
17954 (format fmt (/ m (float h))))
17955 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
17956 (format fmt m))
17957 ;; fall back to smallest time unit with a format
17958 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
17959 (format fmt (/ m (float h))))
17960 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
17961 (format fmt (/ m (* d (float h)))))
17962 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
17963 (format fmt (/ m (* w d (float h)))))
17964 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
17965 (format fmt (/ m (* mo d (float h)))))
17966 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
17967 (format fmt (/ m (* y d (float h))))))
17968 ;; standard (non-fractional) format, with single format string
17969 (if (stringp org-time-clocksum-format)
17970 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
17971 ;; separate formats components
17972 (and (setq fmt (plist-get org-time-clocksum-format :years))
17973 (or (> (setq n (/ (truncate m) (* y d h))) 0)
17974 (plist-get org-time-clocksum-format :require-years))
17975 (setq clocksum (concat clocksum (format fmt n))
17976 m (- m (* n y d h))))
17977 (and (setq fmt (plist-get org-time-clocksum-format :months))
17978 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
17979 (plist-get org-time-clocksum-format :require-months))
17980 (setq clocksum (concat clocksum (format fmt n))
17981 m (- m (* n mo d h))))
17982 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
17983 (or (> (setq n (/ (truncate m) (* w d h))) 0)
17984 (plist-get org-time-clocksum-format :require-weeks))
17985 (setq clocksum (concat clocksum (format fmt n))
17986 m (- m (* n w d h))))
17987 (and (setq fmt (plist-get org-time-clocksum-format :days))
17988 (or (> (setq n (/ (truncate m) (* d h))) 0)
17989 (plist-get org-time-clocksum-format :require-days))
17990 (setq clocksum (concat clocksum (format fmt n))
17991 m (- m (* n d h))))
17992 (and (setq fmt (plist-get org-time-clocksum-format :hours))
17993 (or (> (setq n (/ (truncate m) h)) 0)
17994 (plist-get org-time-clocksum-format :require-hours))
17995 (setq clocksum (concat clocksum (format fmt n))
17996 m (- m (* n h))))
17997 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
17998 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
17999 (setq clocksum (concat clocksum (format fmt m))))
18000 ;; return formatted time duration
18001 clocksum))))
18003 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18004 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18005 "Org mode version 8.0")
18007 (defun org-hours-to-clocksum-string (n)
18008 (org-minutes-to-clocksum-string (* n 60)))
18010 (defun org-hh:mm-string-to-minutes (s)
18011 "Convert a string H:MM to a number of minutes.
18012 If the string is just a number, interpret it as minutes.
18013 In fact, the first hh:mm or number in the string will be taken,
18014 there can be extra stuff in the string.
18015 If no number is found, the return value is 0."
18016 (cond
18017 ((integerp s) s)
18018 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18019 (+ (* (string-to-number (match-string 1 s)) 60)
18020 (string-to-number (match-string 2 s))))
18021 ((string-match "\\([0-9]+\\)" s)
18022 (string-to-number (match-string 1 s)))
18023 (t 0)))
18025 (defcustom org-image-actual-width t
18026 "Should we use the actual width of images when inlining them?
18028 When set to `t', always use the image width.
18030 When set to a number, use imagemagick (when available) to set
18031 the image's width to this value.
18033 When set to a number in a list, try to get the width from any
18034 #+ATTR.* keyword if it matches a width specification like
18036 #+ATTR_HTML: :width 300px
18038 and fall back on that number if none is found.
18040 When set to nil, try to get the width from an #+ATTR.* keyword
18041 and fall back on the original width if none is found.
18043 This requires Emacs >= 24.1, build with imagemagick support."
18044 :group 'org-appearance
18045 :version "24.4"
18046 :package-version '(Org . "8.0")
18047 :type '(choice
18048 (const :tag "Use the image width" t)
18049 (integer :tag "Use a number of pixels")
18050 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18051 (const :tag "Use #+ATTR* or don't resize" nil)))
18053 (defcustom org-agenda-inhibit-startup nil
18054 "Inhibit startup when preparing agenda buffers.
18055 When this variable is `t', the initialization of the Org agenda
18056 buffers is inhibited: e.g. the visibility state is not set, the
18057 tables are not re-aligned, etc."
18058 :type 'boolean
18059 :version "24.3"
18060 :group 'org-agenda)
18062 (define-obsolete-variable-alias
18063 'org-agenda-ignore-drawer-properties
18064 'org-agenda-ignore-properties "25.1")
18066 (defcustom org-agenda-ignore-properties nil
18067 "Avoid updating text properties when building the agenda.
18068 Properties are used to prepare buffers for effort estimates,
18069 appointments, statistics and subtree-local categories.
18070 If you don't use these in the agenda, you can add them to this
18071 list and agenda building will be a bit faster.
18072 The value is a list, with zero or more of the symbols `effort', `appt',
18073 `stats' or `category'."
18074 :type '(set :greedy t
18075 (const effort)
18076 (const appt)
18077 (const stats)
18078 (const category))
18079 :version "25.1"
18080 :package-version '(Org . "8.3")
18081 :group 'org-agenda)
18083 (defun org-duration-string-to-minutes (s &optional output-to-string)
18084 "Convert a duration string S to minutes.
18086 A bare number is interpreted as minutes, modifiers can be set by
18087 customizing `org-effort-durations' (which see).
18089 Entries containing a colon are interpreted as H:MM by
18090 `org-hh:mm-string-to-minutes'."
18091 (let ((result 0)
18092 (re (concat "\\([0-9.]+\\) *\\("
18093 (regexp-opt (mapcar 'car org-effort-durations))
18094 "\\)")))
18095 (while (string-match re s)
18096 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18097 (string-to-number (match-string 1 s))))
18098 (setq s (replace-match "" nil t s)))
18099 (setq result (floor result))
18100 (incf result (org-hh:mm-string-to-minutes s))
18101 (if output-to-string (number-to-string result) result)))
18103 ;;;; Files
18105 (defun org-save-all-org-buffers ()
18106 "Save all Org-mode buffers without user confirmation."
18107 (interactive)
18108 (message "Saving all Org-mode buffers...")
18109 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18110 (when (featurep 'org-id) (org-id-locations-save))
18111 (message "Saving all Org-mode buffers... done"))
18113 (defun org-revert-all-org-buffers ()
18114 "Revert all Org-mode buffers.
18115 Prompt for confirmation when there are unsaved changes.
18116 Be sure you know what you are doing before letting this function
18117 overwrite your changes.
18119 This function is useful in a setup where one tracks org files
18120 with a version control system, to revert on one machine after pulling
18121 changes from another. I believe the procedure must be like this:
18123 1. M-x org-save-all-org-buffers
18124 2. Pull changes from the other machine, resolve conflicts
18125 3. M-x org-revert-all-org-buffers"
18126 (interactive)
18127 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18128 (user-error "Abort"))
18129 (save-excursion
18130 (save-window-excursion
18131 (mapc
18132 (lambda (b)
18133 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18134 (with-current-buffer b buffer-file-name))
18135 (org-pop-to-buffer-same-window b)
18136 (revert-buffer t 'no-confirm)))
18137 (buffer-list))
18138 (when (and (featurep 'org-id) org-id-track-globally)
18139 (org-id-locations-load)))))
18141 ;;;; Agenda files
18143 ;;;###autoload
18144 (defun org-switchb (&optional arg)
18145 "Switch between Org buffers.
18146 With one prefix argument, restrict available buffers to files.
18147 With two prefix arguments, restrict available buffers to agenda files.
18149 Defaults to `iswitchb' for buffer name completion.
18150 Set `org-completion-use-ido' to make it use ido instead."
18151 (interactive "P")
18152 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18153 ((equal arg '(16)) (org-buffer-list 'agenda))
18154 (t (org-buffer-list))))
18155 (org-completion-use-iswitchb org-completion-use-iswitchb)
18156 (org-completion-use-ido org-completion-use-ido))
18157 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18158 (setq org-completion-use-iswitchb t))
18159 (org-pop-to-buffer-same-window
18160 (org-icompleting-read "Org buffer: "
18161 (mapcar 'list (mapcar 'buffer-name blist))
18162 nil t))))
18164 ;;; Define some older names previously used for this functionality
18165 ;;;###autoload
18166 (defalias 'org-ido-switchb 'org-switchb)
18167 ;;;###autoload
18168 (defalias 'org-iswitchb 'org-switchb)
18170 (defun org-buffer-list (&optional predicate exclude-tmp)
18171 "Return a list of Org buffers.
18172 PREDICATE can be `export', `files' or `agenda'.
18174 export restrict the list to Export buffers.
18175 files restrict the list to buffers visiting Org files.
18176 agenda restrict the list to buffers visiting agenda files.
18178 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18179 (let* ((bfn nil)
18180 (agenda-files (and (eq predicate 'agenda)
18181 (mapcar 'file-truename (org-agenda-files t))))
18182 (filter
18183 (cond
18184 ((eq predicate 'files)
18185 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18186 ((eq predicate 'export)
18187 (lambda (b) (string-match "\*Org .*Export" (buffer-name b))))
18188 ((eq predicate 'agenda)
18189 (lambda (b)
18190 (with-current-buffer b
18191 (and (derived-mode-p 'org-mode)
18192 (setq bfn (buffer-file-name b))
18193 (member (file-truename bfn) agenda-files)))))
18194 (t (lambda (b) (with-current-buffer b
18195 (or (derived-mode-p 'org-mode)
18196 (string-match "\*Org .*Export"
18197 (buffer-name b)))))))))
18198 (delq nil
18199 (mapcar
18200 (lambda(b)
18201 (if (and (funcall filter b)
18202 (or (not exclude-tmp)
18203 (not (string-match "tmp" (buffer-name b)))))
18205 nil))
18206 (buffer-list)))))
18208 (defun org-agenda-files (&optional unrestricted archives)
18209 "Get the list of agenda files.
18210 Optional UNRESTRICTED means return the full list even if a restriction
18211 is currently in place.
18212 When ARCHIVES is t, include all archive files that are really being
18213 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18214 `org-agenda-archives-mode' is t."
18215 (let ((files
18216 (cond
18217 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18218 ((stringp org-agenda-files) (org-read-agenda-file-list))
18219 ((listp org-agenda-files) org-agenda-files)
18220 (t (error "Invalid value of `org-agenda-files'")))))
18221 (setq files (apply 'append
18222 (mapcar (lambda (f)
18223 (if (file-directory-p f)
18224 (directory-files
18225 f t org-agenda-file-regexp)
18226 (list f)))
18227 files)))
18228 (when org-agenda-skip-unavailable-files
18229 (setq files (delq nil
18230 (mapcar (function
18231 (lambda (file)
18232 (and (file-readable-p file) file)))
18233 files))))
18234 (when (or (eq archives t)
18235 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18236 (setq files (org-add-archive-files files)))
18237 files))
18239 (defun org-agenda-file-p (&optional file)
18240 "Return non-nil, if FILE is an agenda file.
18241 If FILE is omitted, use the file associated with the current
18242 buffer."
18243 (let ((fname (or file (buffer-file-name))))
18244 (and fname
18245 (member (file-truename fname)
18246 (mapcar #'file-truename (org-agenda-files t))))))
18248 (defun org-edit-agenda-file-list ()
18249 "Edit the list of agenda files.
18250 Depending on setup, this either uses customize to edit the variable
18251 `org-agenda-files', or it visits the file that is holding the list. In the
18252 latter case, the buffer is set up in a way that saving it automatically kills
18253 the buffer and restores the previous window configuration."
18254 (interactive)
18255 (if (stringp org-agenda-files)
18256 (let ((cw (current-window-configuration)))
18257 (find-file org-agenda-files)
18258 (org-set-local 'org-window-configuration cw)
18259 (org-add-hook 'after-save-hook
18260 (lambda ()
18261 (set-window-configuration
18262 (prog1 org-window-configuration
18263 (kill-buffer (current-buffer))))
18264 (org-install-agenda-files-menu)
18265 (message "New agenda file list installed"))
18266 nil 'local)
18267 (message "%s" (substitute-command-keys
18268 "Edit list and finish with \\[save-buffer]")))
18269 (customize-variable 'org-agenda-files)))
18271 (defun org-store-new-agenda-file-list (list)
18272 "Set new value for the agenda file list and save it correctly."
18273 (if (stringp org-agenda-files)
18274 (let ((fe (org-read-agenda-file-list t)) b u)
18275 (while (setq b (find-buffer-visiting org-agenda-files))
18276 (kill-buffer b))
18277 (with-temp-file org-agenda-files
18278 (insert
18279 (mapconcat
18280 (lambda (f) ;; Keep un-expanded entries.
18281 (if (setq u (assoc f fe))
18282 (cdr u)
18284 list "\n")
18285 "\n")))
18286 (let ((org-mode-hook nil) (org-inhibit-startup t)
18287 (org-insert-mode-line-in-empty-file nil))
18288 (setq org-agenda-files list)
18289 (customize-save-variable 'org-agenda-files org-agenda-files))))
18291 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18292 "Read the list of agenda files from a file.
18293 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18294 filenames, used by `org-store-new-agenda-file-list' to write back
18295 un-expanded file names."
18296 (when (file-directory-p org-agenda-files)
18297 (error "`org-agenda-files' cannot be a single directory"))
18298 (when (stringp org-agenda-files)
18299 (with-temp-buffer
18300 (insert-file-contents org-agenda-files)
18301 (mapcar
18302 (lambda (f)
18303 (let ((e (expand-file-name (substitute-in-file-name f)
18304 org-directory)))
18305 (if pair-with-expansion
18306 (cons e f)
18307 e)))
18308 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18310 ;;;###autoload
18311 (defun org-cycle-agenda-files ()
18312 "Cycle through the files in `org-agenda-files'.
18313 If the current buffer visits an agenda file, find the next one in the list.
18314 If the current buffer does not, find the first agenda file."
18315 (interactive)
18316 (let* ((fs (org-agenda-files t))
18317 (files (append fs (list (car fs))))
18318 (tcf (if buffer-file-name (file-truename buffer-file-name)))
18319 file)
18320 (unless files (user-error "No agenda files"))
18321 (catch 'exit
18322 (while (setq file (pop files))
18323 (if (equal (file-truename file) tcf)
18324 (when (car files)
18325 (find-file (car files))
18326 (throw 'exit t))))
18327 (find-file (car fs)))
18328 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18330 (defun org-agenda-file-to-front (&optional to-end)
18331 "Move/add the current file to the top of the agenda file list.
18332 If the file is not present in the list, it is added to the front. If it is
18333 present, it is moved there. With optional argument TO-END, add/move to the
18334 end of the list."
18335 (interactive "P")
18336 (let ((org-agenda-skip-unavailable-files nil)
18337 (file-alist (mapcar (lambda (x)
18338 (cons (file-truename x) x))
18339 (org-agenda-files t)))
18340 (ctf (file-truename
18341 (or buffer-file-name
18342 (user-error "Please save the current buffer to a file"))))
18343 x had)
18344 (setq x (assoc ctf file-alist) had x)
18346 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18347 (if to-end
18348 (setq file-alist (append (delq x file-alist) (list x)))
18349 (setq file-alist (cons x (delq x file-alist))))
18350 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18351 (org-install-agenda-files-menu)
18352 (message "File %s to %s of agenda file list"
18353 (if had "moved" "added") (if to-end "end" "front"))))
18355 (defun org-remove-file (&optional file)
18356 "Remove current file from the list of files in variable `org-agenda-files'.
18357 These are the files which are being checked for agenda entries.
18358 Optional argument FILE means use this file instead of the current."
18359 (interactive)
18360 (let* ((org-agenda-skip-unavailable-files nil)
18361 (file (or file buffer-file-name
18362 (user-error "Current buffer does not visit a file")))
18363 (true-file (file-truename file))
18364 (afile (abbreviate-file-name file))
18365 (files (delq nil (mapcar
18366 (lambda (x)
18367 (if (equal true-file
18368 (file-truename x))
18369 nil x))
18370 (org-agenda-files t)))))
18371 (if (not (= (length files) (length (org-agenda-files t))))
18372 (progn
18373 (org-store-new-agenda-file-list files)
18374 (org-install-agenda-files-menu)
18375 (message "Removed file: %s" afile))
18376 (message "File was not in list: %s (not removed)" afile))))
18378 (defun org-file-menu-entry (file)
18379 (vector file (list 'find-file file) t))
18381 (defun org-check-agenda-file (file)
18382 "Make sure FILE exists. If not, ask user what to do."
18383 (when (not (file-exists-p file))
18384 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18385 (abbreviate-file-name file))
18386 (let ((r (downcase (read-char-exclusive))))
18387 (cond
18388 ((equal r ?r)
18389 (org-remove-file file)
18390 (throw 'nextfile t))
18391 (t (user-error "Abort"))))))
18393 (defun org-get-agenda-file-buffer (file)
18394 "Get an agenda buffer visiting FILE.
18395 If the buffer needs to be created, add it to the list of buffers
18396 which might be released later."
18397 (let ((buf (org-find-base-buffer-visiting file)))
18398 (if buf
18399 buf ; just return it
18400 ;; Make a new buffer and remember it
18401 (setq buf (find-file-noselect file))
18402 (if buf (push buf org-agenda-new-buffers))
18403 buf)))
18405 (defun org-release-buffers (blist)
18406 "Release all buffers in list, asking the user for confirmation when needed.
18407 When a buffer is unmodified, it is just killed. When modified, it is saved
18408 \(if the user agrees) and then killed."
18409 (let (buf file)
18410 (while (setq buf (pop blist))
18411 (setq file (buffer-file-name buf))
18412 (when (and (buffer-modified-p buf)
18413 file
18414 (y-or-n-p (format "Save file %s? " file)))
18415 (with-current-buffer buf (save-buffer)))
18416 (kill-buffer buf))))
18418 (defun org-agenda-prepare-buffers (files)
18419 "Create buffers for all agenda files, protect archived trees and comments."
18420 (interactive)
18421 (let ((pa '(:org-archived t))
18422 (pc '(:org-comment t))
18423 (pall '(:org-archived t :org-comment t))
18424 (inhibit-read-only t)
18425 (org-inhibit-startup org-agenda-inhibit-startup)
18426 (rea (concat ":" org-archive-tag ":"))
18427 file re pos)
18428 (setq org-tag-alist-for-agenda nil
18429 org-tag-groups-alist-for-agenda nil)
18430 (save-excursion
18431 (save-restriction
18432 (while (setq file (pop files))
18433 (catch 'nextfile
18434 (if (bufferp file)
18435 (set-buffer file)
18436 (org-check-agenda-file file)
18437 (set-buffer (org-get-agenda-file-buffer file)))
18438 (widen)
18439 (org-set-regexps-and-options 'tags-only)
18440 (setq pos (point))
18441 (or (memq 'category org-agenda-ignore-properties)
18442 (org-refresh-category-properties))
18443 (or (memq 'stats org-agenda-ignore-properties)
18444 (org-refresh-stats-properties))
18445 (or (memq 'effort org-agenda-ignore-properties)
18446 (org-refresh-effort-properties))
18447 (or (memq 'appt org-agenda-ignore-properties)
18448 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18449 (setq org-todo-keywords-for-agenda
18450 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18451 (setq org-done-keywords-for-agenda
18452 (append org-done-keywords-for-agenda org-done-keywords))
18453 (setq org-todo-keyword-alist-for-agenda
18454 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18455 (setq org-tag-alist-for-agenda
18456 (org-uniquify
18457 (append org-tag-alist-for-agenda
18458 org-tag-alist
18459 org-tag-persistent-alist)))
18460 (if org-group-tags
18461 (setq org-tag-groups-alist-for-agenda
18462 (org-uniquify-alist
18463 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18464 (org-with-silent-modifications
18465 (save-excursion
18466 (remove-text-properties (point-min) (point-max) pall)
18467 (when org-agenda-skip-archived-trees
18468 (goto-char (point-min))
18469 (while (re-search-forward rea nil t)
18470 (if (org-at-heading-p t)
18471 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18472 (goto-char (point-min))
18473 (setq re (format "^\\* .*\\<%s\\>" org-comment-string))
18474 (while (re-search-forward re nil t)
18475 (when (save-match-data (org-in-commented-heading-p t))
18476 (add-text-properties
18477 (match-beginning 0) (org-end-of-subtree t) pc)))))
18478 (goto-char pos)))))
18479 (setq org-todo-keywords-for-agenda
18480 (org-uniquify org-todo-keywords-for-agenda))
18481 (setq org-todo-keyword-alist-for-agenda
18482 (org-uniquify org-todo-keyword-alist-for-agenda))))
18485 ;;;; CDLaTeX minor mode
18487 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18488 "Keymap for the minor `org-cdlatex-mode'.")
18490 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18491 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18492 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18493 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18494 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18496 (defvar org-cdlatex-texmathp-advice-is-done nil
18497 "Flag remembering if we have applied the advice to texmathp already.")
18499 (define-minor-mode org-cdlatex-mode
18500 "Toggle the minor `org-cdlatex-mode'.
18501 This mode supports entering LaTeX environment and math in LaTeX fragments
18502 in Org-mode.
18503 \\{org-cdlatex-mode-map}"
18504 nil " OCDL" nil
18505 (when org-cdlatex-mode
18506 (require 'cdlatex)
18507 (run-hooks 'cdlatex-mode-hook)
18508 (cdlatex-compute-tables))
18509 (unless org-cdlatex-texmathp-advice-is-done
18510 (setq org-cdlatex-texmathp-advice-is-done t)
18511 (defadvice texmathp (around org-math-always-on activate)
18512 "Always return t in org-mode buffers.
18513 This is because we want to insert math symbols without dollars even outside
18514 the LaTeX math segments. If Orgmode thinks that point is actually inside
18515 an embedded LaTeX fragment, let texmathp do its job.
18516 \\[org-cdlatex-mode-map]"
18517 (interactive)
18518 (let (p)
18519 (cond
18520 ((not (derived-mode-p 'org-mode)) ad-do-it)
18521 ((eq this-command 'cdlatex-math-symbol)
18522 (setq ad-return-value t
18523 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18525 (let ((p (org-inside-LaTeX-fragment-p)))
18526 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18527 (setq ad-return-value t
18528 texmathp-why '("Org-mode embedded math" . 0))
18529 (if p ad-do-it)))))))))
18531 (defun turn-on-org-cdlatex ()
18532 "Unconditionally turn on `org-cdlatex-mode'."
18533 (org-cdlatex-mode 1))
18535 (defun org-try-cdlatex-tab ()
18536 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18537 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18538 - inside a LaTeX fragment, or
18539 - after the first word in a line, where an abbreviation expansion could
18540 insert a LaTeX environment."
18541 (when org-cdlatex-mode
18542 (cond
18543 ;; Before any word on the line: No expansion possible.
18544 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18545 ;; Just after first word on the line: Expand it. Make sure it
18546 ;; cannot happen on headlines, though.
18547 ((save-excursion
18548 (skip-chars-backward "a-zA-Z0-9*")
18549 (skip-chars-backward " \t")
18550 (and (bolp) (not (org-at-heading-p))))
18551 (cdlatex-tab) t)
18552 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18554 (defun org-cdlatex-underscore-caret (&optional arg)
18555 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18556 Revert to the normal definition outside of these fragments."
18557 (interactive "P")
18558 (if (org-inside-LaTeX-fragment-p)
18559 (call-interactively 'cdlatex-sub-superscript)
18560 (let (org-cdlatex-mode)
18561 (call-interactively (key-binding (vector last-input-event))))))
18563 (defun org-cdlatex-math-modify (&optional arg)
18564 "Execute `cdlatex-math-modify' in LaTeX fragments.
18565 Revert to the normal definition outside of these fragments."
18566 (interactive "P")
18567 (if (org-inside-LaTeX-fragment-p)
18568 (call-interactively 'cdlatex-math-modify)
18569 (let (org-cdlatex-mode)
18570 (call-interactively (key-binding (vector last-input-event))))))
18572 (defun org-cdlatex-environment-indent (&optional environment item)
18573 "Execute `cdlatex-environment' and indent the inserted environment."
18574 (interactive)
18575 (cdlatex-environment environment item)
18576 (let ((element (org-element-at-point)))
18577 (org-indent-region (org-element-property :begin element)
18578 (org-element-property :end element))))
18581 ;;;; LaTeX fragments
18583 (defun org-inside-LaTeX-fragment-p ()
18584 "Test if point is inside a LaTeX fragment.
18585 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18586 sequence appearing also before point.
18587 Even though the matchers for math are configurable, this function assumes
18588 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18589 delimiters are skipped when they have been removed by customization.
18590 The return value is nil, or a cons cell with the delimiter and the
18591 position of this delimiter.
18593 This function does a reasonably good job, but can locally be fooled by
18594 for example currency specifications. For example it will assume being in
18595 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18596 fragments that are properly closed, but during editing, we have to live
18597 with the uncertainty caused by missing closing delimiters. This function
18598 looks only before point, not after."
18599 (catch 'exit
18600 (let ((pos (point))
18601 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18602 (lim (progn
18603 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18604 (point)))
18605 dd-on str (start 0) m re)
18606 (goto-char pos)
18607 (when dodollar
18608 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18609 re (nth 1 (assoc "$" org-latex-regexps)))
18610 (while (string-match re str start)
18611 (cond
18612 ((= (match-end 0) (length str))
18613 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18614 ((= (match-end 0) (- (length str) 5))
18615 (throw 'exit nil))
18616 (t (setq start (match-end 0))))))
18617 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18618 (goto-char pos)
18619 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18620 (and (match-beginning 2) (throw 'exit nil))
18621 ;; count $$
18622 (while (re-search-backward "\\$\\$" lim t)
18623 (setq dd-on (not dd-on)))
18624 (goto-char pos)
18625 (if dd-on (cons "$$" m))))))
18627 (defun org-inside-latex-macro-p ()
18628 "Is point inside a LaTeX macro or its arguments?"
18629 (save-match-data
18630 (org-in-regexp
18631 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18633 (defvar org-latex-fragment-image-overlays nil
18634 "List of overlays carrying the images of latex fragments.")
18635 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18637 (defun org-remove-latex-fragment-image-overlays ()
18638 "Remove all overlays with LaTeX fragment images in current buffer."
18639 (mapc 'delete-overlay org-latex-fragment-image-overlays)
18640 (setq org-latex-fragment-image-overlays nil))
18642 (define-obsolete-function-alias
18643 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
18644 (defun org-toggle-latex-fragment (&optional subtree)
18645 "Preview the LaTeX fragment at point, or all locally or globally.
18646 If the cursor is in a LaTeX fragment, create the image and overlay
18647 it over the source code. If there is no fragment at point, display
18648 all fragments in the current text, from one headline to the next. With
18649 prefix SUBTREE, display all fragments in the current subtree. With a
18650 double prefix arg \\[universal-argument] \\[universal-argument], or when \
18651 the cursor is before the first headline,
18652 display all fragments in the buffer.
18653 The images can be removed again with \\[org-toggle-latex-fragment]."
18654 (interactive "P")
18655 (unless (buffer-file-name (buffer-base-buffer))
18656 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
18657 (if org-latex-fragment-image-overlays
18658 (progn (org-remove-latex-fragment-image-overlays)
18659 (message "LaTeX fragments images removed"))
18660 (when (display-graphic-p)
18661 (org-remove-latex-fragment-image-overlays)
18662 (org-with-wide-buffer
18663 (let (beg end msg)
18664 (cond
18665 ((equal subtree '(16))
18666 (setq beg (point-min) end (point-max)
18667 msg "Creating images for buffer...%s"))
18668 ((equal subtree '(4))
18669 (org-back-to-heading)
18670 (setq beg (point) end (org-end-of-subtree t)
18671 msg "Creating images for subtree...%s"))
18672 ((let ((context (org-element-context)))
18673 (when (memq (org-element-type context)
18674 '(latex-environment latex-fragment))
18675 (setq beg (org-element-property :begin context)
18676 end (org-element-property :end context)
18677 msg "Creating image...%s"))))
18678 ((org-before-first-heading-p)
18679 (setq beg (point-min) end (point-max)
18680 msg "Creating images for buffer...%s"))
18682 (org-back-to-heading)
18683 (setq beg (point) end (progn (outline-next-heading) (point))
18684 msg "Creating images for entry...%s")))
18685 (message msg "")
18686 (narrow-to-region beg end)
18687 (goto-char beg)
18688 (org-format-latex
18689 (concat org-latex-preview-ltxpng-directory
18690 (file-name-sans-extension
18691 (file-name-nondirectory
18692 (buffer-file-name (buffer-base-buffer)))))
18693 default-directory 'overlays msg 'forbuffer
18694 org-latex-create-formula-image-program)
18695 (message msg "done. Use `C-c C-x C-l' to remove images."))))))
18697 (defun org-format-latex
18698 (prefix &optional dir overlays msg forbuffer processing-type)
18699 "Replace LaTeX fragments with links to an image, and produce images.
18700 Some of the options can be changed using the variable
18701 `org-format-latex-options'."
18702 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
18703 (unless (eq processing-type 'verbatim)
18704 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
18705 (cnt 0)
18706 checkdir-flag)
18707 (goto-char (point-min))
18708 (while (re-search-forward math-regexp nil t)
18709 (unless (and overlays
18710 (eq (get-char-property (point) 'org-overlay-type)
18711 'org-latex-overlay))
18712 (let* ((context (org-element-context))
18713 (type (org-element-type context)))
18714 (when (memq type '(latex-environment latex-fragment))
18715 (let ((block-type (eq type 'latex-environment))
18716 (value (org-element-property :value context))
18717 (beg (org-element-property :begin context))
18718 (end (save-excursion
18719 (goto-char (org-element-property :end context))
18720 (skip-chars-backward " \r\t\n")
18721 (point))))
18722 (case processing-type
18723 (mathjax
18724 ;; Prepare for MathJax processing.
18725 (if (eq (char-after beg) ?$)
18726 (save-excursion
18727 (delete-region beg end)
18728 (insert "\\(" (substring value 1 -1) "\\)"))
18729 (goto-char end)))
18730 ((dvipng imagemagick)
18731 ;; Process to an image.
18732 (incf cnt)
18733 (goto-char beg)
18734 (let* ((face (face-at-point))
18735 ;; Get the colors from the face at point.
18737 (let ((color (plist-get org-format-latex-options
18738 :foreground)))
18739 (if (and forbuffer (eq color 'auto))
18740 (face-attribute face :foreground nil 'default)
18741 color)))
18743 (let ((color (plist-get org-format-latex-options
18744 :background)))
18745 (if (and forbuffer (eq color 'auto))
18746 (face-attribute face :background nil 'default)
18747 color)))
18748 (hash (sha1 (prin1-to-string
18749 (list org-format-latex-header
18750 org-latex-default-packages-alist
18751 org-latex-packages-alist
18752 org-format-latex-options
18753 forbuffer value fg bg))))
18754 (absprefix (expand-file-name prefix dir))
18755 (linkfile (format "%s_%s.png" prefix hash))
18756 (movefile (format "%s_%s.png" absprefix hash))
18757 (sep (and block-type "\n\n"))
18758 (link (concat sep "[[file:" linkfile "]]" sep))
18759 (options
18760 (org-combine-plists
18761 org-format-latex-options
18762 `(:foreground ,fg :background ,bg))))
18763 (when msg (message msg cnt))
18764 (unless checkdir-flag ; Ensure the directory exists.
18765 (setq checkdir-flag t)
18766 (let ((todir (file-name-directory absprefix)))
18767 (unless (file-directory-p todir)
18768 (make-directory todir t))))
18769 (unless (file-exists-p movefile)
18770 (org-create-formula-image
18771 value movefile options forbuffer processing-type))
18772 (if overlays
18773 (progn
18774 (dolist (o (overlays-in beg end))
18775 (when (eq (overlay-get o 'org-overlay-type)
18776 'org-latex-overlay)
18777 (delete-overlay o)))
18778 (let ((ov (make-overlay beg end)))
18779 (overlay-put ov
18780 'org-overlay-type
18781 'org-latex-overlay)
18782 (if (featurep 'xemacs)
18783 (progn
18784 (overlay-put ov 'invisible t)
18785 (overlay-put
18786 ov 'end-glyph
18787 (make-glyph
18788 (vector 'png :file movefile))))
18789 (overlay-put
18790 ov 'display
18791 (list 'image
18792 :type 'png
18793 :file movefile
18794 :ascent 'center)))
18795 (push ov org-latex-fragment-image-overlays))
18796 (goto-char end))
18797 (delete-region beg end)
18798 (insert
18799 (org-add-props link
18800 (list 'org-latex-src
18801 (replace-regexp-in-string "\"" "" value)
18802 'org-latex-src-embed-type
18803 (if block-type 'paragraph 'character)))))))
18804 (mathml
18805 ;; Process to MathML.
18806 (unless (org-format-latex-mathml-available-p)
18807 (user-error "LaTeX to MathML converter not configured"))
18808 (incf cnt)
18809 (when msg (message msg cnt))
18810 (goto-char beg)
18811 (delete-region beg end)
18812 (insert (org-format-latex-as-mathml
18813 value block-type prefix dir)))
18814 (otherwise
18815 (error "Unknown conversion type %s for LaTeX fragments"
18816 processing-type)))))))))))
18818 (defun org-create-math-formula (latex-frag &optional mathml-file)
18819 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
18820 Use `org-latex-to-mathml-convert-command'. If the conversion is
18821 sucessful, return the portion between \"<math...> </math>\"
18822 elements otherwise return nil. When MATHML-FILE is specified,
18823 write the results in to that file. When invoked as an
18824 interactive command, prompt for LATEX-FRAG, with initial value
18825 set to the current active region and echo the results for user
18826 inspection."
18827 (interactive (list (let ((frag (when (org-region-active-p)
18828 (buffer-substring-no-properties
18829 (region-beginning) (region-end)))))
18830 (read-string "LaTeX Fragment: " frag nil frag))))
18831 (unless latex-frag (user-error "Invalid LaTeX fragment"))
18832 (let* ((tmp-in-file (file-relative-name
18833 (make-temp-name (expand-file-name "ltxmathml-in"))))
18834 (ignore (write-region latex-frag nil tmp-in-file))
18835 (tmp-out-file (file-relative-name
18836 (make-temp-name (expand-file-name "ltxmathml-out"))))
18837 (cmd (format-spec
18838 org-latex-to-mathml-convert-command
18839 `((?j . ,(shell-quote-argument
18840 (expand-file-name org-latex-to-mathml-jar-file)))
18841 (?I . ,(shell-quote-argument tmp-in-file))
18842 (?o . ,(shell-quote-argument tmp-out-file)))))
18843 mathml shell-command-output)
18844 (when (org-called-interactively-p 'any)
18845 (unless (org-format-latex-mathml-available-p)
18846 (user-error "LaTeX to MathML converter not configured")))
18847 (message "Running %s" cmd)
18848 (setq shell-command-output (shell-command-to-string cmd))
18849 (setq mathml
18850 (when (file-readable-p tmp-out-file)
18851 (with-current-buffer (find-file-noselect tmp-out-file t)
18852 (goto-char (point-min))
18853 (when (re-search-forward
18854 (concat
18855 (regexp-quote
18856 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">")
18857 "\\(.\\|\n\\)*"
18858 (regexp-quote "</math>")) nil t)
18859 (prog1 (match-string 0) (kill-buffer))))))
18860 (cond
18861 (mathml
18862 (setq mathml
18863 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
18864 (when mathml-file
18865 (write-region mathml nil mathml-file))
18866 (when (org-called-interactively-p 'any)
18867 (message mathml)))
18868 ((message "LaTeX to MathML conversion failed")
18869 (message shell-command-output)))
18870 (delete-file tmp-in-file)
18871 (when (file-exists-p tmp-out-file)
18872 (delete-file tmp-out-file))
18873 mathml))
18875 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
18876 prefix &optional dir)
18877 "Use `org-create-math-formula' but check local cache first."
18878 (let* ((absprefix (expand-file-name prefix dir))
18879 (print-length nil) (print-level nil)
18880 (formula-id (concat
18881 "formula-"
18882 (sha1
18883 (prin1-to-string
18884 (list latex-frag
18885 org-latex-to-mathml-convert-command)))))
18886 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
18887 (formula-cache-dir (file-name-directory formula-cache)))
18889 (unless (file-directory-p formula-cache-dir)
18890 (make-directory formula-cache-dir t))
18892 (unless (file-exists-p formula-cache)
18893 (org-create-math-formula latex-frag formula-cache))
18895 (if (file-exists-p formula-cache)
18896 ;; Successful conversion. Return the link to MathML file.
18897 (org-add-props
18898 (format "[[file:%s]]" (file-relative-name formula-cache dir))
18899 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
18900 'org-latex-src-embed-type (if latex-frag-type
18901 'paragraph 'character)))
18902 ;; Failed conversion. Return the LaTeX fragment verbatim
18903 latex-frag)))
18905 (defun org-create-formula-image (string tofile options buffer &optional type)
18906 "Create an image from LaTeX source using dvipng or convert.
18907 This function calls either `org-create-formula-image-with-dvipng'
18908 or `org-create-formula-image-with-imagemagick' depending on the
18909 value of `org-latex-create-formula-image-program' or on the value
18910 of the optional TYPE variable.
18912 Note: ultimately these two function should be combined as they
18913 share a good deal of logic."
18914 (org-check-external-command
18915 "latex" "needed to convert LaTeX fragments to images")
18916 (funcall
18917 (case (or type org-latex-create-formula-image-program)
18918 ('dvipng
18919 (org-check-external-command
18920 "dvipng" "needed to convert LaTeX fragments to images")
18921 'org-create-formula-image-with-dvipng)
18922 ('imagemagick
18923 (org-check-external-command
18924 "convert" "you need to install imagemagick")
18925 'org-create-formula-image-with-imagemagick)
18926 (t (error
18927 "Invalid value of `org-latex-create-formula-image-program'")))
18928 string tofile options buffer))
18930 (declare-function org-export-get-backend "ox" (name))
18931 (declare-function org-export--get-global-options "ox" (&optional backend))
18932 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
18933 (declare-function org-latex-guess-inputenc "ox-latex" (header))
18934 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
18935 (defun org-create-formula--latex-header ()
18936 "Return LaTeX header appropriate for previewing a LaTeX snippet."
18937 (let ((info (org-combine-plists (org-export--get-global-options
18938 (org-export-get-backend 'latex))
18939 (org-export--get-inbuffer-options
18940 (org-export-get-backend 'latex)))))
18941 (org-latex-guess-babel-language
18942 (org-latex-guess-inputenc
18943 (org-splice-latex-header
18944 org-format-latex-header
18945 org-latex-default-packages-alist
18946 org-latex-packages-alist t
18947 (plist-get info :latex-header)))
18948 info)))
18950 ;; This function borrows from Ganesh Swami's latex2png.el
18951 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
18952 "This calls dvipng."
18953 (require 'ox-latex)
18954 (let* ((tmpdir (if (featurep 'xemacs)
18955 (temp-directory)
18956 temporary-file-directory))
18957 (texfilebase (make-temp-name
18958 (expand-file-name "orgtex" tmpdir)))
18959 (texfile (concat texfilebase ".tex"))
18960 (dvifile (concat texfilebase ".dvi"))
18961 (pngfile (concat texfilebase ".png"))
18962 (fnh (if (featurep 'xemacs)
18963 (font-height (face-font 'default))
18964 (face-attribute 'default :height nil)))
18965 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
18966 (dpi (number-to-string (* scale (floor (* 0.9 (if buffer fnh 140.))))))
18967 (fg (or (plist-get options (if buffer :foreground :html-foreground))
18968 "Black"))
18969 (bg (or (plist-get options (if buffer :background :html-background))
18970 "Transparent")))
18971 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
18972 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
18973 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
18974 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
18975 (let ((latex-header (org-create-formula--latex-header)))
18976 (with-temp-file texfile
18977 (insert latex-header)
18978 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
18979 (let ((dir default-directory))
18980 (ignore-errors
18981 (cd tmpdir)
18982 (call-process "latex" nil nil nil texfile))
18983 (cd dir))
18984 (if (not (file-exists-p dvifile))
18985 (progn (message "Failed to create dvi file from %s" texfile) nil)
18986 (ignore-errors
18987 (if (featurep 'xemacs)
18988 (call-process "dvipng" nil nil nil
18989 "-fg" fg "-bg" bg
18990 "-T" "tight"
18991 "-o" pngfile
18992 dvifile)
18993 (call-process "dvipng" nil nil nil
18994 "-fg" fg "-bg" bg
18995 "-D" dpi
18996 ;;"-x" scale "-y" scale
18997 "-T" "tight"
18998 "-o" pngfile
18999 dvifile)))
19000 (if (not (file-exists-p pngfile))
19001 (if org-format-latex-signal-error
19002 (error "Failed to create png file from %s" texfile)
19003 (message "Failed to create png file from %s" texfile)
19004 nil)
19005 ;; Use the requested file name and clean up
19006 (copy-file pngfile tofile 'replace)
19007 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19008 (if (file-exists-p (concat texfilebase e))
19009 (delete-file (concat texfilebase e))))
19010 pngfile))))
19012 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19013 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19014 "This calls convert, which is included into imagemagick."
19015 (require 'ox-latex)
19016 (let* ((tmpdir (if (featurep 'xemacs)
19017 (temp-directory)
19018 temporary-file-directory))
19019 (texfilebase (make-temp-name
19020 (expand-file-name "orgtex" tmpdir)))
19021 (texfile (concat texfilebase ".tex"))
19022 (pdffile (concat texfilebase ".pdf"))
19023 (pngfile (concat texfilebase ".png"))
19024 (fnh (if (featurep 'xemacs)
19025 (font-height (face-font 'default))
19026 (face-attribute 'default :height nil)))
19027 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19028 (dpi (number-to-string (* scale (floor (if buffer fnh 120.)))))
19029 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19030 "black"))
19031 (bg (or (plist-get options (if buffer :background :html-background))
19032 "white")))
19033 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19034 (setq fg (org-latex-color-format fg)))
19035 (if (eq bg 'default) (setq bg (org-latex-color :background))
19036 (setq bg (org-latex-color-format
19037 (if (string= bg "Transparent") "white" bg))))
19038 (let ((latex-header (org-create-formula--latex-header)))
19039 (with-temp-file texfile
19040 (insert latex-header)
19041 (insert "\n\\begin{document}\n"
19042 "\\definecolor{fg}{rgb}{" fg "}\n"
19043 "\\definecolor{bg}{rgb}{" bg "}\n"
19044 "\n\\pagecolor{bg}\n"
19045 "\n{\\color{fg}\n"
19046 string
19047 "\n}\n"
19048 "\n\\end{document}\n")))
19049 (org-latex-compile texfile t)
19050 (if (not (file-exists-p pdffile))
19051 (progn (message "Failed to create pdf file from %s" texfile) nil)
19052 (ignore-errors
19053 (if (featurep 'xemacs)
19054 (call-process "convert" nil nil nil
19055 "-density" "96"
19056 "-trim"
19057 "-antialias"
19058 pdffile
19059 "-quality" "100"
19060 ;; "-sharpen" "0x1.0"
19061 pngfile)
19062 (call-process "convert" nil nil nil
19063 "-density" dpi
19064 "-trim"
19065 "-antialias"
19066 pdffile
19067 "-quality" "100"
19068 ;; "-sharpen" "0x1.0"
19069 pngfile)))
19070 (if (not (file-exists-p pngfile))
19071 (if org-format-latex-signal-error
19072 (error "Failed to create png file from %s" texfile)
19073 (message "Failed to create png file from %s" texfile)
19074 nil)
19075 ;; Use the requested file name and clean up
19076 (copy-file pngfile tofile 'replace)
19077 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19078 (if (file-exists-p (concat texfilebase e))
19079 (delete-file (concat texfilebase e))))
19080 pngfile))))
19082 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19083 "Fill a LaTeX header template TPL.
19084 In the template, the following place holders will be recognized:
19086 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19087 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19088 [PACKAGES] \\usepackage statements for PKG
19089 [NO-PACKAGES] do not include PKG
19090 [EXTRA] the string EXTRA
19091 [NO-EXTRA] do not include EXTRA
19093 For backward compatibility, if both the positive and the negative place
19094 holder is missing, the positive one (without the \"NO-\") will be
19095 assumed to be present at the end of the template.
19096 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19097 EXTRA is a string.
19098 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19099 (let (rpl (end ""))
19100 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19101 (setq rpl (if (or (match-end 1) (not def-pkg))
19102 "" (org-latex-packages-to-string def-pkg snippets-p t))
19103 tpl (replace-match rpl t t tpl))
19104 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19106 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19107 (setq rpl (if (or (match-end 1) (not pkg))
19108 "" (org-latex-packages-to-string pkg snippets-p t))
19109 tpl (replace-match rpl t t tpl))
19110 (if pkg (setq end
19111 (concat end "\n"
19112 (org-latex-packages-to-string pkg snippets-p)))))
19114 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19115 (setq rpl (if (or (match-end 1) (not extra))
19116 "" (concat extra "\n"))
19117 tpl (replace-match rpl t t tpl))
19118 (if (and extra (string-match "\\S-" extra))
19119 (setq end (concat end "\n" extra))))
19121 (if (string-match "\\S-" end)
19122 (concat tpl "\n" end)
19123 tpl)))
19125 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19126 "Turn an alist of packages into a string with the \\usepackage macros."
19127 (setq pkg (mapconcat (lambda(p)
19128 (cond
19129 ((stringp p) p)
19130 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19131 (format "%% Package %s omitted" (cadr p)))
19132 ((equal "" (car p))
19133 (format "\\usepackage{%s}" (cadr p)))
19135 (format "\\usepackage[%s]{%s}"
19136 (car p) (cadr p)))))
19138 "\n"))
19139 (if newline (concat pkg "\n") pkg))
19141 (defun org-dvipng-color (attr)
19142 "Return a RGB color specification for dvipng."
19143 (apply 'format "rgb %s %s %s"
19144 (mapcar 'org-normalize-color
19145 (if (featurep 'xemacs)
19146 (color-rgb-components
19147 (face-property 'default
19148 (cond ((eq attr :foreground) 'foreground)
19149 ((eq attr :background) 'background))))
19150 (color-values (face-attribute 'default attr nil))))))
19152 (defun org-dvipng-color-format (color-name)
19153 "Convert COLOR-NAME to a RGB color value for dvipng."
19154 (apply 'format "rgb %s %s %s"
19155 (mapcar 'org-normalize-color
19156 (color-values color-name))))
19158 (defun org-latex-color (attr)
19159 "Return a RGB color for the LaTeX color package."
19160 (apply 'format "%s,%s,%s"
19161 (mapcar 'org-normalize-color
19162 (if (featurep 'xemacs)
19163 (color-rgb-components
19164 (face-property 'default
19165 (cond ((eq attr :foreground) 'foreground)
19166 ((eq attr :background) 'background))))
19167 (color-values (face-attribute 'default attr nil))))))
19169 (defun org-latex-color-format (color-name)
19170 "Convert COLOR-NAME to a RGB color value."
19171 (apply 'format "%s,%s,%s"
19172 (mapcar 'org-normalize-color
19173 (color-values color-name))))
19175 (defun org-normalize-color (value)
19176 "Return string to be used as color value for an RGB component."
19177 (format "%g" (/ value 65535.0)))
19181 ;; Image display
19183 (defvar org-inline-image-overlays nil)
19184 (make-variable-buffer-local 'org-inline-image-overlays)
19186 (defun org-toggle-inline-images (&optional include-linked)
19187 "Toggle the display of inline images.
19188 INCLUDE-LINKED is passed to `org-display-inline-images'."
19189 (interactive "P")
19190 (if org-inline-image-overlays
19191 (progn
19192 (org-remove-inline-images)
19193 (message "Inline image display turned off"))
19194 (org-display-inline-images include-linked)
19195 (if (and (org-called-interactively-p)
19196 org-inline-image-overlays)
19197 (message "%d images displayed inline"
19198 (length org-inline-image-overlays))
19199 (message "No images to display inline"))))
19201 (defun org-redisplay-inline-images ()
19202 "Refresh the display of inline images."
19203 (interactive)
19204 (if (not org-inline-image-overlays)
19205 (org-toggle-inline-images)
19206 (org-toggle-inline-images)
19207 (org-toggle-inline-images)))
19209 (defun org-display-inline-images (&optional include-linked refresh beg end)
19210 "Display inline images.
19212 An inline image is a link which follows either of these
19213 conventions:
19215 1. Its path is a file with an extension matching return value
19216 from `image-file-name-regexp' and it has no contents.
19218 2. Its description consists in a single link of the previous
19219 type.
19221 When optional argument INCLUDE-LINKED is non-nil, also links with
19222 a text description part will be inlined. This can be nice for
19223 a quick look at those images, but it does not reflect what
19224 exported files will look like.
19226 When optional argument REFRESH is non-nil, refresh existing
19227 images between BEG and END. This will create new image displays
19228 only if necessary. BEG and END default to the buffer
19229 boundaries."
19230 (interactive "P")
19231 (when (display-graphic-p)
19232 (unless refresh
19233 (org-remove-inline-images)
19234 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19235 (org-with-wide-buffer
19236 (goto-char (or beg (point-min)))
19237 (let ((case-fold-search t)
19238 (file-extension-re (org-image-file-name-regexp)))
19239 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19240 (let ((link (save-match-data (org-element-context))))
19241 ;; Check if we're at an inline image.
19242 (when (and (equal (org-element-property :type link) "file")
19243 (or include-linked
19244 (not (org-element-property :contents-begin link)))
19245 (let ((parent (org-element-property :parent link)))
19246 (or (not (eq (org-element-type parent) 'link))
19247 (not (cdr (org-element-contents parent)))))
19248 (org-string-match-p file-extension-re
19249 (org-element-property :path link)))
19250 (let ((file (expand-file-name (org-element-property :path link))))
19251 (when (file-exists-p file)
19252 (let ((width
19253 ;; Apply `org-image-actual-width' specifications.
19254 (cond
19255 ((not (image-type-available-p 'imagemagick)) nil)
19256 ((eq org-image-actual-width t) nil)
19257 ((listp org-image-actual-width)
19259 ;; First try to find a width among
19260 ;; attributes associated to the paragraph
19261 ;; containing link.
19262 (let ((paragraph
19263 (let ((e link))
19264 (while (and (setq e (org-element-property
19265 :parent e))
19266 (not (eq (org-element-type e)
19267 'paragraph))))
19268 e)))
19269 (when paragraph
19270 (save-excursion
19271 (goto-char (org-element-property :begin paragraph))
19272 (when
19273 (re-search-forward
19274 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19275 (org-element-property
19276 :post-affiliated paragraph)
19278 (string-to-number (match-string 1))))))
19279 ;; Otherwise, fall-back to provided number.
19280 (car org-image-actual-width)))
19281 ((numberp org-image-actual-width)
19282 org-image-actual-width)))
19283 (old (get-char-property-and-overlay
19284 (org-element-property :begin link)
19285 'org-image-overlay)))
19286 (if (and (car-safe old) refresh)
19287 (image-refresh (overlay-get (cdr old) 'display))
19288 (let ((image (create-image file
19289 (and width 'imagemagick)
19291 :width width)))
19292 (when image
19293 (let* ((link
19294 ;; If inline image is the description
19295 ;; of another link, be sure to
19296 ;; consider the latter as the one to
19297 ;; apply the overlay on.
19298 (let ((parent
19299 (org-element-property :parent link)))
19300 (if (eq (org-element-type parent) 'link)
19301 parent
19302 link)))
19303 (ov (make-overlay
19304 (org-element-property :begin link)
19305 (progn
19306 (goto-char
19307 (org-element-property :end link))
19308 (skip-chars-backward " \t")
19309 (point)))))
19310 (overlay-put ov 'display image)
19311 (overlay-put ov 'face 'default)
19312 (overlay-put ov 'org-image-overlay t)
19313 (overlay-put
19314 ov 'modification-hooks
19315 (list 'org-display-inline-remove-overlay))
19316 (push ov org-inline-image-overlays)))))))))))))))
19318 (define-obsolete-function-alias
19319 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19321 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19322 "Remove inline-display overlay if a corresponding region is modified."
19323 (let ((inhibit-modification-hooks t))
19324 (when (and ov after)
19325 (delete ov org-inline-image-overlays)
19326 (delete-overlay ov))))
19328 (defun org-remove-inline-images ()
19329 "Remove inline display of images."
19330 (interactive)
19331 (mapc 'delete-overlay org-inline-image-overlays)
19332 (setq org-inline-image-overlays nil))
19334 ;;;; Key bindings
19336 ;; Outline functions from `outline-mode-prefix-map'
19337 ;; that can be remapped in Org:
19338 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19339 (define-key org-mode-map [remap show-subtree] 'org-show-subtree)
19340 (define-key org-mode-map [remap outline-forward-same-level]
19341 'org-forward-heading-same-level)
19342 (define-key org-mode-map [remap outline-backward-same-level]
19343 'org-backward-heading-same-level)
19344 (define-key org-mode-map [remap show-branches]
19345 'org-kill-note-or-show-branches)
19346 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19347 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19348 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19350 ;; Outline functions from `outline-mode-prefix-map' that can not
19351 ;; be remapped in Org:
19353 ;; - the column "key binding" shows whether the Outline function is still
19354 ;; available in Org mode on the same key that it has been bound to in
19355 ;; Outline mode:
19356 ;; - "overridden": key used for a different functionality in Org mode
19357 ;; - else: key still bound to the same Outline function in Org mode
19359 ;; | Outline function | key binding | Org replacement |
19360 ;; |------------------------------------+-------------+-----------------------|
19361 ;; | `outline-next-visible-heading' | `C-c C-n' | still same function |
19362 ;; | `outline-previous-visible-heading' | `C-c C-p' | still same function |
19363 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19364 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19365 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19366 ;; | `show-entry' | overridden | no replacement |
19367 ;; | `show-children' | `C-c C-i' | visibility cycling |
19368 ;; | `show-branches' | `C-c C-k' | still same function |
19369 ;; | `show-subtree' | overridden | visibility cycling |
19370 ;; | `show-all' | overridden | no replacement |
19371 ;; | `hide-subtree' | overridden | visibility cycling |
19372 ;; | `hide-body' | overridden | no replacement |
19373 ;; | `hide-entry' | overridden | visibility cycling |
19374 ;; | `hide-leaves' | overridden | no replacement |
19375 ;; | `hide-sublevels' | overridden | no replacement |
19376 ;; | `hide-other' | overridden | no replacement |
19378 ;; Make `C-c C-x' a prefix key
19379 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19381 ;; TAB key with modifiers
19382 (org-defkey org-mode-map "\C-i" 'org-cycle)
19383 (org-defkey org-mode-map [(tab)] 'org-cycle)
19384 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19385 (org-defkey org-mode-map "\M-\t" 'pcomplete)
19386 ;; The following line is necessary under Suse GNU/Linux
19387 (unless (featurep 'xemacs)
19388 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19389 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19390 (define-key org-mode-map [backtab] 'org-shifttab)
19392 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19393 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19394 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19396 ;; Cursor keys with modifiers
19397 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19398 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19399 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19400 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19402 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19403 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19404 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19405 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19406 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19407 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19409 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19410 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19411 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19412 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19414 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19415 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19416 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19417 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19419 ;; Babel keys
19420 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19421 (mapc (lambda (pair)
19422 (define-key org-babel-map (car pair) (cdr pair)))
19423 org-babel-key-bindings)
19425 ;;; Extra keys for tty access.
19426 ;; We only set them when really needed because otherwise the
19427 ;; menus don't show the simple keys
19429 (when (or org-use-extra-keys
19430 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19431 (not window-system))
19432 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19433 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19434 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19435 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19436 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19437 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19438 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19439 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19440 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19441 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19442 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19443 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19444 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19445 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19446 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19447 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19448 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19449 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19450 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19451 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19452 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19453 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19454 (org-defkey org-mode-map [?\e (tab)] 'pcomplete)
19455 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19456 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19457 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19458 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19459 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19461 ;; All the other keys
19463 (org-defkey org-mode-map "\C-c\C-a" 'show-all) ; in case allout messed up.
19464 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19465 (if (boundp 'narrow-map)
19466 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19467 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19468 (if (boundp 'narrow-map)
19469 (org-defkey narrow-map "b" 'org-narrow-to-block)
19470 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19471 (if (boundp 'narrow-map)
19472 (org-defkey narrow-map "e" 'org-narrow-to-element)
19473 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19474 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19475 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19476 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19477 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19478 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19479 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19480 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19481 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19482 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19483 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19484 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-advertized-archive-subtree)
19485 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19486 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19487 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19488 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19489 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19490 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19491 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19492 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19493 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19494 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19495 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19496 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19497 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19498 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19499 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19500 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19501 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19502 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19503 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19504 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19505 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19506 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19507 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19508 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19509 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19510 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19511 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19512 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19513 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19514 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19515 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19516 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19517 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19518 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19519 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19520 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19521 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19522 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19523 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19524 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19525 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19526 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19527 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19528 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19529 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19530 (org-defkey org-mode-map "\C-c^" 'org-sort)
19531 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19532 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19533 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19534 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19535 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19536 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19537 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19538 (org-defkey org-mode-map "\C-m" 'org-return)
19539 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19540 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19541 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19542 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19543 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19544 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19545 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19546 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19547 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19548 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19549 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19550 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19551 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19552 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19553 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19554 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19555 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19556 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19557 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19558 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19559 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19560 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19561 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19562 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19563 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19565 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19566 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19567 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19569 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19570 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19571 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19572 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19573 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19574 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19575 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19576 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19577 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19578 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19579 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19580 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19581 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19582 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19583 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19584 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19585 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
19586 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
19587 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
19588 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
19589 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
19590 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
19591 (org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer)
19593 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
19594 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
19595 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
19596 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
19597 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
19599 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
19601 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
19603 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
19604 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
19606 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
19609 (when (featurep 'xemacs)
19610 (org-defkey org-mode-map 'button3 'popup-mode-menu))
19613 (defconst org-speed-commands-default
19615 ("Outline Navigation")
19616 ("n" . (org-speed-move-safe 'outline-next-visible-heading))
19617 ("p" . (org-speed-move-safe 'outline-previous-visible-heading))
19618 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
19619 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
19620 ("F" . org-next-block)
19621 ("B" . org-previous-block)
19622 ("u" . (org-speed-move-safe 'outline-up-heading))
19623 ("j" . org-goto)
19624 ("g" . (org-refile t))
19625 ("Outline Visibility")
19626 ("c" . org-cycle)
19627 ("C" . org-shifttab)
19628 (" " . org-display-outline-path)
19629 ("s" . org-narrow-to-subtree)
19630 ("=" . org-columns)
19631 ("Outline Structure Editing")
19632 ("U" . org-metaup)
19633 ("D" . org-metadown)
19634 ("r" . org-metaright)
19635 ("l" . org-metaleft)
19636 ("R" . org-shiftmetaright)
19637 ("L" . org-shiftmetaleft)
19638 ("i" . (progn (forward-char 1) (call-interactively
19639 'org-insert-heading-respect-content)))
19640 ("^" . org-sort)
19641 ("w" . org-refile)
19642 ("a" . org-archive-subtree-default-with-confirmation)
19643 ("@" . org-mark-subtree)
19644 ("#" . org-toggle-comment)
19645 ("Clock Commands")
19646 ("I" . org-clock-in)
19647 ("O" . org-clock-out)
19648 ("Meta Data Editing")
19649 ("t" . org-todo)
19650 ("," . (org-priority))
19651 ("0" . (org-priority ?\ ))
19652 ("1" . (org-priority ?A))
19653 ("2" . (org-priority ?B))
19654 ("3" . (org-priority ?C))
19655 (":" . org-set-tags-command)
19656 ("e" . org-set-effort)
19657 ("E" . org-inc-effort)
19658 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
19659 (org-entry-put (point) "APPT_WARNTIME" m)))
19660 ("Agenda Views etc")
19661 ("v" . org-agenda)
19662 ("/" . org-sparse-tree)
19663 ("Misc")
19664 ("o" . org-open-at-point)
19665 ("?" . org-speed-command-help)
19666 ("<" . (org-agenda-set-restriction-lock 'subtree))
19667 (">" . (org-agenda-remove-restriction-lock))
19669 "The default speed commands.")
19671 (defun org-print-speed-command (e)
19672 (if (> (length (car e)) 1)
19673 (progn
19674 (princ "\n")
19675 (princ (car e))
19676 (princ "\n")
19677 (princ (make-string (length (car e)) ?-))
19678 (princ "\n"))
19679 (princ (car e))
19680 (princ " ")
19681 (if (symbolp (cdr e))
19682 (princ (symbol-name (cdr e)))
19683 (prin1 (cdr e)))
19684 (princ "\n")))
19686 (defun org-speed-command-help ()
19687 "Show the available speed commands."
19688 (interactive)
19689 (if (not org-use-speed-commands)
19690 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
19691 (with-output-to-temp-buffer "*Help*"
19692 (princ "User-defined Speed commands\n===========================\n")
19693 (mapc 'org-print-speed-command org-speed-commands-user)
19694 (princ "\n")
19695 (princ "Built-in Speed commands\n=======================\n")
19696 (mapc 'org-print-speed-command org-speed-commands-default))
19697 (with-current-buffer "*Help*"
19698 (setq truncate-lines t))))
19700 (defun org-speed-move-safe (cmd)
19701 "Execute CMD, but make sure that the cursor always ends up in a headline.
19702 If not, return to the original position and throw an error."
19703 (interactive)
19704 (let ((pos (point)))
19705 (call-interactively cmd)
19706 (unless (and (bolp) (org-at-heading-p))
19707 (goto-char pos)
19708 (error "Boundary reached while executing %s" cmd))))
19710 (defvar org-self-insert-command-undo-counter 0)
19712 (defvar org-table-auto-blank-field) ; defined in org-table.el
19713 (defvar org-speed-command nil)
19715 (define-obsolete-function-alias
19716 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
19718 (defun org-speed-command-activate (keys)
19719 "Hook for activating single-letter speed commands.
19720 `org-speed-commands-default' specifies a minimal command set.
19721 Use `org-speed-commands-user' for further customization."
19722 (when (or (and (bolp) (looking-at org-outline-regexp))
19723 (and (functionp org-use-speed-commands)
19724 (funcall org-use-speed-commands)))
19725 (cdr (assoc keys (append org-speed-commands-user
19726 org-speed-commands-default)))))
19728 (define-obsolete-function-alias
19729 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
19731 (defun org-babel-speed-command-activate (keys)
19732 "Hook for activating single-letter code block commands."
19733 (when (and (bolp) (looking-at org-babel-src-block-regexp))
19734 (cdr (assoc keys org-babel-key-bindings))))
19736 (defcustom org-speed-command-hook
19737 '(org-speed-command-default-hook org-babel-speed-command-hook)
19738 "Hook for activating speed commands at strategic locations.
19739 Hook functions are called in sequence until a valid handler is
19740 found.
19742 Each hook takes a single argument, a user-pressed command key
19743 which is also a `self-insert-command' from the global map.
19745 Within the hook, examine the cursor position and the command key
19746 and return nil or a valid handler as appropriate. Handler could
19747 be one of an interactive command, a function, or a form.
19749 Set `org-use-speed-commands' to non-nil value to enable this
19750 hook. The default setting is `org-speed-command-activate'."
19751 :group 'org-structure
19752 :version "24.1"
19753 :type 'hook)
19755 (defun org-self-insert-command (N)
19756 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
19757 If the cursor is in a table looking at whitespace, the whitespace is
19758 overwritten, and the table is not marked as requiring realignment."
19759 (interactive "p")
19760 (org-check-before-invisible-edit 'insert)
19761 (cond
19762 ((and org-use-speed-commands
19763 (let ((kv (this-command-keys-vector)))
19764 (setq org-speed-command
19765 (run-hook-with-args-until-success
19766 'org-speed-command-hook
19767 (make-string 1 (aref kv (1- (length kv))))))))
19768 (cond
19769 ((commandp org-speed-command)
19770 (setq this-command org-speed-command)
19771 (call-interactively org-speed-command))
19772 ((functionp org-speed-command)
19773 (funcall org-speed-command))
19774 ((and org-speed-command (listp org-speed-command))
19775 (eval org-speed-command))
19776 (t (let (org-use-speed-commands)
19777 (call-interactively 'org-self-insert-command)))))
19778 ((and
19779 (org-table-p)
19780 (progn
19781 ;; check if we blank the field, and if that triggers align
19782 (and (featurep 'org-table) org-table-auto-blank-field
19783 (member last-command
19784 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c yas-expand))
19785 (if (or (equal (char-after) ?\ ) (looking-at "[^|\n]* |"))
19786 ;; got extra space, this field does not determine column width
19787 (let (org-table-may-need-update) (org-table-blank-field))
19788 ;; no extra space, this field may determine column width
19789 (org-table-blank-field)))
19791 (eq N 1)
19792 (looking-at "[^|\n]* |"))
19793 (let (org-table-may-need-update)
19794 (goto-char (1- (match-end 0)))
19795 (backward-delete-char 1)
19796 (goto-char (match-beginning 0))
19797 (self-insert-command N)))
19799 (setq org-table-may-need-update t)
19800 (self-insert-command N)
19801 (org-fix-tags-on-the-fly)
19802 (if org-self-insert-cluster-for-undo
19803 (if (not (eq last-command 'org-self-insert-command))
19804 (setq org-self-insert-command-undo-counter 1)
19805 (if (>= org-self-insert-command-undo-counter 20)
19806 (setq org-self-insert-command-undo-counter 1)
19807 (and (> org-self-insert-command-undo-counter 0)
19808 buffer-undo-list (listp buffer-undo-list)
19809 (not (cadr buffer-undo-list)) ; remove nil entry
19810 (setcdr buffer-undo-list (cddr buffer-undo-list)))
19811 (setq org-self-insert-command-undo-counter
19812 (1+ org-self-insert-command-undo-counter))))))))
19814 (defun org-check-before-invisible-edit (kind)
19815 "Check is editing if kind KIND would be dangerous with invisible text around.
19816 The detailed reaction depends on the user option `org-catch-invisible-edits'."
19817 ;; First, try to get out of here as quickly as possible, to reduce overhead
19818 (if (and org-catch-invisible-edits
19819 (or (not (boundp 'visible-mode)) (not visible-mode))
19820 (or (get-char-property (point) 'invisible)
19821 (get-char-property (max (point-min) (1- (point))) 'invisible)))
19822 ;; OK, we need to take a closer look
19823 (let* ((invisible-at-point (get-char-property (point) 'invisible))
19824 (invisible-before-point (if (bobp) nil (get-char-property
19825 (1- (point)) 'invisible)))
19826 (border-and-ok-direction
19828 ;; Check if we are acting predictably before invisible text
19829 (and invisible-at-point (not invisible-before-point)
19830 (memq kind '(insert delete-backward)))
19831 ;; Check if we are acting predictably after invisible text
19832 ;; This works not well, and I have turned it off. It seems
19833 ;; better to always show and stop after invisible text.
19834 ;; (and (not invisible-at-point) invisible-before-point
19835 ;; (memq kind '(insert delete)))
19837 (when (or (memq invisible-at-point '(outline org-hide-block t))
19838 (memq invisible-before-point '(outline org-hide-block t)))
19839 (if (eq org-catch-invisible-edits 'error)
19840 (user-error "Editing in invisible areas is prohibited, make them visible first"))
19841 (if (and org-custom-properties-overlays
19842 (y-or-n-p "Display invisible properties in this buffer? "))
19843 (org-toggle-custom-properties-visibility)
19844 ;; Make the area visible
19845 (save-excursion
19846 (if invisible-before-point
19847 (goto-char (previous-single-char-property-change
19848 (point) 'invisible)))
19849 (show-subtree))
19850 (cond
19851 ((eq org-catch-invisible-edits 'show)
19852 ;; That's it, we do the edit after showing
19853 (message
19854 "Unfolding invisible region around point before editing")
19855 (sit-for 1))
19856 ((and (eq org-catch-invisible-edits 'smart)
19857 border-and-ok-direction)
19858 (message "Unfolding invisible region around point before editing"))
19860 ;; Don't do the edit, make the user repeat it in full visibility
19861 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
19863 (defun org-fix-tags-on-the-fly ()
19864 (when (and (equal (char-after (point-at-bol)) ?*)
19865 (org-at-heading-p))
19866 (org-align-tags-here org-tags-column)))
19868 (defun org-delete-backward-char (N)
19869 "Like `delete-backward-char', insert whitespace at field end in tables.
19870 When deleting backwards, in tables this function will insert whitespace in
19871 front of the next \"|\" separator, to keep the table aligned. The table will
19872 still be marked for re-alignment if the field did fill the entire column,
19873 because, in this case the deletion might narrow the column."
19874 (interactive "p")
19875 (save-match-data
19876 (org-check-before-invisible-edit 'delete-backward)
19877 (if (and (org-table-p)
19878 (eq N 1)
19879 (string-match "|" (buffer-substring (point-at-bol) (point)))
19880 (looking-at ".*?|"))
19881 (let ((pos (point))
19882 (noalign (looking-at "[^|\n\r]* |"))
19883 (c org-table-may-need-update))
19884 (backward-delete-char N)
19885 (if (not overwrite-mode)
19886 (progn
19887 (skip-chars-forward "^|")
19888 (insert " ")
19889 (goto-char (1- pos))))
19890 ;; noalign: if there were two spaces at the end, this field
19891 ;; does not determine the width of the column.
19892 (if noalign (setq org-table-may-need-update c)))
19893 (backward-delete-char N)
19894 (org-fix-tags-on-the-fly))))
19896 (defun org-delete-char (N)
19897 "Like `delete-char', but insert whitespace at field end in tables.
19898 When deleting characters, in tables this function will insert whitespace in
19899 front of the next \"|\" separator, to keep the table aligned. The table will
19900 still be marked for re-alignment if the field did fill the entire column,
19901 because, in this case the deletion might narrow the column."
19902 (interactive "p")
19903 (save-match-data
19904 (org-check-before-invisible-edit 'delete)
19905 (if (and (org-table-p)
19906 (not (bolp))
19907 (not (= (char-after) ?|))
19908 (eq N 1))
19909 (if (looking-at ".*?|")
19910 (let ((pos (point))
19911 (noalign (looking-at "[^|\n\r]* |"))
19912 (c org-table-may-need-update))
19913 (replace-match
19914 (concat (substring (match-string 0) 1 -1) " |") nil t)
19915 (goto-char pos)
19916 ;; noalign: if there were two spaces at the end, this field
19917 ;; does not determine the width of the column.
19918 (if noalign (setq org-table-may-need-update c)))
19919 (delete-char N))
19920 (delete-char N)
19921 (org-fix-tags-on-the-fly))))
19923 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
19924 (put 'org-self-insert-command 'delete-selection
19925 (lambda ()
19926 (not (run-hook-with-args-until-success
19927 'self-insert-uses-region-functions))))
19928 (put 'orgtbl-self-insert-command 'delete-selection
19929 (lambda ()
19930 (not (run-hook-with-args-until-success
19931 'self-insert-uses-region-functions))))
19932 (put 'org-delete-char 'delete-selection 'supersede)
19933 (put 'org-delete-backward-char 'delete-selection 'supersede)
19934 (put 'org-yank 'delete-selection 'yank)
19936 ;; Make `flyspell-mode' delay after some commands
19937 (put 'org-self-insert-command 'flyspell-delayed t)
19938 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
19939 (put 'org-delete-char 'flyspell-delayed t)
19940 (put 'org-delete-backward-char 'flyspell-delayed t)
19942 ;; Make pabbrev-mode expand after org-mode commands
19943 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
19944 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
19946 (defun org-remap (map &rest commands)
19947 "In MAP, remap the functions given in COMMANDS.
19948 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
19949 (let (new old)
19950 (while commands
19951 (setq old (pop commands) new (pop commands))
19952 (if (fboundp 'command-remapping)
19953 (org-defkey map (vector 'remap old) new)
19954 (substitute-key-definition old new map global-map)))))
19956 (defun org-transpose-words ()
19957 "Transpose words for Org.
19958 This uses the `org-mode-transpose-word-syntax-table' syntax
19959 table, which interprets characters in `org-emphasis-alist' as
19960 word constituents."
19961 (interactive)
19962 (with-syntax-table org-mode-transpose-word-syntax-table
19963 (call-interactively 'transpose-words)))
19964 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
19966 (when (eq org-enable-table-editor 'optimized)
19967 ;; If the user wants maximum table support, we need to hijack
19968 ;; some standard editing functions
19969 (org-remap org-mode-map
19970 'self-insert-command 'org-self-insert-command
19971 'delete-char 'org-delete-char
19972 'delete-backward-char 'org-delete-backward-char)
19973 (org-defkey org-mode-map "|" 'org-force-self-insert))
19975 (defvar org-ctrl-c-ctrl-c-hook nil
19976 "Hook for functions attaching themselves to `C-c C-c'.
19978 This can be used to add additional functionality to the C-c C-c
19979 key which executes context-dependent commands. This hook is run
19980 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
19981 run after the last test.
19983 Each function will be called with no arguments. The function
19984 must check if the context is appropriate for it to act. If yes,
19985 it should do its thing and then return a non-nil value. If the
19986 context is wrong, just do nothing and return nil.")
19988 (defvar org-ctrl-c-ctrl-c-final-hook nil
19989 "Hook for functions attaching themselves to `C-c C-c'.
19991 This can be used to add additional functionality to the C-c C-c
19992 key which executes context-dependent commands. This hook is run
19993 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
19994 before the first test.
19996 Each function will be called with no arguments. The function
19997 must check if the context is appropriate for it to act. If yes,
19998 it should do its thing and then return a non-nil value. If the
19999 context is wrong, just do nothing and return nil.")
20001 (defvar org-tab-first-hook nil
20002 "Hook for functions to attach themselves to TAB.
20003 See `org-ctrl-c-ctrl-c-hook' for more information.
20004 This hook runs as the first action when TAB is pressed, even before
20005 `org-cycle' messes around with the `outline-regexp' to cater for
20006 inline tasks and plain list item folding.
20007 If any function in this hook returns t, any other actions that
20008 would have been caused by TAB (such as table field motion or visibility
20009 cycling) will not occur.")
20011 (defvar org-tab-after-check-for-table-hook nil
20012 "Hook for functions to attach themselves to TAB.
20013 See `org-ctrl-c-ctrl-c-hook' for more information.
20014 This hook runs after it has been established that the cursor is not in a
20015 table, but before checking if the cursor is in a headline or if global cycling
20016 should be done.
20017 If any function in this hook returns t, not other actions like visibility
20018 cycling will be done.")
20020 (defvar org-tab-after-check-for-cycling-hook nil
20021 "Hook for functions to attach themselves to TAB.
20022 See `org-ctrl-c-ctrl-c-hook' for more information.
20023 This hook runs after it has been established that not table field motion and
20024 not visibility should be done because of current context. This is probably
20025 the place where a package like yasnippets can hook in.")
20027 (defvar org-tab-before-tab-emulation-hook nil
20028 "Hook for functions to attach themselves to TAB.
20029 See `org-ctrl-c-ctrl-c-hook' for more information.
20030 This hook runs after every other options for TAB have been exhausted, but
20031 before indentation and \t insertion takes place.")
20033 (defvar org-metaleft-hook nil
20034 "Hook for functions attaching themselves to `M-left'.
20035 See `org-ctrl-c-ctrl-c-hook' for more information.")
20036 (defvar org-metaright-hook nil
20037 "Hook for functions attaching themselves to `M-right'.
20038 See `org-ctrl-c-ctrl-c-hook' for more information.")
20039 (defvar org-metaup-hook nil
20040 "Hook for functions attaching themselves to `M-up'.
20041 See `org-ctrl-c-ctrl-c-hook' for more information.")
20042 (defvar org-metadown-hook nil
20043 "Hook for functions attaching themselves to `M-down'.
20044 See `org-ctrl-c-ctrl-c-hook' for more information.")
20045 (defvar org-shiftmetaleft-hook nil
20046 "Hook for functions attaching themselves to `M-S-left'.
20047 See `org-ctrl-c-ctrl-c-hook' for more information.")
20048 (defvar org-shiftmetaright-hook nil
20049 "Hook for functions attaching themselves to `M-S-right'.
20050 See `org-ctrl-c-ctrl-c-hook' for more information.")
20051 (defvar org-shiftmetaup-hook nil
20052 "Hook for functions attaching themselves to `M-S-up'.
20053 See `org-ctrl-c-ctrl-c-hook' for more information.")
20054 (defvar org-shiftmetadown-hook nil
20055 "Hook for functions attaching themselves to `M-S-down'.
20056 See `org-ctrl-c-ctrl-c-hook' for more information.")
20057 (defvar org-metareturn-hook nil
20058 "Hook for functions attaching themselves to `M-RET'.
20059 See `org-ctrl-c-ctrl-c-hook' for more information.")
20060 (defvar org-shiftup-hook nil
20061 "Hook for functions attaching themselves to `S-up'.
20062 See `org-ctrl-c-ctrl-c-hook' for more information.")
20063 (defvar org-shiftup-final-hook nil
20064 "Hook for functions attaching themselves to `S-up'.
20065 This one runs after all other options except shift-select have been excluded.
20066 See `org-ctrl-c-ctrl-c-hook' for more information.")
20067 (defvar org-shiftdown-hook nil
20068 "Hook for functions attaching themselves to `S-down'.
20069 See `org-ctrl-c-ctrl-c-hook' for more information.")
20070 (defvar org-shiftdown-final-hook nil
20071 "Hook for functions attaching themselves to `S-down'.
20072 This one runs after all other options except shift-select have been excluded.
20073 See `org-ctrl-c-ctrl-c-hook' for more information.")
20074 (defvar org-shiftleft-hook nil
20075 "Hook for functions attaching themselves to `S-left'.
20076 See `org-ctrl-c-ctrl-c-hook' for more information.")
20077 (defvar org-shiftleft-final-hook nil
20078 "Hook for functions attaching themselves to `S-left'.
20079 This one runs after all other options except shift-select have been excluded.
20080 See `org-ctrl-c-ctrl-c-hook' for more information.")
20081 (defvar org-shiftright-hook nil
20082 "Hook for functions attaching themselves to `S-right'.
20083 See `org-ctrl-c-ctrl-c-hook' for more information.")
20084 (defvar org-shiftright-final-hook nil
20085 "Hook for functions attaching themselves to `S-right'.
20086 This one runs after all other options except shift-select have been excluded.
20087 See `org-ctrl-c-ctrl-c-hook' for more information.")
20089 (defun org-modifier-cursor-error ()
20090 "Throw an error, a modified cursor command was applied in wrong context."
20091 (user-error "This command is active in special context like tables, headlines or items"))
20093 (defun org-shiftselect-error ()
20094 "Throw an error because Shift-Cursor command was applied in wrong context."
20095 (if (and (boundp 'shift-select-mode) shift-select-mode)
20096 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20097 (user-error "This command works only in special context like headlines or timestamps")))
20099 (defun org-call-for-shift-select (cmd)
20100 (let ((this-command-keys-shift-translated t))
20101 (call-interactively cmd)))
20103 (defun org-shifttab (&optional arg)
20104 "Global visibility cycling or move to previous table field.
20105 Call `org-table-previous-field' within a table.
20106 When ARG is nil, cycle globally through visibility states.
20107 When ARG is a numeric prefix, show contents of this level."
20108 (interactive "P")
20109 (cond
20110 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20111 ((integerp arg)
20112 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20113 (message "Content view to level: %d" arg)
20114 (org-content (prefix-numeric-value arg2))
20115 (org-cycle-show-empty-lines t)
20116 (setq org-cycle-global-status 'overview)))
20117 (t (call-interactively 'org-global-cycle))))
20119 (defun org-shiftmetaleft ()
20120 "Promote subtree or delete table column.
20121 Calls `org-promote-subtree', `org-outdent-item-tree', or
20122 `org-table-delete-column', depending on context. See the
20123 individual commands for more information."
20124 (interactive)
20125 (cond
20126 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20127 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20128 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20129 ((if (not (org-region-active-p)) (org-at-item-p)
20130 (save-excursion (goto-char (region-beginning))
20131 (org-at-item-p)))
20132 (call-interactively 'org-outdent-item-tree))
20133 (t (org-modifier-cursor-error))))
20135 (defun org-shiftmetaright ()
20136 "Demote subtree or insert table column.
20137 Calls `org-demote-subtree', `org-indent-item-tree', or
20138 `org-table-insert-column', depending on context. See the
20139 individual commands for more information."
20140 (interactive)
20141 (cond
20142 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20143 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20144 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20145 ((if (not (org-region-active-p)) (org-at-item-p)
20146 (save-excursion (goto-char (region-beginning))
20147 (org-at-item-p)))
20148 (call-interactively 'org-indent-item-tree))
20149 (t (org-modifier-cursor-error))))
20151 (defun org-shiftmetaup (&optional arg)
20152 "Drag the line at point up.
20153 In a table, kill the current row.
20154 On a clock timestamp, update the value of the timestamp like `S-<up>'
20155 but also adjust the previous clocked item in the clock history.
20156 Everywhere else, drag the line at point up."
20157 (interactive "P")
20158 (cond
20159 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20160 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20161 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20162 (call-interactively 'org-timestamp-up)))
20163 (t (call-interactively 'org-drag-line-backward))))
20165 (defun org-shiftmetadown (&optional arg)
20166 "Drag the line at point down.
20167 In a table, insert an empty row at the current line.
20168 On a clock timestamp, update the value of the timestamp like `S-<down>'
20169 but also adjust the previous clocked item in the clock history.
20170 Everywhere else, drag the line at point down."
20171 (interactive "P")
20172 (cond
20173 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20174 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20175 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20176 (call-interactively 'org-timestamp-down)))
20177 (t (call-interactively 'org-drag-line-forward))))
20179 (defsubst org-hidden-tree-error ()
20180 (user-error
20181 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20183 (defun org-metaleft (&optional arg)
20184 "Promote heading or move table column to left.
20185 Calls `org-do-promote' or `org-table-move-column', depending on context.
20186 With no specific context, calls the Emacs default `backward-word'.
20187 See the individual commands for more information."
20188 (interactive "P")
20189 (cond
20190 ((run-hook-with-args-until-success 'org-metaleft-hook))
20191 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20192 ((org-with-limited-levels
20193 (or (org-at-heading-p)
20194 (and (org-region-active-p)
20195 (save-excursion
20196 (goto-char (region-beginning))
20197 (org-at-heading-p)))))
20198 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20199 (call-interactively 'org-do-promote))
20200 ;; At an inline task.
20201 ((org-at-heading-p)
20202 (call-interactively 'org-inlinetask-promote))
20203 ((or (org-at-item-p)
20204 (and (org-region-active-p)
20205 (save-excursion
20206 (goto-char (region-beginning))
20207 (org-at-item-p))))
20208 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20209 (call-interactively 'org-outdent-item))
20210 (t (call-interactively 'backward-word))))
20212 (defun org-metaright (&optional arg)
20213 "Demote a subtree, a list item or move table column to right.
20214 In front of a drawer or a block keyword, indent it correctly.
20215 With no specific context, calls the Emacs default `forward-word'.
20216 See the individual commands for more information."
20217 (interactive "P")
20218 (cond
20219 ((run-hook-with-args-until-success 'org-metaright-hook))
20220 ((org-at-table-p) (call-interactively 'org-table-move-column))
20221 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20222 ((org-at-block-p) (call-interactively 'org-indent-block))
20223 ((org-with-limited-levels
20224 (or (org-at-heading-p)
20225 (and (org-region-active-p)
20226 (save-excursion
20227 (goto-char (region-beginning))
20228 (org-at-heading-p)))))
20229 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20230 (call-interactively 'org-do-demote))
20231 ;; At an inline task.
20232 ((org-at-heading-p)
20233 (call-interactively 'org-inlinetask-demote))
20234 ((or (org-at-item-p)
20235 (and (org-region-active-p)
20236 (save-excursion
20237 (goto-char (region-beginning))
20238 (org-at-item-p))))
20239 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20240 (call-interactively 'org-indent-item))
20241 (t (call-interactively 'forward-word))))
20243 (defun org-check-for-hidden (what)
20244 "Check if there are hidden headlines/items in the current visual line.
20245 WHAT can be either `headlines' or `items'. If the current line is
20246 an outline or item heading and it has a folded subtree below it,
20247 this function returns t, nil otherwise."
20248 (let ((re (cond
20249 ((eq what 'headlines) org-outline-regexp-bol)
20250 ((eq what 'items) (org-item-beginning-re))
20251 (t (error "This should not happen"))))
20252 beg end)
20253 (save-excursion
20254 (catch 'exit
20255 (unless (org-region-active-p)
20256 (setq beg (point-at-bol))
20257 (beginning-of-line 2)
20258 (while (and (not (eobp)) ;; this is like `next-line'
20259 (get-char-property (1- (point)) 'invisible))
20260 (beginning-of-line 2))
20261 (setq end (point))
20262 (goto-char beg)
20263 (goto-char (point-at-eol))
20264 (setq end (max end (point)))
20265 (while (re-search-forward re end t)
20266 (if (get-char-property (match-beginning 0) 'invisible)
20267 (throw 'exit t))))
20268 nil))))
20270 (defun org-metaup (&optional arg)
20271 "Move subtree up or move table row up.
20272 Calls `org-move-subtree-up' or `org-table-move-row' or
20273 `org-move-item-up', depending on context. See the individual commands
20274 for more information."
20275 (interactive "P")
20276 (cond
20277 ((run-hook-with-args-until-success 'org-metaup-hook))
20278 ((org-region-active-p)
20279 (let* ((a (min (region-beginning) (region-end)))
20280 (b (1- (max (region-beginning) (region-end))))
20281 (c (save-excursion (goto-char a)
20282 (move-beginning-of-line 0)))
20283 (d (save-excursion (goto-char a)
20284 (move-end-of-line 0) (point))))
20285 (transpose-regions a b c d)
20286 (goto-char c)))
20287 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20288 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20289 ((org-at-item-p) (call-interactively 'org-move-item-up))
20290 (t (org-drag-element-backward))))
20292 (defun org-metadown (&optional arg)
20293 "Move subtree down or move table row down.
20294 Calls `org-move-subtree-down' or `org-table-move-row' or
20295 `org-move-item-down', depending on context. See the individual
20296 commands for more information."
20297 (interactive "P")
20298 (cond
20299 ((run-hook-with-args-until-success 'org-metadown-hook))
20300 ((org-region-active-p)
20301 (let* ((a (min (region-beginning) (region-end)))
20302 (b (max (region-beginning) (region-end)))
20303 (c (save-excursion (goto-char b)
20304 (move-beginning-of-line 1)))
20305 (d (save-excursion (goto-char b)
20306 (move-end-of-line 1) (1+ (point)))))
20307 (transpose-regions a b c d)
20308 (goto-char d)))
20309 ((org-at-table-p) (call-interactively 'org-table-move-row))
20310 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20311 ((org-at-item-p) (call-interactively 'org-move-item-down))
20312 (t (org-drag-element-forward))))
20314 (defun org-shiftup (&optional arg)
20315 "Increase item in timestamp or increase priority of current headline.
20316 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20317 depending on context. See the individual commands for more information."
20318 (interactive "P")
20319 (cond
20320 ((run-hook-with-args-until-success 'org-shiftup-hook))
20321 ((and org-support-shift-select (org-region-active-p))
20322 (org-call-for-shift-select 'previous-line))
20323 ((org-at-timestamp-p t)
20324 (call-interactively (if org-edit-timestamp-down-means-later
20325 'org-timestamp-down 'org-timestamp-up)))
20326 ((and (not (eq org-support-shift-select 'always))
20327 org-enable-priority-commands
20328 (org-at-heading-p))
20329 (call-interactively 'org-priority-up))
20330 ((and (not org-support-shift-select) (org-at-item-p))
20331 (call-interactively 'org-previous-item))
20332 ((org-clocktable-try-shift 'up arg))
20333 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20334 (org-support-shift-select
20335 (org-call-for-shift-select 'previous-line))
20336 (t (org-shiftselect-error))))
20338 (defun org-shiftdown (&optional arg)
20339 "Decrease item in timestamp or decrease priority of current headline.
20340 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20341 depending on context. See the individual commands for more information."
20342 (interactive "P")
20343 (cond
20344 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20345 ((and org-support-shift-select (org-region-active-p))
20346 (org-call-for-shift-select 'next-line))
20347 ((org-at-timestamp-p t)
20348 (call-interactively (if org-edit-timestamp-down-means-later
20349 'org-timestamp-up 'org-timestamp-down)))
20350 ((and (not (eq org-support-shift-select 'always))
20351 org-enable-priority-commands
20352 (org-at-heading-p))
20353 (call-interactively 'org-priority-down))
20354 ((and (not org-support-shift-select) (org-at-item-p))
20355 (call-interactively 'org-next-item))
20356 ((org-clocktable-try-shift 'down arg))
20357 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20358 (org-support-shift-select
20359 (org-call-for-shift-select 'next-line))
20360 (t (org-shiftselect-error))))
20362 (defun org-shiftright (&optional arg)
20363 "Cycle the thing at point or in the current line, depending on context.
20364 Depending on context, this does one of the following:
20366 - switch a timestamp at point one day into the future
20367 - on a headline, switch to the next TODO keyword.
20368 - on an item, switch entire list to the next bullet type
20369 - on a property line, switch to the next allowed value
20370 - on a clocktable definition line, move time block into the future"
20371 (interactive "P")
20372 (cond
20373 ((run-hook-with-args-until-success 'org-shiftright-hook))
20374 ((and org-support-shift-select (org-region-active-p))
20375 (org-call-for-shift-select 'forward-char))
20376 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20377 ((and (not (eq org-support-shift-select 'always))
20378 (org-at-heading-p))
20379 (let ((org-inhibit-logging
20380 (not org-treat-S-cursor-todo-selection-as-state-change))
20381 (org-inhibit-blocking
20382 (not org-treat-S-cursor-todo-selection-as-state-change)))
20383 (org-call-with-arg 'org-todo 'right)))
20384 ((or (and org-support-shift-select
20385 (not (eq org-support-shift-select 'always))
20386 (org-at-item-bullet-p))
20387 (and (not org-support-shift-select) (org-at-item-p)))
20388 (org-call-with-arg 'org-cycle-list-bullet nil))
20389 ((and (not (eq org-support-shift-select 'always))
20390 (org-at-property-p))
20391 (call-interactively 'org-property-next-allowed-value))
20392 ((org-clocktable-try-shift 'right arg))
20393 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20394 (org-support-shift-select
20395 (org-call-for-shift-select 'forward-char))
20396 (t (org-shiftselect-error))))
20398 (defun org-shiftleft (&optional arg)
20399 "Cycle the thing at point or in the current line, depending on context.
20400 Depending on context, this does one of the following:
20402 - switch a timestamp at point one day into the past
20403 - on a headline, switch to the previous TODO keyword.
20404 - on an item, switch entire list to the previous bullet type
20405 - on a property line, switch to the previous allowed value
20406 - on a clocktable definition line, move time block into the past"
20407 (interactive "P")
20408 (cond
20409 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20410 ((and org-support-shift-select (org-region-active-p))
20411 (org-call-for-shift-select 'backward-char))
20412 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20413 ((and (not (eq org-support-shift-select 'always))
20414 (org-at-heading-p))
20415 (let ((org-inhibit-logging
20416 (not org-treat-S-cursor-todo-selection-as-state-change))
20417 (org-inhibit-blocking
20418 (not org-treat-S-cursor-todo-selection-as-state-change)))
20419 (org-call-with-arg 'org-todo 'left)))
20420 ((or (and org-support-shift-select
20421 (not (eq org-support-shift-select 'always))
20422 (org-at-item-bullet-p))
20423 (and (not org-support-shift-select) (org-at-item-p)))
20424 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20425 ((and (not (eq org-support-shift-select 'always))
20426 (org-at-property-p))
20427 (call-interactively 'org-property-previous-allowed-value))
20428 ((org-clocktable-try-shift 'left arg))
20429 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20430 (org-support-shift-select
20431 (org-call-for-shift-select 'backward-char))
20432 (t (org-shiftselect-error))))
20434 (defun org-shiftcontrolright ()
20435 "Switch to next TODO set."
20436 (interactive)
20437 (cond
20438 ((and org-support-shift-select (org-region-active-p))
20439 (org-call-for-shift-select 'forward-word))
20440 ((and (not (eq org-support-shift-select 'always))
20441 (org-at-heading-p))
20442 (org-call-with-arg 'org-todo 'nextset))
20443 (org-support-shift-select
20444 (org-call-for-shift-select 'forward-word))
20445 (t (org-shiftselect-error))))
20447 (defun org-shiftcontrolleft ()
20448 "Switch to previous TODO set."
20449 (interactive)
20450 (cond
20451 ((and org-support-shift-select (org-region-active-p))
20452 (org-call-for-shift-select 'backward-word))
20453 ((and (not (eq org-support-shift-select 'always))
20454 (org-at-heading-p))
20455 (org-call-with-arg 'org-todo 'previousset))
20456 (org-support-shift-select
20457 (org-call-for-shift-select 'backward-word))
20458 (t (org-shiftselect-error))))
20460 (defun org-shiftcontrolup (&optional n)
20461 "Change timestamps synchronously up in CLOCK log lines.
20462 Optional argument N tells to change by that many units."
20463 (interactive "P")
20464 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20465 (let (org-support-shift-select)
20466 (org-clock-timestamps-up n))
20467 (user-error "Not at a clock log")))
20469 (defun org-shiftcontroldown (&optional n)
20470 "Change timestamps synchronously down in CLOCK log lines.
20471 Optional argument N tells to change by that many units."
20472 (interactive "P")
20473 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20474 (let (org-support-shift-select)
20475 (org-clock-timestamps-down n))
20476 (user-error "Not at a clock log")))
20478 (defun org-increase-number-at-point (&optional inc)
20479 "Increment the number at point.
20480 With an optional prefix numeric argument INC, increment using
20481 this numeric value."
20482 (interactive "p")
20483 (if (not (number-at-point))
20484 (user-error "Not on a number")
20485 (unless inc (setq inc 1))
20486 (let ((pos (point))
20487 (beg (skip-chars-backward "-+^/*0-9eE."))
20488 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20489 (setq nap (buffer-substring-no-properties
20490 (+ pos beg) (+ pos beg end)))
20491 (delete-region (+ pos beg) (+ pos beg end))
20492 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20493 (when (org-at-table-p)
20494 (org-table-align)
20495 (org-table-end-of-field 1))))
20497 (defun org-decrease-number-at-point (&optional inc)
20498 "Decrement the number at point.
20499 With an optional prefix numeric argument INC, decrement using
20500 this numeric value."
20501 (interactive "p")
20502 (org-increase-number-at-point (- inc)))
20504 (defun org-ctrl-c-ret ()
20505 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20506 (interactive)
20507 (cond
20508 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20509 (t (call-interactively 'org-insert-heading))))
20511 (defun org-find-visible ()
20512 (let ((s (point)))
20513 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20514 (get-char-property s 'invisible)))
20516 (defun org-find-invisible ()
20517 (let ((s (point)))
20518 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20519 (not (get-char-property s 'invisible))))
20522 (defun org-copy-visible (beg end)
20523 "Copy the visible parts of the region."
20524 (interactive "r")
20525 (let (snippets s)
20526 (save-excursion
20527 (save-restriction
20528 (narrow-to-region beg end)
20529 (setq s (goto-char (point-min)))
20530 (while (not (= (point) (point-max)))
20531 (goto-char (org-find-invisible))
20532 (push (buffer-substring s (point)) snippets)
20533 (setq s (goto-char (org-find-visible))))))
20534 (kill-new (apply 'concat (nreverse snippets)))))
20536 (defun org-copy-special ()
20537 "Copy region in table or copy current subtree.
20538 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20539 See the individual commands for more information."
20540 (interactive)
20541 (call-interactively
20542 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20544 (defun org-cut-special ()
20545 "Cut region in table or cut current subtree.
20546 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20547 See the individual commands for more information."
20548 (interactive)
20549 (call-interactively
20550 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20552 (defun org-paste-special (arg)
20553 "Paste rectangular region into table, or past subtree relative to level.
20554 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20555 See the individual commands for more information."
20556 (interactive "P")
20557 (if (org-at-table-p)
20558 (org-table-paste-rectangle)
20559 (org-paste-subtree arg)))
20561 (defsubst org-in-fixed-width-region-p ()
20562 "Is point in a fixed-width region?"
20563 (save-match-data
20564 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20566 (defun org-edit-special (&optional arg)
20567 "Call a special editor for the element at point.
20568 When at a table, call the formula editor with `org-table-edit-formulas'.
20569 When in a source code block, call `org-edit-src-code'.
20570 When in a fixed-width region, call `org-edit-fixed-width-region'.
20571 When at an #+INCLUDE keyword, visit the included file.
20572 On a link, call `ffap' to visit the link at point.
20573 Otherwise, return a user error."
20574 (interactive "P")
20575 (let ((element (org-element-at-point)))
20576 (assert (not buffer-read-only) nil
20577 "Buffer is read-only: %s" (buffer-name))
20578 (case (org-element-type element)
20579 (src-block
20580 (if (not arg) (org-edit-src-code)
20581 (let* ((info (org-babel-get-src-block-info))
20582 (lang (nth 0 info))
20583 (params (nth 2 info))
20584 (session (cdr (assq :session params))))
20585 (if (not session) (org-edit-src-code)
20586 ;; At a src-block with a session and function called with
20587 ;; an ARG: switch to the buffer related to the inferior
20588 ;; process.
20589 (switch-to-buffer
20590 (funcall (intern (concat "org-babel-prep-session:" lang))
20591 session params))))))
20592 (keyword
20593 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
20594 (org-open-link-from-string
20595 (format "[[%s]]"
20596 (expand-file-name
20597 (let ((value (org-element-property :value element)))
20598 (cond ((not (org-string-nw-p value))
20599 (user-error "No file to edit"))
20600 ((string-match "\\`\"\\(.*?\\)\"" value)
20601 (match-string 1 value))
20602 ((string-match "\\`[^ \t\"]\\S-*" value)
20603 (match-string 0 value))
20604 (t (user-error "No valid file specified")))))))
20605 (user-error "No special environment to edit here")))
20606 (table
20607 (if (eq (org-element-property :type element) 'table.el)
20608 (org-edit-src-code)
20609 (call-interactively 'org-table-edit-formulas)))
20610 ;; Only Org tables contain `table-row' type elements.
20611 (table-row (call-interactively 'org-table-edit-formulas))
20612 ((example-block export-block) (org-edit-src-code))
20613 (fixed-width (org-edit-fixed-width-region))
20614 (otherwise
20615 ;; No notable element at point. Though, we may be at a link,
20616 ;; which is an object. Thus, scan deeper.
20617 (if (eq (org-element-type (org-element-context element)) 'link)
20618 (call-interactively 'ffap)
20619 (user-error "No special environment to edit here"))))))
20621 (defvar org-table-coordinate-overlays) ; defined in org-table.el
20622 (defun org-ctrl-c-ctrl-c (&optional arg)
20623 "Set tags in headline, or update according to changed information at point.
20625 This command does many different things, depending on context:
20627 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
20628 this is what we do.
20630 - If the cursor is on a statistics cookie, update it.
20632 - If the cursor is in a headline, prompt for tags and insert them
20633 into the current line, aligned to `org-tags-column'. When called
20634 with prefix arg, realign all tags in the current buffer.
20636 - If the cursor is in one of the special #+KEYWORD lines, this
20637 triggers scanning the buffer for these lines and updating the
20638 information.
20640 - If the cursor is inside a table, realign the table. This command
20641 works even if the automatic table editor has been turned off.
20643 - If the cursor is on a #+TBLFM line, re-apply the formulas to
20644 the entire table.
20646 - If the cursor is at a footnote reference or definition, jump to
20647 the corresponding definition or references, respectively.
20649 - If the cursor is a the beginning of a dynamic block, update it.
20651 - If the current buffer is a capture buffer, close note and file it.
20653 - If the cursor is on a <<<target>>>, update radio targets and
20654 corresponding links in this buffer.
20656 - If the cursor is on a numbered item in a plain list, renumber the
20657 ordered list.
20659 - If the cursor is on a checkbox, toggle it.
20661 - If the cursor is on a code block, evaluate it. The variable
20662 `org-confirm-babel-evaluate' can be used to control prompting
20663 before code block evaluation, by default every code block
20664 evaluation requires confirmation. Code block evaluation can be
20665 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
20666 (interactive "P")
20667 (cond
20668 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
20669 org-occur-highlights)
20670 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
20671 (org-remove-occur-highlights)
20672 (message "Temporary highlights/overlays removed from current buffer"))
20673 ((and (local-variable-p 'org-finish-function (current-buffer))
20674 (fboundp org-finish-function))
20675 (funcall org-finish-function))
20676 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
20678 (let* ((context (org-element-context)) (type (org-element-type context)))
20679 ;; Test if point is within a blank line.
20680 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
20681 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20682 (user-error "C-c C-c can do nothing useful at this location"))
20683 (case type
20684 ;; When at a link, act according to the parent instead.
20685 (link (setq context (org-element-property :parent context))
20686 (setq type (org-element-type context)))
20687 ;; Unsupported object types: refer to the first supported
20688 ;; element or object containing it.
20689 ((bold code entity export-snippet inline-babel-call inline-src-block
20690 italic latex-fragment line-break macro strike-through subscript
20691 superscript underline verbatim)
20692 (while (and (setq context (org-element-property :parent context))
20693 (not (memq (setq type (org-element-type context))
20694 '(radio-target paragraph verse-block
20695 table-cell)))))))
20696 ;; For convenience: at the first line of a paragraph on the
20697 ;; same line as an item, apply function on that item instead.
20698 (when (eq type 'paragraph)
20699 (let ((parent (org-element-property :parent context)))
20700 (when (and (eq (org-element-type parent) 'item)
20701 (= (point-at-bol) (org-element-property :begin parent)))
20702 (setq context parent type 'item))))
20703 ;; Act according to type of element or object at point.
20704 (case type
20705 (clock (org-clock-update-time-maybe))
20706 (dynamic-block
20707 (save-excursion
20708 (goto-char (org-element-property :post-affiliated context))
20709 (org-update-dblock)))
20710 (footnote-definition
20711 (goto-char (org-element-property :post-affiliated context))
20712 (call-interactively 'org-footnote-action))
20713 (footnote-reference (call-interactively 'org-footnote-action))
20714 ((headline inlinetask)
20715 (save-excursion (goto-char (org-element-property :begin context))
20716 (call-interactively 'org-set-tags)))
20717 (item
20718 ;; At an item: a double C-u set checkbox to "[-]"
20719 ;; unconditionally, whereas a single one will toggle its
20720 ;; presence. Without an universal argument, if the item
20721 ;; has a checkbox, toggle it. Otherwise repair the list.
20722 (let* ((box (org-element-property :checkbox context))
20723 (struct (org-element-property :structure context))
20724 (old-struct (copy-tree struct))
20725 (parents (org-list-parents-alist struct))
20726 (prevs (org-list-prevs-alist struct))
20727 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
20728 (org-list-set-checkbox
20729 (org-element-property :begin context) struct
20730 (cond ((equal arg '(16)) "[-]")
20731 ((and (not box) (equal arg '(4))) "[ ]")
20732 ((or (not box) (equal arg '(4))) nil)
20733 ((eq box 'on) "[ ]")
20734 (t "[X]")))
20735 ;; Mimic `org-list-write-struct' but with grabbing
20736 ;; a return value from `org-list-struct-fix-box'.
20737 (org-list-struct-fix-ind struct parents 2)
20738 (org-list-struct-fix-item-end struct)
20739 (org-list-struct-fix-bul struct prevs)
20740 (org-list-struct-fix-ind struct parents)
20741 (let ((block-item
20742 (org-list-struct-fix-box struct parents prevs orderedp)))
20743 (if (and box (equal struct old-struct))
20744 (if (equal arg '(16))
20745 (message "Checkboxes already reset")
20746 (user-error "Cannot toggle this checkbox: %s"
20747 (if (eq box 'on)
20748 "all subitems checked"
20749 "unchecked subitems")))
20750 (org-list-struct-apply-struct struct old-struct)
20751 (org-update-checkbox-count-maybe))
20752 (when block-item
20753 (message "Checkboxes were removed due to empty box at line %d"
20754 (org-current-line block-item))))))
20755 (keyword
20756 (let ((org-inhibit-startup-visibility-stuff t)
20757 (org-startup-align-all-tables nil))
20758 (when (boundp 'org-table-coordinate-overlays)
20759 (mapc 'delete-overlay org-table-coordinate-overlays)
20760 (setq org-table-coordinate-overlays nil))
20761 (org-save-outline-visibility 'use-markers (org-mode-restart)))
20762 (message "Local setup has been refreshed"))
20763 (plain-list
20764 ;; At a plain list, with a double C-u argument, set
20765 ;; checkboxes of each item to "[-]", whereas a single one
20766 ;; will toggle their presence according to the state of the
20767 ;; first item in the list. Without an argument, repair the
20768 ;; list.
20769 (let* ((begin (org-element-property :contents-begin context))
20770 (beginm (move-marker (make-marker) begin))
20771 (struct (org-element-property :structure context))
20772 (old-struct (copy-tree struct))
20773 (first-box (save-excursion
20774 (goto-char begin)
20775 (looking-at org-list-full-item-re)
20776 (match-string-no-properties 3)))
20777 (new-box (cond ((equal arg '(16)) "[-]")
20778 ((equal arg '(4)) (unless first-box "[ ]"))
20779 ((equal first-box "[X]") "[ ]")
20780 (t "[X]"))))
20781 (cond
20782 (arg
20783 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
20784 (org-list-get-all-items
20785 begin struct (org-list-prevs-alist struct))))
20786 ((and first-box (eq (point) begin))
20787 ;; For convenience, when point is at bol on the first
20788 ;; item of the list and no argument is provided, simply
20789 ;; toggle checkbox of that item, if any.
20790 (org-list-set-checkbox begin struct new-box)))
20791 (org-list-write-struct
20792 struct (org-list-parents-alist struct) old-struct)
20793 (org-update-checkbox-count-maybe)
20794 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
20795 ((property-drawer node-property)
20796 (call-interactively 'org-property-action))
20797 ((radio-target target)
20798 (call-interactively 'org-update-radio-target-regexp))
20799 (statistics-cookie
20800 (call-interactively 'org-update-statistics-cookies))
20801 ((table table-cell table-row)
20802 ;; At a table, recalculate every field and align it. Also
20803 ;; send the table if necessary. If the table has
20804 ;; a `table.el' type, just give up. At a table row or
20805 ;; cell, maybe recalculate line but always align table.
20806 (if (eq (org-element-property :type context) 'table.el)
20807 (message "Use C-c ' to edit table.el tables")
20808 (let ((org-enable-table-editor t))
20809 (if (or (eq type 'table)
20810 ;; Check if point is at a TBLFM line.
20811 (and (eq type 'table-row)
20812 (= (point) (org-element-property :end context))))
20813 (save-excursion
20814 (if (org-at-TBLFM-p)
20815 (progn (require 'org-table)
20816 (org-table-calc-current-TBLFM))
20817 (goto-char (org-element-property :contents-begin context))
20818 (org-call-with-arg 'org-table-recalculate (or arg t))
20819 (orgtbl-send-table 'maybe)))
20820 (org-table-maybe-eval-formula)
20821 (cond (arg (call-interactively 'org-table-recalculate))
20822 ((org-table-maybe-recalculate-line))
20823 (t (org-table-align)))))))
20824 (timestamp (org-timestamp-change 0 'day))
20825 (otherwise
20826 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
20827 (user-error
20828 "C-c C-c can do nothing useful at this location")))))))))
20830 (defun org-mode-restart ()
20831 (interactive)
20832 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
20833 (funcall major-mode)
20834 (hack-local-variables)
20835 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
20836 (org-indent-mode -1)))
20837 (message "%s restarted" major-mode))
20839 (defun org-kill-note-or-show-branches ()
20840 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
20841 (interactive)
20842 (if (not org-finish-function)
20843 (progn
20844 (hide-subtree)
20845 (call-interactively 'show-branches))
20846 (let ((org-note-abort t))
20847 (funcall org-finish-function))))
20849 (defun org-open-line (n)
20850 "Insert a new row in tables, call `open-line' elsewhere.
20851 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
20852 (interactive "*p")
20853 (cond
20854 ((not org-special-ctrl-o)
20855 (open-line n))
20856 ((org-at-table-p)
20857 (org-table-insert-row))
20859 (open-line n))))
20861 (defun org-return (&optional indent)
20862 "Goto next table row or insert a newline.
20863 Calls `org-table-next-row' or `newline', depending on context.
20864 See the individual commands for more information."
20865 (interactive)
20866 (let (org-ts-what)
20867 (cond
20868 ((or (bobp) (org-in-src-block-p))
20869 (if indent (newline-and-indent) (newline)))
20870 ((org-at-table-p)
20871 (org-table-justify-field-maybe)
20872 (call-interactively 'org-table-next-row))
20873 ;; when `newline-and-indent' is called within a list, make sure
20874 ;; text moved stays inside the item.
20875 ((and (org-in-item-p) indent)
20876 (if (and (org-at-item-p) (>= (point) (match-end 0)))
20877 (progn
20878 (save-match-data (newline))
20879 (org-indent-line-to (length (match-string 0))))
20880 (let ((ind (org-get-indentation)))
20881 (newline)
20882 (if (org-looking-back org-list-end-re)
20883 (org-indent-line)
20884 (org-indent-line-to ind)))))
20885 ((and org-return-follows-link
20886 (org-at-timestamp-p t)
20887 (not (eq org-ts-what 'after)))
20888 (org-follow-timestamp-link))
20889 ((and org-return-follows-link
20890 (let ((tprop (get-text-property (point) 'face)))
20891 (or (eq tprop 'org-link)
20892 (and (listp tprop) (memq 'org-link tprop)))))
20893 (call-interactively 'org-open-at-point))
20894 ((and (org-at-heading-p)
20895 (looking-at
20896 (org-re "\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")))
20897 (org-show-entry)
20898 (end-of-line 1)
20899 (newline))
20900 (t (if indent (newline-and-indent) (newline))))))
20902 (defun org-return-indent ()
20903 "Goto next table row or insert a newline and indent.
20904 Calls `org-table-next-row' or `newline-and-indent', depending on
20905 context. See the individual commands for more information."
20906 (interactive)
20907 (org-return t))
20909 (defun org-ctrl-c-star ()
20910 "Compute table, or change heading status of lines.
20911 Calls `org-table-recalculate' or `org-toggle-heading',
20912 depending on context."
20913 (interactive)
20914 (cond
20915 ((org-at-table-p)
20916 (call-interactively 'org-table-recalculate))
20918 ;; Convert all lines in region to list items
20919 (call-interactively 'org-toggle-heading))))
20921 (defun org-ctrl-c-minus ()
20922 "Insert separator line in table or modify bullet status of line.
20923 Also turns a plain line or a region of lines into list items.
20924 Calls `org-table-insert-hline', `org-toggle-item', or
20925 `org-cycle-list-bullet', depending on context."
20926 (interactive)
20927 (cond
20928 ((org-at-table-p)
20929 (call-interactively 'org-table-insert-hline))
20930 ((org-region-active-p)
20931 (call-interactively 'org-toggle-item))
20932 ((org-in-item-p)
20933 (call-interactively 'org-cycle-list-bullet))
20935 (call-interactively 'org-toggle-item))))
20937 (defun org-toggle-item (arg)
20938 "Convert headings or normal lines to items, items to normal lines.
20939 If there is no active region, only the current line is considered.
20941 If the first non blank line in the region is a headline, convert
20942 all headlines to items, shifting text accordingly.
20944 If it is an item, convert all items to normal lines.
20946 If it is normal text, change region into a list of items.
20947 With a prefix argument ARG, change the region in a single item."
20948 (interactive "P")
20949 (let ((shift-text
20950 (function
20951 ;; Shift text in current section to IND, from point to END.
20952 ;; The function leaves point to END line.
20953 (lambda (ind end)
20954 (let ((min-i 1000) (end (copy-marker end)))
20955 ;; First determine the minimum indentation (MIN-I) of
20956 ;; the text.
20957 (save-excursion
20958 (catch 'exit
20959 (while (< (point) end)
20960 (let ((i (org-get-indentation)))
20961 (cond
20962 ;; Skip blank lines and inline tasks.
20963 ((looking-at "^[ \t]*$"))
20964 ((looking-at org-outline-regexp-bol))
20965 ;; We can't find less than 0 indentation.
20966 ((zerop i) (throw 'exit (setq min-i 0)))
20967 ((< i min-i) (setq min-i i))))
20968 (forward-line))))
20969 ;; Then indent each line so that a line indented to
20970 ;; MIN-I becomes indented to IND. Ignore blank lines
20971 ;; and inline tasks in the process.
20972 (let ((delta (- ind min-i)))
20973 (while (< (point) end)
20974 (unless (or (looking-at "^[ \t]*$")
20975 (looking-at org-outline-regexp-bol))
20976 (org-indent-line-to (+ (org-get-indentation) delta)))
20977 (forward-line)))))))
20978 (skip-blanks
20979 (function
20980 ;; Return beginning of first non-blank line, starting from
20981 ;; line at POS.
20982 (lambda (pos)
20983 (save-excursion
20984 (goto-char pos)
20985 (skip-chars-forward " \r\t\n")
20986 (point-at-bol)))))
20987 beg end)
20988 ;; Determine boundaries of changes.
20989 (if (org-region-active-p)
20990 (setq beg (funcall skip-blanks (region-beginning))
20991 end (copy-marker (region-end)))
20992 (setq beg (funcall skip-blanks (point-at-bol))
20993 end (copy-marker (point-at-eol))))
20994 ;; Depending on the starting line, choose an action on the text
20995 ;; between BEG and END.
20996 (org-with-limited-levels
20997 (save-excursion
20998 (goto-char beg)
20999 (cond
21000 ;; Case 1. Start at an item: de-itemize. Note that it only
21001 ;; happens when a region is active: `org-ctrl-c-minus'
21002 ;; would call `org-cycle-list-bullet' otherwise.
21003 ((org-at-item-p)
21004 (while (< (point) end)
21005 (when (org-at-item-p)
21006 (skip-chars-forward " \t")
21007 (delete-region (point) (match-end 0)))
21008 (forward-line)))
21009 ;; Case 2. Start at an heading: convert to items.
21010 ((org-at-heading-p)
21011 (let* ((bul (org-list-bullet-string "-"))
21012 (bul-len (length bul))
21013 (done (org-entry-is-done-p))
21014 (todo (org-entry-is-todo-p))
21015 ;; Indentation of the first heading. It should be
21016 ;; relative to the indentation of its parent, if any.
21017 (start-ind (save-excursion
21018 (cond
21019 ((not org-adapt-indentation) 0)
21020 ((not (outline-previous-heading)) 0)
21021 (t (length (match-string 0))))))
21022 ;; Level of first heading. Further headings will be
21023 ;; compared to it to determine hierarchy in the list.
21024 (ref-level (org-reduced-level (org-outline-level))))
21025 (when (or done todo) (org-todo ""))
21026 (while (< (point) end)
21027 (let* ((level (org-reduced-level (org-outline-level)))
21028 (delta (max 0 (- level ref-level))))
21029 ;; If current headline is less indented than the first
21030 ;; one, set it as reference, in order to preserve
21031 ;; subtrees.
21032 (when (< level ref-level) (setq ref-level level))
21033 (replace-match bul t t)
21034 (org-indent-line-to (+ start-ind (* delta bul-len)))
21035 (when (or done todo)
21036 (let* ((struct (org-list-struct))
21037 (old (copy-tree struct)))
21038 (org-list-set-checkbox (line-beginning-position)
21039 struct
21040 (if done "[X]" "[ ]"))
21041 (org-list-write-struct struct
21042 (org-list-parents-alist struct)
21043 old)))
21044 ;; Ensure all text down to END (or SECTION-END) belongs
21045 ;; to the newly created item.
21046 (let ((section-end (save-excursion
21047 (or (outline-next-heading) (point)))))
21048 (forward-line)
21049 (funcall shift-text
21050 (+ start-ind (* (1+ delta) bul-len))
21051 (min end section-end)))))))
21052 ;; Case 3. Normal line with ARG: make the first line of region
21053 ;; an item, and shift indentation of others lines to
21054 ;; set them as item's body.
21055 (arg (let* ((bul (org-list-bullet-string "-"))
21056 (bul-len (length bul))
21057 (ref-ind (org-get-indentation)))
21058 (skip-chars-forward " \t")
21059 (insert bul)
21060 (forward-line)
21061 (while (< (point) end)
21062 ;; Ensure that lines less indented than first one
21063 ;; still get included in item body.
21064 (funcall shift-text
21065 (+ ref-ind bul-len)
21066 (min end (save-excursion (or (outline-next-heading)
21067 (point)))))
21068 (forward-line))))
21069 ;; Case 4. Normal line without ARG: turn each non-item line
21070 ;; into an item.
21072 (while (< (point) end)
21073 (unless (or (org-at-heading-p) (org-at-item-p))
21074 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21075 (replace-match
21076 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21077 (forward-line))))))))
21079 (defun org-toggle-heading (&optional nstars)
21080 "Convert headings to normal text, or items or text to headings.
21081 If there is no active region, only convert the current line.
21083 With a \\[universal-argument] prefix, convert the whole list at
21084 point into heading.
21086 In a region:
21088 - If the first non blank line is a headline, remove the stars
21089 from all headlines in the region.
21091 - If it is a normal line, turn each and every normal line (i.e.,
21092 not an heading or an item) in the region into headings. If you
21093 want to convert only the first line of this region, use one
21094 universal prefix argument.
21096 - If it is a plain list item, turn all plain list items into headings.
21098 When converting a line into a heading, the number of stars is chosen
21099 such that the lines become children of the current entry. However,
21100 when a numeric prefix argument is given, its value determines the
21101 number of stars to add."
21102 (interactive "P")
21103 (let ((skip-blanks
21104 (function
21105 ;; Return beginning of first non-blank line, starting from
21106 ;; line at POS.
21107 (lambda (pos)
21108 (save-excursion
21109 (goto-char pos)
21110 (while (org-at-comment-p) (forward-line))
21111 (skip-chars-forward " \r\t\n")
21112 (point-at-bol)))))
21113 beg end toggled)
21114 ;; Determine boundaries of changes. If a universal prefix has
21115 ;; been given, put the list in a region. If region ends at a bol,
21116 ;; do not consider the last line to be in the region.
21118 (when (and current-prefix-arg (org-at-item-p))
21119 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21120 (org-mark-element))
21122 (if (org-region-active-p)
21123 (setq beg (funcall skip-blanks (region-beginning))
21124 end (copy-marker (save-excursion
21125 (goto-char (region-end))
21126 (if (bolp) (point) (point-at-eol)))))
21127 (setq beg (funcall skip-blanks (point-at-bol))
21128 end (copy-marker (point-at-eol))))
21129 ;; Ensure inline tasks don't count as headings.
21130 (org-with-limited-levels
21131 (save-excursion
21132 (goto-char beg)
21133 (cond
21134 ;; Case 1. Started at an heading: de-star headings.
21135 ((org-at-heading-p)
21136 (while (< (point) end)
21137 (when (org-at-heading-p t)
21138 (looking-at org-outline-regexp) (replace-match "")
21139 (setq toggled t))
21140 (forward-line)))
21141 ;; Case 2. Started at an item: change items into headlines.
21142 ;; One star will be added by `org-list-to-subtree'.
21143 ((org-at-item-p)
21144 (let* ((stars (make-string
21145 ;; subtract the star that will be added again by
21146 ;; `org-list-to-subtree'
21147 (if (numberp nstars) (1- nstars)
21148 (or (org-current-level) 0))
21149 ?*))
21150 (add-stars
21151 (cond (nstars "") ; stars from prefix only
21152 ((equal stars "") "") ; before first heading
21153 (org-odd-levels-only "*") ; inside heading, odd
21154 (t "")))) ; inside heading, oddeven
21155 (while (< (point) end)
21156 (when (org-at-item-p)
21157 ;; Pay attention to cases when region ends before list.
21158 (let* ((struct (org-list-struct))
21159 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21160 (save-restriction
21161 (narrow-to-region (point) list-end)
21162 (insert
21163 (org-list-to-subtree
21164 (org-list-parse-list t)
21165 '(:istart (concat stars add-stars (funcall get-stars depth))
21166 :icount (concat stars add-stars (funcall get-stars depth)))))))
21167 (setq toggled t))
21168 (forward-line))))
21169 ;; Case 3. Started at normal text: make every line an heading,
21170 ;; skipping headlines and items.
21171 (t (let* ((stars
21172 (make-string
21173 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21174 (add-stars
21175 (cond (nstars "") ; stars from prefix only
21176 ((equal stars "") "*") ; before first heading
21177 (org-odd-levels-only "**") ; inside heading, odd
21178 (t "*"))) ; inside heading, oddeven
21179 (rpl (concat stars add-stars " "))
21180 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21181 (while (< (point) (if (equal nstars '(4)) lend end))
21182 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21183 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21184 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21185 (forward-line)))))))
21186 (unless toggled (message "Cannot toggle heading from here"))))
21188 (defun org-meta-return (&optional arg)
21189 "Insert a new heading or wrap a region in a table.
21190 Calls `org-insert-heading' or `org-table-wrap-region', depending
21191 on context. See the individual commands for more information."
21192 (interactive "P")
21193 (org-check-before-invisible-edit 'insert)
21194 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21195 (let* ((element (org-element-at-point))
21196 (type (org-element-type element)))
21197 (when (eq type 'table-row)
21198 (setq element (org-element-property :parent element))
21199 (setq type 'table))
21200 (if (and (eq type 'table)
21201 (eq (org-element-property :type element) 'org)
21202 (>= (point) (org-element-property :contents-begin element))
21203 (< (point) (org-element-property :contents-end element)))
21204 (call-interactively 'org-table-wrap-region)
21205 (call-interactively 'org-insert-heading)))))
21207 ;;; Menu entries
21209 (defsubst org-in-subtree-not-table-p ()
21210 "Are we in a subtree and not in a table?"
21211 (and (not (org-before-first-heading-p))
21212 (not (org-at-table-p))))
21214 ;; Define the Org-mode menus
21215 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21216 '("Tbl"
21217 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21218 ["Next Field" org-cycle (org-at-table-p)]
21219 ["Previous Field" org-shifttab (org-at-table-p)]
21220 ["Next Row" org-return (org-at-table-p)]
21221 "--"
21222 ["Blank Field" org-table-blank-field (org-at-table-p)]
21223 ["Edit Field" org-table-edit-field (org-at-table-p)]
21224 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21225 "--"
21226 ("Column"
21227 ["Move Column Left" org-metaleft (org-at-table-p)]
21228 ["Move Column Right" org-metaright (org-at-table-p)]
21229 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21230 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21231 ("Row"
21232 ["Move Row Up" org-metaup (org-at-table-p)]
21233 ["Move Row Down" org-metadown (org-at-table-p)]
21234 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21235 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21236 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21237 "--"
21238 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21239 ("Rectangle"
21240 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21241 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21242 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21243 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21244 "--"
21245 ("Calculate"
21246 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21247 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21248 ["Edit Formulas" org-edit-special (org-at-table-p)]
21249 "--"
21250 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21251 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21252 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21253 "--"
21254 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21255 "--"
21256 ["Sum Column/Rectangle" org-table-sum
21257 (or (org-at-table-p) (org-region-active-p))]
21258 ["Which Column?" org-table-current-column (org-at-table-p)])
21259 ["Debug Formulas"
21260 org-table-toggle-formula-debugger
21261 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21262 ["Show Col/Row Numbers"
21263 org-table-toggle-coordinate-overlays
21264 :style toggle
21265 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21266 "--"
21267 ["Create" org-table-create (and (not (org-at-table-p))
21268 org-enable-table-editor)]
21269 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21270 ["Import from File" org-table-import (not (org-at-table-p))]
21271 ["Export to File" org-table-export (org-at-table-p)]
21272 "--"
21273 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21274 "--"
21275 ("Plot"
21276 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21277 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21279 (easy-menu-define org-org-menu org-mode-map "Org menu"
21280 '("Org"
21281 ("Show/Hide"
21282 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21283 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21284 ["Sparse Tree..." org-sparse-tree t]
21285 ["Reveal Context" org-reveal t]
21286 ["Show All" show-all t]
21287 "--"
21288 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21289 "--"
21290 ["New Heading" org-insert-heading t]
21291 ("Navigate Headings"
21292 ["Up" outline-up-heading t]
21293 ["Next" outline-next-visible-heading t]
21294 ["Previous" outline-previous-visible-heading t]
21295 ["Next Same Level" outline-forward-same-level t]
21296 ["Previous Same Level" outline-backward-same-level t]
21297 "--"
21298 ["Jump" org-goto t])
21299 ("Edit Structure"
21300 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21301 "--"
21302 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21303 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21304 "--"
21305 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21306 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21307 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21308 "--"
21309 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21310 "--"
21311 ["Copy visible text" org-copy-visible t]
21312 "--"
21313 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21314 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21315 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21316 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21317 "--"
21318 ["Sort Region/Children" org-sort t]
21319 "--"
21320 ["Convert to odd levels" org-convert-to-odd-levels t]
21321 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21322 ("Editing"
21323 ["Emphasis..." org-emphasize t]
21324 ["Edit Source Example" org-edit-special t]
21325 "--"
21326 ["Footnote new/jump" org-footnote-action t]
21327 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21328 ("Archive"
21329 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21330 "--"
21331 ["Move Subtree to Archive file" org-advertized-archive-subtree (org-in-subtree-not-table-p)]
21332 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21333 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21335 "--"
21336 ("Hyperlinks"
21337 ["Store Link (Global)" org-store-link t]
21338 ["Find existing link to here" org-occur-link-in-agenda-files t]
21339 ["Insert Link" org-insert-link t]
21340 ["Follow Link" org-open-at-point t]
21341 "--"
21342 ["Next link" org-next-link t]
21343 ["Previous link" org-previous-link t]
21344 "--"
21345 ["Descriptive Links"
21346 org-toggle-link-display
21347 :style radio
21348 :selected org-descriptive-links
21350 ["Literal Links"
21351 org-toggle-link-display
21352 :style radio
21353 :selected (not org-descriptive-links)])
21354 "--"
21355 ("TODO Lists"
21356 ["TODO/DONE/-" org-todo t]
21357 ("Select keyword"
21358 ["Next keyword" org-shiftright (org-at-heading-p)]
21359 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21360 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21361 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21362 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21363 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21364 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21365 "--"
21366 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21367 :selected org-enforce-todo-dependencies :style toggle :active t]
21368 "Settings for tree at point"
21369 ["Do Children sequentially" org-toggle-ordered-property :style radio
21370 :selected (org-entry-get nil "ORDERED")
21371 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21372 ["Do Children parallel" org-toggle-ordered-property :style radio
21373 :selected (not (org-entry-get nil "ORDERED"))
21374 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21375 "--"
21376 ["Set Priority" org-priority t]
21377 ["Priority Up" org-shiftup t]
21378 ["Priority Down" org-shiftdown t]
21379 "--"
21380 ["Get news from all feeds" org-feed-update-all t]
21381 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21382 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21383 ("TAGS and Properties"
21384 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21385 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21386 "--"
21387 ["Set property" org-set-property (not (org-before-first-heading-p))]
21388 ["Column view of properties" org-columns t]
21389 ["Insert Column View DBlock" org-insert-columns-dblock t])
21390 ("Dates and Scheduling"
21391 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21392 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21393 ("Change Date"
21394 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21395 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21396 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21397 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21398 ["Compute Time Range" org-evaluate-time-range t]
21399 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21400 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21401 "--"
21402 ["Custom time format" org-toggle-time-stamp-overlays
21403 :style radio :selected org-display-custom-times]
21404 "--"
21405 ["Goto Calendar" org-goto-calendar t]
21406 ["Date from Calendar" org-date-from-calendar t]
21407 "--"
21408 ["Start/Restart Timer" org-timer-start t]
21409 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21410 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21411 ["Insert Timer String" org-timer t]
21412 ["Insert Timer Item" org-timer-item t])
21413 ("Logging work"
21414 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21415 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21416 ["Clock out" org-clock-out t]
21417 ["Clock cancel" org-clock-cancel t]
21418 "--"
21419 ["Mark as default task" org-clock-mark-default-task t]
21420 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21421 ["Goto running clock" org-clock-goto t]
21422 "--"
21423 ["Display times" org-clock-display t]
21424 ["Create clock table" org-clock-report t]
21425 "--"
21426 ["Record DONE time"
21427 (progn (setq org-log-done (not org-log-done))
21428 (message "Switching to %s will %s record a timestamp"
21429 (car org-done-keywords)
21430 (if org-log-done "automatically" "not")))
21431 :style toggle :selected org-log-done])
21432 "--"
21433 ["Agenda Command..." org-agenda t]
21434 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21435 ("File List for Agenda")
21436 ("Special views current file"
21437 ["TODO Tree" org-show-todo-tree t]
21438 ["Check Deadlines" org-check-deadlines t]
21439 ["Timeline" org-timeline t]
21440 ["Tags/Property tree" org-match-sparse-tree t])
21441 "--"
21442 ["Export/Publish..." org-export-dispatch t]
21443 ("LaTeX"
21444 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21445 :selected org-cdlatex-mode]
21446 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21447 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21448 ["Modify math symbol" org-cdlatex-math-modify
21449 (org-inside-LaTeX-fragment-p)]
21450 ["Insert citation" org-reftex-citation t]
21451 "--"
21452 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21453 "--"
21454 ("MobileOrg"
21455 ["Push Files and Views" org-mobile-push t]
21456 ["Get Captured and Flagged" org-mobile-pull t]
21457 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21458 "--"
21459 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21460 "--"
21461 ("Documentation"
21462 ["Show Version" org-version t]
21463 ["Info Documentation" org-info t])
21464 ("Customize"
21465 ["Browse Org Group" org-customize t]
21466 "--"
21467 ["Expand This Menu" org-create-customize-menu
21468 (fboundp 'customize-menu-create)])
21469 ["Send bug report" org-submit-bug-report t]
21470 "--"
21471 ("Refresh/Reload"
21472 ["Refresh setup current buffer" org-mode-restart t]
21473 ["Reload Org (after update)" org-reload t]
21474 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21477 (defun org-info (&optional node)
21478 "Read documentation for Org-mode in the info system.
21479 With optional NODE, go directly to that node."
21480 (interactive)
21481 (info (format "(org)%s" (or node ""))))
21483 ;;;###autoload
21484 (defun org-submit-bug-report ()
21485 "Submit a bug report on Org-mode via mail.
21487 Don't hesitate to report any problems or inaccurate documentation.
21489 If you don't have setup sending mail from (X)Emacs, please copy the
21490 output buffer into your mail program, as it gives us important
21491 information about your Org-mode version and configuration."
21492 (interactive)
21493 (require 'reporter)
21494 (org-load-modules-maybe)
21495 (org-require-autoloaded-modules)
21496 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21497 (reporter-submit-bug-report
21498 "emacs-orgmode@gnu.org"
21499 (org-version nil 'full)
21500 (let (list)
21501 (save-window-excursion
21502 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21503 (delete-other-windows)
21504 (erase-buffer)
21505 (insert "You are about to submit a bug report to the Org-mode mailing list.
21507 We would like to add your full Org-mode and Outline configuration to the
21508 bug report. This greatly simplifies the work of the maintainer and
21509 other experts on the mailing list.
21511 HOWEVER, some variables you have customized may contain private
21512 information. The names of customers, colleagues, or friends, might
21513 appear in the form of file names, tags, todo states, or search strings.
21514 If you answer yes to the prompt, you might want to check and remove
21515 such private information before sending the email.")
21516 (add-text-properties (point-min) (point-max) '(face org-warning))
21517 (when (yes-or-no-p "Include your Org-mode configuration ")
21518 (mapatoms
21519 (lambda (v)
21520 (and (boundp v)
21521 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21522 (or (and (symbol-value v)
21523 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21524 (and
21525 (get v 'custom-type) (get v 'standard-value)
21526 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21527 (push v list)))))
21528 (kill-buffer (get-buffer "*Warn about privacy*"))
21529 list))
21530 nil nil
21531 "Remember to cover the basics, that is, what you expected to happen and
21532 what in fact did happen. You don't know how to make a good report? See
21534 http://orgmode.org/manual/Feedback.html#Feedback
21536 Your bug report will be posted to the Org-mode mailing list.
21537 ------------------------------------------------------------------------")
21538 (save-excursion
21539 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
21540 (replace-match "\\1Bug: \\3 [\\2]")))))
21543 (defun org-install-agenda-files-menu ()
21544 (let ((bl (buffer-list)))
21545 (save-excursion
21546 (while bl
21547 (set-buffer (pop bl))
21548 (if (derived-mode-p 'org-mode) (setq bl nil)))
21549 (when (derived-mode-p 'org-mode)
21550 (easy-menu-change
21551 '("Org") "File List for Agenda"
21552 (append
21553 (list
21554 ["Edit File List" (org-edit-agenda-file-list) t]
21555 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
21556 ["Remove Current File from List" org-remove-file t]
21557 ["Cycle through agenda files" org-cycle-agenda-files t]
21558 ["Occur in all agenda files" org-occur-in-agenda-files t]
21559 "--")
21560 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
21562 ;;;; Documentation
21564 (defun org-require-autoloaded-modules ()
21565 (interactive)
21566 (mapc 'require
21567 '(org-agenda org-archive org-attach org-clock org-colview org-id
21568 org-table org-timer)))
21570 ;;;###autoload
21571 (defun org-reload (&optional uncompiled)
21572 "Reload all org lisp files.
21573 With prefix arg UNCOMPILED, load the uncompiled versions."
21574 (interactive "P")
21575 (require 'loadhist)
21576 (let* ((org-dir (org-find-library-dir "org"))
21577 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
21578 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
21579 (remove-re (mapconcat 'identity
21580 (mapcar (lambda (f) (concat "^" f "$"))
21581 (list (if (featurep 'xemacs)
21582 "org-colview"
21583 "org-colview-xemacs")
21584 "org" "org-loaddefs" "org-version"))
21585 "\\|"))
21586 (feats (delete-dups
21587 (mapcar 'file-name-sans-extension
21588 (mapcar 'file-name-nondirectory
21589 (delq nil
21590 (mapcar 'feature-file
21591 features))))))
21592 (lfeat (append
21593 (sort
21594 (setq feats
21595 (delq nil (mapcar
21596 (lambda (f)
21597 (if (and (string-match feature-re f)
21598 (not (string-match remove-re f)))
21599 f nil))
21600 feats)))
21601 'string-lessp)
21602 (list "org-version" "org")))
21603 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
21604 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
21605 load-uncore load-misses)
21606 (setq load-misses
21607 (delq 't
21608 (mapcar (lambda (f)
21609 (or (org-load-noerror-mustsuffix (concat org-dir f))
21610 (and (string= org-dir contrib-dir)
21611 (org-load-noerror-mustsuffix (concat contrib-dir f)))
21612 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
21613 (add-to-list 'load-uncore f 'append)
21616 lfeat)))
21617 (if load-uncore
21618 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
21619 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
21620 (if load-misses
21621 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
21622 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
21623 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
21625 ;;;###autoload
21626 (defun org-customize ()
21627 "Call the customize function with org as argument."
21628 (interactive)
21629 (org-load-modules-maybe)
21630 (org-require-autoloaded-modules)
21631 (customize-browse 'org))
21633 (defun org-create-customize-menu ()
21634 "Create a full customization menu for Org-mode, insert it into the menu."
21635 (interactive)
21636 (org-load-modules-maybe)
21637 (org-require-autoloaded-modules)
21638 (if (fboundp 'customize-menu-create)
21639 (progn
21640 (easy-menu-change
21641 '("Org") "Customize"
21642 `(["Browse Org group" org-customize t]
21643 "--"
21644 ,(customize-menu-create 'org)
21645 ["Set" Custom-set t]
21646 ["Save" Custom-save t]
21647 ["Reset to Current" Custom-reset-current t]
21648 ["Reset to Saved" Custom-reset-saved t]
21649 ["Reset to Standard Settings" Custom-reset-standard t]))
21650 (message "\"Org\"-menu now contains full customization menu"))
21651 (error "Cannot expand menu (outdated version of cus-edit.el)")))
21653 ;;;; Miscellaneous stuff
21655 ;;; Generally useful functions
21657 (defsubst org-get-at-eol (property n)
21658 "Get text property PROPERTY at the end of line less N characters."
21659 (get-text-property (- (point-at-eol) n) property))
21661 (defun org-find-text-property-in-string (prop s)
21662 "Return the first non-nil value of property PROP in string S."
21663 (or (get-text-property 0 prop s)
21664 (get-text-property (or (next-single-property-change 0 prop s) 0)
21665 prop s)))
21667 (defun org-display-warning (message) ;; Copied from Emacs-Muse
21668 "Display the given MESSAGE as a warning."
21669 (if (fboundp 'display-warning)
21670 (display-warning 'org message
21671 (if (featurep 'xemacs) 'warning :warning))
21672 (let ((buf (get-buffer-create "*Org warnings*")))
21673 (with-current-buffer buf
21674 (goto-char (point-max))
21675 (insert "Warning (Org): " message)
21676 (unless (bolp)
21677 (newline)))
21678 (display-buffer buf)
21679 (sit-for 0))))
21681 (defun org-eval (form)
21682 "Eval FORM and return result."
21683 (condition-case error
21684 (eval form)
21685 (error (format "%%![Error: %s]" error))))
21687 (defun org-in-clocktable-p ()
21688 "Check if the cursor is in a clocktable."
21689 (let ((pos (point)) start)
21690 (save-excursion
21691 (end-of-line 1)
21692 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
21693 (setq start (match-beginning 0))
21694 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
21695 (>= (match-end 0) pos)
21696 start))))
21698 (defun org-in-verbatim-emphasis ()
21699 (save-match-data
21700 (and (org-in-regexp org-emph-re 2)
21701 (>= (point) (match-beginning 3))
21702 (<= (point) (match-end 4))
21703 (member (match-string 3) '("=" "~")))))
21705 (defun org-goto-marker-or-bmk (marker &optional bookmark)
21706 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
21707 (if (and marker (marker-buffer marker)
21708 (buffer-live-p (marker-buffer marker)))
21709 (progn
21710 (org-pop-to-buffer-same-window (marker-buffer marker))
21711 (if (or (> marker (point-max)) (< marker (point-min)))
21712 (widen))
21713 (goto-char marker)
21714 (org-show-context 'org-goto))
21715 (if bookmark
21716 (bookmark-jump bookmark)
21717 (error "Cannot find location"))))
21719 (defun org-quote-csv-field (s)
21720 "Quote field for inclusion in CSV material."
21721 (if (string-match "[\",]" s)
21722 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
21725 (defun org-force-self-insert (N)
21726 "Needed to enforce self-insert under remapping."
21727 (interactive "p")
21728 (self-insert-command N))
21730 (defun org-string-width (s)
21731 "Compute width of string, ignoring invisible characters.
21732 This ignores character with invisibility property `org-link', and also
21733 characters with property `org-cwidth', because these will become invisible
21734 upon the next fontification round."
21735 (let (b l)
21736 (when (or (eq t buffer-invisibility-spec)
21737 (assq 'org-link buffer-invisibility-spec))
21738 (while (setq b (text-property-any 0 (length s)
21739 'invisible 'org-link s))
21740 (setq s (concat (substring s 0 b)
21741 (substring s (or (next-single-property-change
21742 b 'invisible s) (length s)))))))
21743 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
21744 (setq s (concat (substring s 0 b)
21745 (substring s (or (next-single-property-change
21746 b 'org-cwidth s) (length s))))))
21747 (setq l (string-width s) b -1)
21748 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
21749 (setq l (- l (get-text-property b 'org-dwidth-n s))))
21752 (defun org-shorten-string (s maxlength)
21753 "Shorten string S so tht it is no longer than MAXLENGTH characters.
21754 If the string is shorter or has length MAXLENGTH, just return the
21755 original string. If it is longer, the functions finds a space in the
21756 string, breaks this string off at that locations and adds three dots
21757 as ellipsis. Including the ellipsis, the string will not be longer
21758 than MAXLENGTH. If finding a good breaking point in the string does
21759 not work, the string is just chopped off in the middle of a word
21760 if necessary."
21761 (if (<= (length s) maxlength)
21763 (let* ((n (max (- maxlength 4) 1))
21764 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
21765 (if (string-match re s)
21766 (concat (match-string 1 s) "...")
21767 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
21769 (defun org-get-indentation (&optional line)
21770 "Get the indentation of the current line, interpreting tabs.
21771 When LINE is given, assume it represents a line and compute its indentation."
21772 (if line
21773 (if (string-match "^ *" (org-remove-tabs line))
21774 (match-end 0))
21775 (save-excursion
21776 (beginning-of-line 1)
21777 (skip-chars-forward " \t")
21778 (current-column))))
21780 (defun org-get-string-indentation (s)
21781 "What indentation has S due to SPACE and TAB at the beginning of the string?"
21782 (let ((n -1) (i 0) (w tab-width) c)
21783 (catch 'exit
21784 (while (< (setq n (1+ n)) (length s))
21785 (setq c (aref s n))
21786 (cond ((= c ?\ ) (setq i (1+ i)))
21787 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
21788 (t (throw 'exit t)))))
21791 (defun org-remove-tabs (s &optional width)
21792 "Replace tabulators in S with spaces.
21793 Assumes that s is a single line, starting in column 0."
21794 (setq width (or width tab-width))
21795 (while (string-match "\t" s)
21796 (setq s (replace-match
21797 (make-string
21798 (- (* width (/ (+ (match-beginning 0) width) width))
21799 (match-beginning 0)) ?\ )
21800 t t s)))
21803 (defun org-fix-indentation (line ind)
21804 "Fix indentation in LINE.
21805 IND is a cons cell with target and minimum indentation.
21806 If the current indentation in LINE is smaller than the minimum,
21807 leave it alone. If it is larger than ind, set it to the target."
21808 (let* ((l (org-remove-tabs line))
21809 (i (org-get-indentation l))
21810 (i1 (car ind)) (i2 (cdr ind)))
21811 (if (>= i i2) (setq l (substring line i2)))
21812 (if (> i1 0)
21813 (concat (make-string i1 ?\ ) l)
21814 l)))
21816 (defun org-remove-indentation (code &optional n)
21817 "Remove the maximum common indentation from the lines in CODE.
21818 N may optionally be the number of spaces to remove."
21819 (with-temp-buffer
21820 (insert code)
21821 (org-do-remove-indentation n)
21822 (buffer-string)))
21824 (defun org-do-remove-indentation (&optional n)
21825 "Remove the maximum common indentation from the buffer."
21826 (untabify (point-min) (point-max))
21827 (let ((min 10000) re)
21828 (if n
21829 (setq min n)
21830 (goto-char (point-min))
21831 (while (re-search-forward "^ *[^ \n]" nil t)
21832 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
21833 (unless (or (= min 0) (= min 10000))
21834 (setq re (format "^ \\{%d\\}" min))
21835 (goto-char (point-min))
21836 (while (re-search-forward re nil t)
21837 (replace-match "")
21838 (end-of-line 1))
21839 min)))
21841 (defun org-fill-template (template alist)
21842 "Find each %key of ALIST in TEMPLATE and replace it."
21843 (let ((case-fold-search nil)
21844 entry key value)
21845 (setq alist (sort (copy-sequence alist)
21846 (lambda (a b) (< (length (car a)) (length (car b))))))
21847 (while (setq entry (pop alist))
21848 (setq template
21849 (replace-regexp-in-string
21850 (concat "%" (regexp-quote (car entry)))
21851 (or (cdr entry) "") template t t)))
21852 template))
21854 (defun org-base-buffer (buffer)
21855 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
21856 (if (not buffer)
21857 buffer
21858 (or (buffer-base-buffer buffer)
21859 buffer)))
21861 (defun org-wrap (string &optional width lines)
21862 "Wrap string to either a number of lines, or a width in characters.
21863 If WIDTH is non-nil, the string is wrapped to that width, however many lines
21864 that costs. If there is a word longer than WIDTH, the text is actually
21865 wrapped to the length of that word.
21866 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
21867 many lines, whatever width that takes.
21868 The return value is a list of lines, without newlines at the end."
21869 (let* ((words (org-split-string string "[ \t\n]+"))
21870 (maxword (apply 'max (mapcar 'org-string-width words)))
21871 w ll)
21872 (cond (width
21873 (org-do-wrap words (max maxword width)))
21874 (lines
21875 (setq w maxword)
21876 (setq ll (org-do-wrap words maxword))
21877 (if (<= (length ll) lines)
21879 (setq ll words)
21880 (while (> (length ll) lines)
21881 (setq w (1+ w))
21882 (setq ll (org-do-wrap words w)))
21883 ll))
21884 (t (error "Cannot wrap this")))))
21886 (defun org-do-wrap (words width)
21887 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
21888 (let (lines line)
21889 (while words
21890 (setq line (pop words))
21891 (while (and words (< (+ (length line) (length (car words))) width))
21892 (setq line (concat line " " (pop words))))
21893 (setq lines (push line lines)))
21894 (nreverse lines)))
21896 (defun org-split-string (string &optional separators)
21897 "Splits STRING into substrings at SEPARATORS.
21898 No empty strings are returned if there are matches at the beginning
21899 and end of string."
21900 (let ((rexp (or separators "[ \f\t\n\r\v]+"))
21901 (start 0)
21902 notfirst
21903 (list nil))
21904 (while (and (string-match rexp string
21905 (if (and notfirst
21906 (= start (match-beginning 0))
21907 (< start (length string)))
21908 (1+ start) start))
21909 (< (match-beginning 0) (length string)))
21910 (setq notfirst t)
21911 (or (eq (match-beginning 0) 0)
21912 (and (eq (match-beginning 0) (match-end 0))
21913 (eq (match-beginning 0) start))
21914 (setq list
21915 (cons (substring string start (match-beginning 0))
21916 list)))
21917 (setq start (match-end 0)))
21918 (or (eq start (length string))
21919 (setq list
21920 (cons (substring string start)
21921 list)))
21922 (nreverse list)))
21924 (defun org-quote-vert (s)
21925 "Replace \"|\" with \"\\vert\"."
21926 (while (string-match "|" s)
21927 (setq s (replace-match "\\vert" t t s)))
21930 (defun org-uuidgen-p (s)
21931 "Is S an ID created by UUIDGEN?"
21932 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
21934 (defun org-in-src-block-p (&optional inside)
21935 "Whether point is in a code source block.
21936 When INSIDE is non-nil, don't consider we are within a src block
21937 when point is at #+BEGIN_SRC or #+END_SRC."
21938 (let ((case-fold-search t) ov)
21939 (or (and (eq (get-char-property (point) 'src-block) t))
21940 (and (not inside)
21941 (save-match-data
21942 (save-excursion
21943 (beginning-of-line)
21944 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
21946 (defun org-context ()
21947 "Return a list of contexts of the current cursor position.
21948 If several contexts apply, all are returned.
21949 Each context entry is a list with a symbol naming the context, and
21950 two positions indicating start and end of the context. Possible
21951 contexts are:
21953 :headline anywhere in a headline
21954 :headline-stars on the leading stars in a headline
21955 :todo-keyword on a TODO keyword (including DONE) in a headline
21956 :tags on the TAGS in a headline
21957 :priority on the priority cookie in a headline
21958 :item on the first line of a plain list item
21959 :item-bullet on the bullet/number of a plain list item
21960 :checkbox on the checkbox in a plain list item
21961 :table in an org-mode table
21962 :table-special on a special filed in a table
21963 :table-table in a table.el table
21964 :clocktable in a clocktable
21965 :src-block in a source block
21966 :link on a hyperlink
21967 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
21968 :target on a <<target>>
21969 :radio-target on a <<<radio-target>>>
21970 :latex-fragment on a LaTeX fragment
21971 :latex-preview on a LaTeX fragment with overlaid preview image
21973 This function expects the position to be visible because it uses font-lock
21974 faces as a help to recognize the following contexts: :table-special, :link,
21975 and :keyword."
21976 (let* ((f (get-text-property (point) 'face))
21977 (faces (if (listp f) f (list f)))
21978 (case-fold-search t)
21979 (p (point)) clist o)
21980 ;; First the large context
21981 (cond
21982 ((org-at-heading-p t)
21983 (push (list :headline (point-at-bol) (point-at-eol)) clist)
21984 (when (progn
21985 (beginning-of-line 1)
21986 (looking-at org-todo-line-tags-regexp))
21987 (push (org-point-in-group p 1 :headline-stars) clist)
21988 (push (org-point-in-group p 2 :todo-keyword) clist)
21989 (push (org-point-in-group p 4 :tags) clist))
21990 (goto-char p)
21991 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
21992 (if (looking-at "\\[#[A-Z0-9]\\]")
21993 (push (org-point-in-group p 0 :priority) clist)))
21995 ((org-at-item-p)
21996 (push (org-point-in-group p 2 :item-bullet) clist)
21997 (push (list :item (point-at-bol)
21998 (save-excursion (org-end-of-item) (point)))
21999 clist)
22000 (and (org-at-item-checkbox-p)
22001 (push (org-point-in-group p 0 :checkbox) clist)))
22003 ((org-at-table-p)
22004 (push (list :table (org-table-begin) (org-table-end)) clist)
22005 (if (memq 'org-formula faces)
22006 (push (list :table-special
22007 (previous-single-property-change p 'face)
22008 (next-single-property-change p 'face)) clist)))
22009 ((org-at-table-p 'any)
22010 (push (list :table-table) clist)))
22011 (goto-char p)
22013 (let ((case-fold-search t))
22014 ;; New the "medium" contexts: clocktables, source blocks
22015 (cond ((org-in-clocktable-p)
22016 (push (list :clocktable
22017 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22018 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22019 (match-beginning 1))
22020 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22021 (match-end 0))) clist))
22022 ((org-in-src-block-p)
22023 (push (list :src-block
22024 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22025 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22026 (match-beginning 1))
22027 (and (search-forward "#+END_SRC" nil t)
22028 (match-beginning 0))) clist))))
22029 (goto-char p)
22031 ;; Now the small context
22032 (cond
22033 ((org-at-timestamp-p)
22034 (push (org-point-in-group p 0 :timestamp) clist))
22035 ((memq 'org-link faces)
22036 (push (list :link
22037 (previous-single-property-change p 'face)
22038 (next-single-property-change p 'face)) clist))
22039 ((memq 'org-special-keyword faces)
22040 (push (list :keyword
22041 (previous-single-property-change p 'face)
22042 (next-single-property-change p 'face)) clist))
22043 ((org-at-target-p)
22044 (push (org-point-in-group p 0 :target) clist)
22045 (goto-char (1- (match-beginning 0)))
22046 (if (looking-at org-radio-target-regexp)
22047 (push (org-point-in-group p 0 :radio-target) clist))
22048 (goto-char p))
22049 ((setq o (car (delq nil
22050 (mapcar
22051 (lambda (x)
22052 (if (memq x org-latex-fragment-image-overlays) x))
22053 (overlays-at (point))))))
22054 (push (list :latex-fragment
22055 (overlay-start o) (overlay-end o)) clist)
22056 (push (list :latex-preview
22057 (overlay-start o) (overlay-end o)) clist))
22058 ((org-inside-LaTeX-fragment-p)
22059 ;; FIXME: positions wrong.
22060 (push (list :latex-fragment (point) (point)) clist)))
22062 (setq clist (nreverse (delq nil clist)))
22063 clist))
22065 ;; FIXME: Compare with at-regexp-p Do we need both?
22066 (defun org-in-regexp (re &optional nlines visually)
22067 "Check if point is inside a match of regexp.
22068 Normally only the current line is checked, but you can include NLINES extra
22069 lines both before and after point into the search.
22070 If VISUALLY is set, require that the cursor is not after the match but
22071 really on, so that the block visually is on the match."
22072 (catch 'exit
22073 (let ((pos (point))
22074 (eol (point-at-eol (+ 1 (or nlines 0))))
22075 (inc (if visually 1 0)))
22076 (save-excursion
22077 (beginning-of-line (- 1 (or nlines 0)))
22078 (while (re-search-forward re eol t)
22079 (if (and (<= (match-beginning 0) pos)
22080 (>= (+ inc (match-end 0)) pos))
22081 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22083 (defun org-at-regexp-p (regexp)
22084 "Is point inside a match of REGEXP in the current line?"
22085 (catch 'exit
22086 (save-excursion
22087 (let ((pos (point)) (end (point-at-eol)))
22088 (beginning-of-line 1)
22089 (while (re-search-forward regexp end t)
22090 (if (and (<= (match-beginning 0) pos)
22091 (>= (match-end 0) pos))
22092 (throw 'exit t)))
22093 nil))))
22095 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22096 "Non-nil when point is between matches of START-RE and END-RE.
22098 Also return a non-nil value when point is on one of the matches.
22100 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22101 buffer positions. Default values are the positions of headlines
22102 surrounding the point.
22104 The functions returns a cons cell whose car (resp. cdr) is the
22105 position before START-RE (resp. after END-RE)."
22106 (save-match-data
22107 (let ((pos (point))
22108 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22109 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22110 beg end)
22111 (save-excursion
22112 ;; Point is on a block when on START-RE or if START-RE can be
22113 ;; found before it...
22114 (and (or (org-at-regexp-p start-re)
22115 (re-search-backward start-re limit-up t))
22116 (setq beg (match-beginning 0))
22117 ;; ... and END-RE after it...
22118 (goto-char (match-end 0))
22119 (re-search-forward end-re limit-down t)
22120 (> (setq end (match-end 0)) pos)
22121 ;; ... without another START-RE in-between.
22122 (goto-char (match-beginning 0))
22123 (not (re-search-backward start-re (1+ beg) t))
22124 ;; Return value.
22125 (cons beg end))))))
22127 (defun org-in-block-p (names)
22128 "Non-nil when point belongs to a block whose name belongs to NAMES.
22130 NAMES is a list of strings containing names of blocks.
22132 Return first block name matched, or nil. Beware that in case of
22133 nested blocks, the returned name may not belong to the closest
22134 block from point."
22135 (save-match-data
22136 (catch 'exit
22137 (let ((case-fold-search t)
22138 (lim-up (save-excursion (outline-previous-heading)))
22139 (lim-down (save-excursion (outline-next-heading))))
22140 (mapc (lambda (name)
22141 (let ((n (regexp-quote name)))
22142 (when (org-between-regexps-p
22143 (concat "^[ \t]*#\\+begin_" n)
22144 (concat "^[ \t]*#\\+end_" n)
22145 lim-up lim-down)
22146 (throw 'exit n))))
22147 names))
22148 nil)))
22150 (defun org-in-drawer-p ()
22151 "Non-nil if point is within a drawer.
22152 If point is within a drawer, return it, as parsed data."
22153 (let ((element (save-match-data (org-element-at-point))))
22154 (while (and element (not (memq (org-element-type element)
22155 '(drawer property-drawer))))
22156 (setq element (org-element-property :parent element)))
22157 element))
22159 (defun org-occur-in-agenda-files (regexp &optional nlines)
22160 "Call `multi-occur' with buffers for all agenda files."
22161 (interactive "sOrg-files matching: \np")
22162 (let* ((files (org-agenda-files))
22163 (tnames (mapcar 'file-truename files))
22164 (extra org-agenda-text-search-extra-files)
22166 (when (eq (car extra) 'agenda-archives)
22167 (setq extra (cdr extra))
22168 (setq files (org-add-archive-files files)))
22169 (while (setq f (pop extra))
22170 (unless (member (file-truename f) tnames)
22171 (add-to-list 'files f 'append)
22172 (add-to-list 'tnames (file-truename f) 'append)))
22173 (multi-occur
22174 (mapcar (lambda (x)
22175 (with-current-buffer
22176 (or (get-file-buffer x) (find-file-noselect x))
22177 (widen)
22178 (current-buffer)))
22179 files)
22180 regexp)))
22182 (if (boundp 'occur-mode-find-occurrence-hook)
22183 ;; Emacs 23
22184 (add-hook 'occur-mode-find-occurrence-hook
22185 (lambda ()
22186 (when (derived-mode-p 'org-mode)
22187 (org-reveal))))
22188 ;; Emacs 22
22189 (defadvice occur-mode-goto-occurrence
22190 (after org-occur-reveal activate)
22191 (and (derived-mode-p 'org-mode) (org-reveal)))
22192 (defadvice occur-mode-goto-occurrence-other-window
22193 (after org-occur-reveal activate)
22194 (and (derived-mode-p 'org-mode) (org-reveal)))
22195 (defadvice occur-mode-display-occurrence
22196 (after org-occur-reveal activate)
22197 (when (derived-mode-p 'org-mode)
22198 (let ((pos (occur-mode-find-occurrence)))
22199 (with-current-buffer (marker-buffer pos)
22200 (save-excursion
22201 (goto-char pos)
22202 (org-reveal)))))))
22204 (defun org-occur-link-in-agenda-files ()
22205 "Create a link and search for it in the agendas.
22206 The link is not stored in `org-stored-links', it is just created
22207 for the search purpose."
22208 (interactive)
22209 (let ((link (condition-case nil
22210 (org-store-link nil)
22211 (error "Unable to create a link to here"))))
22212 (org-occur-in-agenda-files (regexp-quote link))))
22214 (defun org-reverse-string (string)
22215 "Return the reverse of STRING."
22216 (apply 'string (reverse (string-to-list string))))
22218 ;; defsubst org-uniquify must be defined before first use
22220 (defun org-uniquify-alist (alist)
22221 "Merge elements of ALIST with the same key.
22223 For example, in this alist:
22225 \(org-uniquify-alist '((a 1) (b 2) (a 3)))
22226 => '((a 1 3) (b 2))
22228 merge (a 1) and (a 3) into (a 1 3).
22230 The function returns the new ALIST."
22231 (let (rtn)
22232 (mapc
22233 (lambda (e)
22234 (let (n)
22235 (if (not (assoc (car e) rtn))
22236 (push e rtn)
22237 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22238 (setq rtn (assq-delete-all (car e) rtn))
22239 (push n rtn))))
22240 alist)
22241 rtn))
22243 (defun org-delete-all (elts list)
22244 "Remove all elements in ELTS from LIST."
22245 (while elts
22246 (setq list (delete (pop elts) list)))
22247 list)
22249 (defun org-count (cl-item cl-seq)
22250 "Count the number of occurrences of ITEM in SEQ.
22251 Taken from `count' in cl-seq.el with all keyword arguments removed."
22252 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22253 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22254 (while (< cl-start cl-end)
22255 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22256 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22257 (setq cl-start (1+ cl-start)))
22258 cl-count))
22260 (defun org-remove-if (predicate seq)
22261 "Remove everything from SEQ that fulfills PREDICATE."
22262 (let (res e)
22263 (while seq
22264 (setq e (pop seq))
22265 (if (not (funcall predicate e)) (push e res)))
22266 (nreverse res)))
22268 (defun org-remove-if-not (predicate seq)
22269 "Remove everything from SEQ that does not fulfill PREDICATE."
22270 (let (res e)
22271 (while seq
22272 (setq e (pop seq))
22273 (if (funcall predicate e) (push e res)))
22274 (nreverse res)))
22276 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22277 "Reduce two-argument FUNCTION across SEQ.
22278 Taken from `reduce' in cl-seq.el with all keyword arguments but
22279 \":initial-value\" removed."
22280 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22281 (cadr (memq :initial-value cl-keys)))
22282 (cl-seq (pop cl-seq))
22283 (t (funcall cl-func)))))
22284 (while cl-seq
22285 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22286 cl-accum))
22288 (defun org-every (pred seq)
22289 "Return true if PREDICATE is true of every element of SEQ.
22290 Adapted from `every' in cl.el."
22291 (catch 'org-every
22292 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22295 (defun org-some (pred seq)
22296 "Return true if PREDICATE is true of any element of SEQ.
22297 Adapted from `some' in cl.el."
22298 (catch 'org-some
22299 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22300 nil))
22302 (defun org-back-over-empty-lines ()
22303 "Move backwards over whitespace, to the beginning of the first empty line.
22304 Returns the number of empty lines passed."
22305 (let ((pos (point)))
22306 (if (cdr (assoc 'heading org-blank-before-new-entry))
22307 (skip-chars-backward " \t\n\r")
22308 (unless (eobp)
22309 (forward-line -1)))
22310 (beginning-of-line 2)
22311 (goto-char (min (point) pos))
22312 (count-lines (point) pos)))
22314 (defun org-skip-whitespace ()
22315 (skip-chars-forward " \t\n\r"))
22317 (defun org-point-in-group (point group &optional context)
22318 "Check if POINT is in match-group GROUP.
22319 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22320 match. If the match group does not exist or point is not inside it,
22321 return nil."
22322 (and (match-beginning group)
22323 (>= point (match-beginning group))
22324 (<= point (match-end group))
22325 (if context
22326 (list context (match-beginning group) (match-end group))
22327 t)))
22329 (defun org-switch-to-buffer-other-window (&rest args)
22330 "Switch to buffer in a second window on the current frame.
22331 In particular, do not allow pop-up frames.
22332 Returns the newly created buffer."
22333 (org-no-popups
22334 (apply 'switch-to-buffer-other-window args)))
22336 (defun org-combine-plists (&rest plists)
22337 "Create a single property list from all plists in PLISTS.
22338 The process starts by copying the first list, and then setting properties
22339 from the other lists. Settings in the last list are the most significant
22340 ones and overrule settings in the other lists."
22341 (let ((rtn (copy-sequence (pop plists)))
22342 p v ls)
22343 (while plists
22344 (setq ls (pop plists))
22345 (while ls
22346 (setq p (pop ls) v (pop ls))
22347 (setq rtn (plist-put rtn p v))))
22348 rtn))
22350 (defun org-replace-escapes (string table)
22351 "Replace %-escapes in STRING with values in TABLE.
22352 TABLE is an association list with keys like \"%a\" and string values.
22353 The sequences in STRING may contain normal field width and padding information,
22354 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22355 so values can contain further %-escapes if they are define later in TABLE."
22356 (let ((tbl (copy-alist table))
22357 (case-fold-search nil)
22358 (pchg 0)
22359 e re rpl)
22360 (while (setq e (pop tbl))
22361 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22362 (when (and (cdr e) (string-match re (cdr e)))
22363 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22364 (safe "SREF"))
22365 (add-text-properties 0 3 (list 'sref sref) safe)
22366 (setcdr e (replace-match safe t t (cdr e)))))
22367 (while (string-match re string)
22368 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22369 (cdr e)))
22370 (setq string (replace-match rpl t t string))))
22371 (while (setq pchg (next-property-change pchg string))
22372 (let ((sref (get-text-property pchg 'sref string)))
22373 (when (and sref (string-match "SREF" string pchg))
22374 (setq string (replace-match sref t t string)))))
22375 string))
22377 (defun org-sublist (list start end)
22378 "Return a section of LIST, from START to END.
22379 Counting starts at 1."
22380 (let (rtn (c start))
22381 (setq list (nthcdr (1- start) list))
22382 (while (and list (<= c end))
22383 (push (pop list) rtn)
22384 (setq c (1+ c)))
22385 (nreverse rtn)))
22387 (defun org-find-base-buffer-visiting (file)
22388 "Like `find-buffer-visiting' but always return the base buffer and
22389 not an indirect buffer."
22390 (let ((buf (or (get-file-buffer file)
22391 (find-buffer-visiting file))))
22392 (if buf
22393 (or (buffer-base-buffer buf) buf)
22394 nil)))
22396 (defun org-image-file-name-regexp (&optional extensions)
22397 "Return regexp matching the file names of images.
22398 If EXTENSIONS is given, only match these."
22399 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22400 (image-file-name-regexp)
22401 (let ((image-file-name-extensions
22402 (or extensions
22403 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22404 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22405 (concat "\\."
22406 (regexp-opt (nconc (mapcar 'upcase
22407 image-file-name-extensions)
22408 image-file-name-extensions)
22410 "\\'"))))
22412 (defun org-file-image-p (file &optional extensions)
22413 "Return non-nil if FILE is an image."
22414 (save-match-data
22415 (string-match (org-image-file-name-regexp extensions) file)))
22417 (defun org-get-cursor-date (&optional with-time)
22418 "Return the date at cursor in as a time.
22419 This works in the calendar and in the agenda, anywhere else it just
22420 returns the current time.
22421 If WITH-TIME is non-nil, returns the time of the event at point (in
22422 the agenda) or the current time of the day."
22423 (let (date day defd tp tm hod mod)
22424 (when with-time
22425 (setq tp (get-text-property (point) 'time))
22426 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22427 (setq hod (string-to-number (match-string 1 tp))
22428 mod (string-to-number (match-string 2 tp))))
22429 (or tp (setq hod (nth 2 (decode-time (current-time)))
22430 mod (nth 1 (decode-time (current-time))))))
22431 (cond
22432 ((eq major-mode 'calendar-mode)
22433 (setq date (calendar-cursor-to-date)
22434 defd (encode-time 0 (or mod 0) (or hod 0)
22435 (nth 1 date) (nth 0 date) (nth 2 date))))
22436 ((eq major-mode 'org-agenda-mode)
22437 (setq day (get-text-property (point) 'day))
22438 (if day
22439 (setq date (calendar-gregorian-from-absolute day)
22440 defd (encode-time 0 (or mod 0) (or hod 0)
22441 (nth 1 date) (nth 0 date) (nth 2 date))))))
22442 (or defd (current-time))))
22444 (defun org-mark-subtree (&optional up)
22445 "Mark the current subtree.
22446 This puts point at the start of the current subtree, and mark at
22447 the end. If a numeric prefix UP is given, move up into the
22448 hierarchy of headlines by UP levels before marking the subtree."
22449 (interactive "P")
22450 (org-with-limited-levels
22451 (cond ((org-at-heading-p) (beginning-of-line))
22452 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22453 (t (outline-previous-visible-heading 1))))
22454 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22455 (if (org-called-interactively-p 'any)
22456 (call-interactively 'org-mark-element)
22457 (org-mark-element)))
22460 ;;; Indentation
22462 (defun org--get-expected-indentation (element contentsp)
22463 "Expected indentation column for current line, according to ELEMENT.
22464 ELEMENT is an element containing point. CONTENTSP is non-nil
22465 when indentation is to be computed according to contents of
22466 ELEMENT."
22467 (let ((type (org-element-type element))
22468 (start (org-element-property :begin element)))
22469 (org-with-wide-buffer
22470 (cond
22471 (contentsp
22472 (case type
22473 (footnote-definition 0)
22474 ((headline inlinetask nil)
22475 (if (not org-adapt-indentation) 0
22476 (let ((level (org-current-level)))
22477 (if level (1+ level) 0))))
22478 (item
22479 (org-list-item-body-column
22480 (org-element-property :post-affiliated element)))
22481 (plain-list
22482 (save-excursion
22483 (goto-char (org-element-property :post-affiliated element))
22484 (org-get-indentation)))
22485 (otherwise
22486 (goto-char start)
22487 (org-get-indentation))))
22488 ((memq type '(headline inlinetask nil))
22489 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22490 (org--get-expected-indentation element t)
22492 ((eq type 'footnote-definition) 0)
22493 ;; First paragraph of a footnote definition or an item.
22494 ;; Indent like parent.
22495 ((< (line-beginning-position) start)
22496 (org--get-expected-indentation
22497 (org-element-property :parent element) t))
22498 ;; At first line: indent according to previous sibling, if any,
22499 ;; ignoring footnote definitions and inline tasks, or parent's
22500 ;; contents.
22501 ((= (line-beginning-position) start)
22502 (catch 'exit
22503 (while t
22504 (if (= (point-min) start) (throw 'exit 0)
22505 (goto-char (1- start))
22506 (let* ((previous (org-element-at-point))
22507 (parent previous))
22508 (while (and parent (<= (org-element-property :end parent) start))
22509 (setq previous parent
22510 parent (org-element-property :parent parent)))
22511 (cond
22512 ((not previous) (throw 'exit 0))
22513 ((> (org-element-property :end previous) start)
22514 (throw 'exit (org--get-expected-indentation previous t)))
22515 ((memq (org-element-type previous)
22516 '(footnote-definition inlinetask))
22517 (setq start (org-element-property :begin previous)))
22518 (t (goto-char (org-element-property :begin previous))
22519 (throw 'exit
22520 (if (bolp) (org-get-indentation)
22521 ;; At first paragraph in an item or
22522 ;; a footnote definition.
22523 (org--get-expected-indentation
22524 (org-element-property :parent previous) t))))))))))
22525 ;; Otherwise, move to the first non-blank line above.
22527 (beginning-of-line)
22528 (let ((pos (point)))
22529 (skip-chars-backward " \r\t\n")
22530 (cond
22531 ;; Two blank lines end a footnote definition or a plain
22532 ;; list. When we indent an empty line after them, the
22533 ;; containing list or footnote definition is over, so it
22534 ;; qualifies as a previous sibling. Therefore, we indent
22535 ;; like its first line.
22536 ((and (memq type '(footnote-definition plain-list))
22537 (> (count-lines (point) pos) 2))
22538 (goto-char start)
22539 (org-get-indentation))
22540 ;; Line above is the first one of a paragraph at the
22541 ;; beginning of an item or a footnote definition. Indent
22542 ;; like parent.
22543 ((< (line-beginning-position) start)
22544 (org--get-expected-indentation
22545 (org-element-property :parent element) t))
22546 ;; POS is after contents in a greater element. Indent like
22547 ;; the beginning of the element.
22549 ;; As a special case, if point is at the end of a footnote
22550 ;; definition or an item, indent like the very last element
22551 ;; within.
22552 ((let ((cend (org-element-property :contents-end element)))
22553 (and cend (<= cend pos)))
22554 (if (memq type '(footnote-definition item plain-list))
22555 (org--get-expected-indentation (org-element-at-point) nil)
22556 (goto-char start)
22557 (org-get-indentation)))
22558 ;; In any other case, indent like the current line.
22559 (t (org-get-indentation)))))))))
22561 (defun org--align-node-property ()
22562 "Align node property at point.
22563 Alignment is done according to `org-property-format', which see."
22564 (when (save-excursion
22565 (beginning-of-line)
22566 (looking-at org-property-re))
22567 (replace-match
22568 (concat (match-string 4)
22569 (org-trim
22570 (format org-property-format (match-string 1) (match-string 3))))
22571 t t)))
22573 (defun org-indent-line ()
22574 "Indent line depending on context.
22576 Indentation is done according to the following rules:
22578 - Footnote definitions, headlines and inline tasks have to
22579 start at column 0.
22581 - On the very first line of an element, consider, in order, the
22582 next rules until one matches:
22584 1. If there's a sibling element before, ignoring footnote
22585 definitions and inline tasks, indent like its first line.
22587 2. If element has a parent, indent like its contents. More
22588 precisely, if parent is an item, indent after the
22589 description part, if any, or the bullet (see
22590 ``org-list-description-max-indent'). Else, indent like
22591 parent's first line.
22593 3. Otherwise, indent relatively to current level, if
22594 `org-adapt-indentation' is non-nil, or to left margin.
22596 - On a blank line at the end of a plain list, an item, or
22597 a footnote definition, indent like the very last element
22598 within.
22600 - In the code part of a source block, use language major mode
22601 to indent current line if `org-src-tab-acts-natively' is
22602 non-nil. If it is nil, do nothing.
22604 - Otherwise, indent like the first non-blank line above.
22606 The function doesn't indent an item as it could break the whole
22607 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
22608 \\[org-shiftmetaright].
22610 Also align node properties according to `org-property-format'."
22611 (interactive)
22612 (cond
22613 (orgstruct-is-++
22614 (let ((indent-line-function
22615 (cadadr (assq 'indent-line-function org-fb-vars))))
22616 (indent-according-to-mode)))
22617 ((org-at-heading-p) 'noindent)
22619 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
22620 (type (org-element-type element)))
22621 (cond ((and (memq type '(plain-list item))
22622 (= (line-beginning-position)
22623 (org-element-property :post-affiliated element)))
22624 'noindent)
22625 ((and (eq type 'src-block)
22626 org-src-tab-acts-natively
22627 (> (line-beginning-position)
22628 (org-element-property :post-affiliated element))
22629 (< (line-beginning-position)
22630 (org-with-wide-buffer
22631 (goto-char (org-element-property :end element))
22632 (skip-chars-backward " \r\t\n")
22633 (line-beginning-position))))
22634 (let ((org-src-strip-leading-and-trailing-blank-lines nil))
22635 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB"))))
22637 (let ((column (org--get-expected-indentation element nil)))
22638 ;; Preserve current column.
22639 (if (<= (current-column) (current-indentation))
22640 (org-indent-line-to column)
22641 (save-excursion (org-indent-line-to column))))
22642 ;; Align node property. Also preserve current column.
22643 (when (eq type 'node-property)
22644 (let ((column (current-column)))
22645 (org--align-node-property)
22646 (org-move-to-column column)))))))))
22648 (defun org-indent-region (start end)
22649 "Indent each non-blank line in the region.
22650 Called from a program, START and END specify the region to
22651 indent. The function will not indent contents of example blocks,
22652 verse blocks and export blocks as leading white spaces are
22653 assumed to be significant there."
22654 (interactive "r")
22655 (save-excursion
22656 (goto-char start)
22657 (skip-chars-forward " \r\t\n")
22658 (unless (eobp) (beginning-of-line))
22659 (let ((indent-to
22660 (lambda (ind pos)
22661 ;; Set IND as indentation for all lines between point and
22662 ;; POS or END, whichever comes first. Blank lines are
22663 ;; ignored. Leave point after POS once done.
22664 (let ((limit (copy-marker (min end pos))))
22665 (while (< (point) limit)
22666 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
22667 (forward-line))
22668 (set-marker limit nil))))
22669 (end (copy-marker end)))
22670 (while (< (point) end)
22671 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
22672 (let* ((element (org-element-at-point))
22673 (type (org-element-type element))
22674 (element-end (copy-marker (org-element-property :end element)))
22675 (ind (org--get-expected-indentation element nil)))
22676 (cond
22677 ((or (memq type '(paragraph table table-row))
22678 (not (or (org-element-property :contents-begin element)
22679 (memq type
22680 '(example-block export-block src-block)))))
22681 ;; Elements here are indented as a single block. Also
22682 ;; align node properties.
22683 (when (eq type 'node-property)
22684 (org--align-node-property)
22685 (beginning-of-line))
22686 (funcall indent-to ind element-end))
22688 ;; Elements in this category consist of three parts:
22689 ;; before the contents, the contents, and after the
22690 ;; contents. The contents are treated specially,
22691 ;; according to the element type, or not indented at
22692 ;; all. Other parts are indented as a single block.
22693 (let* ((post (copy-marker
22694 (org-element-property :post-affiliated element)))
22695 (cbeg
22696 (copy-marker
22697 (cond
22698 ((not (org-element-property :contents-begin element))
22699 ;; Fake contents for source blocks.
22700 (org-with-wide-buffer
22701 (goto-char post)
22702 (forward-line)
22703 (point)))
22704 ((memq type '(footnote-definition item plain-list))
22705 ;; Contents in these elements could start on
22706 ;; the same line as the beginning of the
22707 ;; element. Make sure we start indenting
22708 ;; from the second line.
22709 (org-with-wide-buffer
22710 (goto-char post)
22711 (end-of-line)
22712 (skip-chars-forward " \r\t\n")
22713 (if (eobp) (point) (line-beginning-position))))
22714 (t (org-element-property :contents-begin element)))))
22715 (cend (copy-marker
22716 (or (org-element-property :contents-end element)
22717 ;; Fake contents for source blocks.
22718 (org-with-wide-buffer
22719 (goto-char element-end)
22720 (skip-chars-backward " \r\t\n")
22721 (line-beginning-position))))))
22722 ;; Do not change items indentation individually as it
22723 ;; might break the list as a whole. On the other
22724 ;; hand, when at a plain list, indent it as a whole.
22725 (cond ((eq type 'plain-list)
22726 (let ((offset (- ind (org-get-indentation))))
22727 (unless (zerop offset)
22728 (indent-rigidly (org-element-property :begin element)
22729 (org-element-property :end element)
22730 offset))
22731 (goto-char cbeg)))
22732 ((eq type 'item) (goto-char cbeg))
22733 (t (funcall indent-to ind cbeg)))
22734 (when (< (point) end)
22735 (case type
22736 ((example-block export-block verse-block))
22737 (src-block
22738 ;; In a source block, indent source code
22739 ;; according to language major mode, but only if
22740 ;; `org-src-tab-acts-natively' is non-nil.
22741 (when (and (< (point) end) org-src-tab-acts-natively)
22742 (ignore-errors
22743 (let (org-src-strip-leading-and-trailing-blank-lines
22744 ;; Region boundaries in edit buffer.
22745 (start (1+ (- (point) cbeg)))
22746 (end (- (min cend end) cbeg)))
22747 (org-babel-do-in-edit-buffer
22748 (indent-region start end))))))
22749 (t (org-indent-region (point) (min cend end))))
22750 (goto-char (min cend end))
22751 (when (< (point) end) (funcall indent-to ind element-end)))
22752 (set-marker post nil)
22753 (set-marker cbeg nil)
22754 (set-marker cend nil))))
22755 (set-marker element-end nil))))
22756 (set-marker end nil))))
22758 (defun org-indent-drawer ()
22759 "Indent the drawer at point."
22760 (interactive)
22761 (unless (save-excursion
22762 (beginning-of-line)
22763 (org-looking-at-p org-drawer-regexp))
22764 (user-error "Not at a drawer"))
22765 (let ((element (org-element-at-point)))
22766 (unless (memq (org-element-type element) '(drawer property-drawer))
22767 (user-error "Not at a drawer"))
22768 (org-with-wide-buffer
22769 (org-indent-region (org-element-property :begin element)
22770 (org-element-property :end element))))
22771 (message "Drawer at point indented"))
22773 (defun org-indent-block ()
22774 "Indent the block at point."
22775 (interactive)
22776 (unless (save-excursion
22777 (beginning-of-line)
22778 (let ((case-fold-search t))
22779 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
22780 (user-error "Not at a block"))
22781 (let ((element (org-element-at-point)))
22782 (unless (memq (org-element-type element)
22783 '(comment-block center-block dynamic-block example-block
22784 export-block quote-block special-block
22785 src-block verse-block))
22786 (user-error "Not at a block"))
22787 (org-with-wide-buffer
22788 (org-indent-region (org-element-property :begin element)
22789 (org-element-property :end element))))
22790 (message "Block at point indented"))
22793 ;;; Filling
22795 ;; We use our own fill-paragraph and auto-fill functions.
22797 ;; `org-fill-paragraph' relies on adaptive filling and context
22798 ;; checking. Appropriate `fill-prefix' is computed with
22799 ;; `org-adaptive-fill-function'.
22801 ;; `org-auto-fill-function' takes care of auto-filling. It calls
22802 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
22803 ;; `org-adaptive-fill-function' value. Internally,
22804 ;; `org-comment-line-break-function' breaks the line.
22806 ;; `org-setup-filling' installs filling and auto-filling related
22807 ;; variables during `org-mode' initialization.
22809 (defvar org-element-paragraph-separate) ; org-element.el
22810 (defun org-setup-filling ()
22811 (require 'org-element)
22812 ;; Prevent auto-fill from inserting unwanted new items.
22813 (when (boundp 'fill-nobreak-predicate)
22814 (org-set-local
22815 'fill-nobreak-predicate
22816 (org-uniquify
22817 (append fill-nobreak-predicate
22818 '(org-fill-line-break-nobreak-p
22819 org-fill-paragraph-with-timestamp-nobreak-p)))))
22820 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
22821 (org-set-local 'paragraph-start paragraph-ending)
22822 (org-set-local 'paragraph-separate paragraph-ending))
22823 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
22824 (org-set-local 'auto-fill-inhibit-regexp nil)
22825 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
22826 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
22827 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
22829 (defun org-fill-line-break-nobreak-p ()
22830 "Non-nil when a new line at point would create an Org line break."
22831 (save-excursion
22832 (skip-chars-backward "[ \t]")
22833 (skip-chars-backward "\\\\")
22834 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
22836 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
22837 "Non-nil when a new line at point would split a timestamp."
22838 (and (org-at-timestamp-p t)
22839 (not (looking-at org-ts-regexp-both))))
22841 (declare-function message-in-body-p "message" ())
22842 (defvar orgtbl-line-start-regexp) ; From org-table.el
22843 (defun org-adaptive-fill-function ()
22844 "Compute a fill prefix for the current line.
22845 Return fill prefix, as a string, or nil if current line isn't
22846 meant to be filled. For convenience, if `adaptive-fill-regexp'
22847 matches in paragraphs or comments, use it."
22848 (catch 'exit
22849 (when (derived-mode-p 'message-mode)
22850 (save-excursion
22851 (beginning-of-line)
22852 (cond ((or (not (message-in-body-p))
22853 (looking-at orgtbl-line-start-regexp))
22854 (throw 'exit nil))
22855 ((looking-at message-cite-prefix-regexp)
22856 (throw 'exit (match-string-no-properties 0)))
22857 ((looking-at org-outline-regexp)
22858 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
22859 (org-with-wide-buffer
22860 (unless (org-at-heading-p)
22861 (let* ((p (line-beginning-position))
22862 (element (save-excursion
22863 (beginning-of-line)
22864 (org-element-at-point)))
22865 (type (org-element-type element))
22866 (post-affiliated (org-element-property :post-affiliated element)))
22867 (unless (< p post-affiliated)
22868 (case type
22869 (comment
22870 (save-excursion
22871 (beginning-of-line)
22872 (looking-at "[ \t]*")
22873 (concat (match-string 0) "# ")))
22874 (footnote-definition "")
22875 ((item plain-list)
22876 (make-string (org-list-item-body-column post-affiliated) ?\s))
22877 (paragraph
22878 ;; Fill prefix is usually the same as the current line,
22879 ;; unless the paragraph is at the beginning of an item.
22880 (let ((parent (org-element-property :parent element)))
22881 (save-excursion
22882 (beginning-of-line)
22883 (cond ((eq (org-element-type parent) 'item)
22884 (make-string (org-list-item-body-column
22885 (org-element-property :begin parent))
22886 ?\s))
22887 ((and adaptive-fill-regexp
22888 ;; Locally disable
22889 ;; `adaptive-fill-function' to let
22890 ;; `fill-context-prefix' handle
22891 ;; `adaptive-fill-regexp' variable.
22892 (let (adaptive-fill-function)
22893 (fill-context-prefix
22894 post-affiliated
22895 (org-element-property :end element)))))
22896 ((looking-at "[ \t]+") (match-string 0))
22897 (t "")))))
22898 (comment-block
22899 ;; Only fill contents if P is within block boundaries.
22900 (let* ((cbeg (save-excursion (goto-char post-affiliated)
22901 (forward-line)
22902 (point)))
22903 (cend (save-excursion
22904 (goto-char (org-element-property :end element))
22905 (skip-chars-backward " \r\t\n")
22906 (line-beginning-position))))
22907 (when (and (>= p cbeg) (< p cend))
22908 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
22909 (match-string 0)
22910 "")))))))))))
22912 (declare-function message-goto-body "message" ())
22913 (defvar message-cite-prefix-regexp) ; From message.el
22914 (defun org-fill-paragraph (&optional justify)
22915 "Fill element at point, when applicable.
22917 This function only applies to comment blocks, comments, example
22918 blocks and paragraphs. Also, as a special case, re-align table
22919 when point is at one.
22921 If JUSTIFY is non-nil (interactively, with prefix argument),
22922 justify as well. If `sentence-end-double-space' is non-nil, then
22923 period followed by one space does not end a sentence, so don't
22924 break a line there. The variable `fill-column' controls the
22925 width for filling.
22927 For convenience, when point is at a plain list, an item or
22928 a footnote definition, try to fill the first paragraph within."
22929 (interactive)
22930 (if (and (derived-mode-p 'message-mode)
22931 (or (not (message-in-body-p))
22932 (save-excursion (move-beginning-of-line 1)
22933 (looking-at message-cite-prefix-regexp))))
22934 ;; First ensure filling is correct in message-mode.
22935 (let ((fill-paragraph-function
22936 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
22937 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
22938 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
22939 (paragraph-separate
22940 (cadadr (assoc 'paragraph-separate org-fb-vars))))
22941 (fill-paragraph nil))
22942 (with-syntax-table org-mode-transpose-word-syntax-table
22943 ;; Move to end of line in order to get the first paragraph
22944 ;; within a plain list or a footnote definition.
22945 (let ((element (save-excursion
22946 (end-of-line)
22947 (or (ignore-errors (org-element-at-point))
22948 (user-error "An element cannot be parsed line %d"
22949 (line-number-at-pos (point)))))))
22950 ;; First check if point is in a blank line at the beginning of
22951 ;; the buffer. In that case, ignore filling.
22952 (case (org-element-type element)
22953 ;; Use major mode filling function is src blocks.
22954 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
22955 ;; Align Org tables, leave table.el tables as-is.
22956 (table-row (org-table-align) t)
22957 (table
22958 (when (eq (org-element-property :type element) 'org)
22959 (save-excursion
22960 (goto-char (org-element-property :post-affiliated element))
22961 (org-table-align)))
22963 (paragraph
22964 ;; Paragraphs may contain `line-break' type objects.
22965 (let ((beg (max (point-min)
22966 (org-element-property :contents-begin element)))
22967 (end (min (point-max)
22968 (org-element-property :contents-end element))))
22969 ;; Do nothing if point is at an affiliated keyword.
22970 (if (< (line-end-position) beg) t
22971 (when (derived-mode-p 'message-mode)
22972 ;; In `message-mode', do not fill following citation
22973 ;; in current paragraph nor text before message body.
22974 (let ((body-start (save-excursion (message-goto-body))))
22975 (when body-start (setq beg (max body-start beg))))
22976 (when (save-excursion
22977 (re-search-forward
22978 (concat "^" message-cite-prefix-regexp) end t))
22979 (setq end (match-beginning 0))))
22980 ;; Fill paragraph, taking line breaks into account.
22981 (save-excursion
22982 (goto-char beg)
22983 (let ((cuts (list beg)))
22984 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
22985 (when (eq 'line-break
22986 (org-element-type
22987 (save-excursion (backward-char)
22988 (org-element-context))))
22989 (push (point) cuts)))
22990 (dolist (c (delq end cuts))
22991 (fill-region-as-paragraph c end justify)
22992 (setq end c))))
22993 t)))
22994 ;; Contents of `comment-block' type elements should be
22995 ;; filled as plain text, but only if point is within block
22996 ;; markers.
22997 (comment-block
22998 (let* ((case-fold-search t)
22999 (beg (save-excursion
23000 (goto-char (org-element-property :begin element))
23001 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23002 (forward-line)
23003 (point)))
23004 (end (save-excursion
23005 (goto-char (org-element-property :end element))
23006 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23007 (line-beginning-position))))
23008 (if (or (< (point) beg) (> (point) end)) t
23009 (fill-region-as-paragraph
23010 (save-excursion (end-of-line)
23011 (re-search-backward "^[ \t]*$" beg 'move)
23012 (line-beginning-position))
23013 (save-excursion (beginning-of-line)
23014 (re-search-forward "^[ \t]*$" end 'move)
23015 (line-beginning-position))
23016 justify))))
23017 ;; Fill comments.
23018 (comment
23019 (let ((begin (org-element-property :post-affiliated element))
23020 (end (org-element-property :end element)))
23021 (when (and (>= (point) begin) (<= (point) end))
23022 (let ((begin (save-excursion
23023 (end-of-line)
23024 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23025 (progn (forward-line) (point))
23026 begin)))
23027 (end (save-excursion
23028 (end-of-line)
23029 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23030 (1- (line-beginning-position))
23031 (skip-chars-backward " \r\t\n")
23032 (line-end-position)))))
23033 ;; Do not fill comments when at a blank line.
23034 (when (> end begin)
23035 (let ((fill-prefix
23036 (save-excursion
23037 (beginning-of-line)
23038 (looking-at "[ \t]*#")
23039 (let ((comment-prefix (match-string 0)))
23040 (goto-char (match-end 0))
23041 (if (looking-at adaptive-fill-regexp)
23042 (concat comment-prefix (match-string 0))
23043 (concat comment-prefix " "))))))
23044 (save-excursion
23045 (fill-region-as-paragraph begin end justify))))))
23047 ;; Ignore every other element.
23048 (otherwise t))))))
23050 (defun org-auto-fill-function ()
23051 "Auto-fill function."
23052 ;; Check if auto-filling is meaningful.
23053 (let ((fc (current-fill-column)))
23054 (when (and fc (> (current-column) fc))
23055 (let* ((fill-prefix (org-adaptive-fill-function))
23056 ;; Enforce empty fill prefix, if required. Otherwise, it
23057 ;; will be computed again.
23058 (adaptive-fill-mode (not (equal fill-prefix ""))))
23059 (when fill-prefix (do-auto-fill))))))
23061 (defun org-comment-line-break-function (&optional soft)
23062 "Break line at point and indent, continuing comment if within one.
23063 The inserted newline is marked hard if variable
23064 `use-hard-newlines' is true, unless optional argument SOFT is
23065 non-nil."
23066 (if soft (insert-and-inherit ?\n) (newline 1))
23067 (save-excursion (forward-char -1) (delete-horizontal-space))
23068 (delete-horizontal-space)
23069 (indent-to-left-margin)
23070 (insert-before-markers-and-inherit fill-prefix))
23073 ;;; Fixed Width Areas
23075 (defun org-toggle-fixed-width ()
23076 "Toggle fixed-width markup.
23078 Add or remove fixed-width markup on current line, whenever it
23079 makes sense. Return an error otherwise.
23081 If a region is active and if it contains only fixed-width areas
23082 or blank lines, remove all fixed-width markup in it. If the
23083 region contains anything else, convert all non-fixed-width lines
23084 to fixed-width ones.
23086 Blank lines at the end of the region are ignored unless the
23087 region only contains such lines."
23088 (interactive)
23089 (if (not (org-region-active-p))
23090 ;; No region:
23092 ;; Remove fixed width marker only in a fixed-with element.
23094 ;; Add fixed width maker in paragraphs, in blank lines after
23095 ;; elements or at the beginning of a headline or an inlinetask,
23096 ;; and before any one-line elements (e.g., a clock).
23097 (progn
23098 (beginning-of-line)
23099 (let* ((element (org-element-at-point))
23100 (type (org-element-type element)))
23101 (cond
23102 ((and (eq type 'fixed-width)
23103 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23104 (replace-match
23105 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23106 ((and (memq type '(babel-call clock comment diary-sexp headline
23107 horizontal-rule keyword paragraph
23108 planning))
23109 (<= (org-element-property :post-affiliated element) (point)))
23110 (skip-chars-forward " \t")
23111 (insert ": "))
23112 ((and (org-looking-at-p "[ \t]*$")
23113 (or (eq type 'inlinetask)
23114 (save-excursion
23115 (skip-chars-forward " \r\t\n")
23116 (<= (org-element-property :end element) (point)))))
23117 (delete-region (point) (line-end-position))
23118 (org-indent-line)
23119 (insert ": "))
23120 (t (user-error "Cannot insert a fixed-width line here")))))
23121 ;; Region active.
23122 (let* ((begin (save-excursion
23123 (goto-char (region-beginning))
23124 (line-beginning-position)))
23125 (end (copy-marker
23126 (save-excursion
23127 (goto-char (region-end))
23128 (unless (eolp) (beginning-of-line))
23129 (if (save-excursion (re-search-backward "\\S-" begin t))
23130 (progn (skip-chars-backward " \r\t\n") (point))
23131 (point)))))
23132 (all-fixed-width-p
23133 (catch 'not-all-p
23134 (save-excursion
23135 (goto-char begin)
23136 (skip-chars-forward " \r\t\n")
23137 (when (eobp) (throw 'not-all-p nil))
23138 (while (< (point) end)
23139 (let ((element (org-element-at-point)))
23140 (if (eq (org-element-type element) 'fixed-width)
23141 (goto-char (org-element-property :end element))
23142 (throw 'not-all-p nil))))
23143 t))))
23144 (if all-fixed-width-p
23145 (save-excursion
23146 (goto-char begin)
23147 (while (< (point) end)
23148 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23149 (replace-match
23150 "" nil nil nil
23151 (if (= (line-end-position) (match-end 0)) 0 1)))
23152 (forward-line)))
23153 (let ((min-ind (point-max)))
23154 ;; Find minimum indentation across all lines.
23155 (save-excursion
23156 (goto-char begin)
23157 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23158 (setq min-ind 0)
23159 (catch 'zerop
23160 (while (< (point) end)
23161 (unless (org-looking-at-p "[ \t]*$")
23162 (let ((ind (org-get-indentation)))
23163 (setq min-ind (min min-ind ind))
23164 (when (zerop ind) (throw 'zerop t))))
23165 (forward-line)))))
23166 ;; Loop over all lines and add fixed-width markup everywhere
23167 ;; but in fixed-width lines.
23168 (save-excursion
23169 (goto-char begin)
23170 (while (< (point) end)
23171 (cond
23172 ((org-at-heading-p)
23173 (insert ": ")
23174 (forward-line)
23175 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23176 (insert ":")
23177 (forward-line)))
23178 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23179 (let* ((element (org-element-at-point))
23180 (element-end (org-element-property :end element)))
23181 (if (eq (org-element-type element) 'fixed-width)
23182 (progn (goto-char element-end)
23183 (skip-chars-backward " \r\t\n")
23184 (forward-line))
23185 (let ((limit (min end element-end)))
23186 (while (< (point) limit)
23187 (org-move-to-column min-ind t)
23188 (insert ": ")
23189 (forward-line))))))
23191 (org-move-to-column min-ind t)
23192 (insert ": ")
23193 (forward-line)))))))
23194 (set-marker end nil))))
23197 ;;; Comments
23199 ;; Org comments syntax is quite complex. It requires the entire line
23200 ;; to be just a comment. Also, even with the right syntax at the
23201 ;; beginning of line, some some elements (i.e. verse-block or
23202 ;; example-block) don't accept comments. Usual Emacs comment commands
23203 ;; cannot cope with those requirements. Therefore, Org replaces them.
23205 ;; Org still relies on `comment-dwim', but cannot trust
23206 ;; `comment-only-p'. So, `comment-region-function' and
23207 ;; `uncomment-region-function' both point
23208 ;; to`org-comment-or-uncomment-region'. Eventually,
23209 ;; `org-insert-comment' takes care of insertion of comments at the
23210 ;; beginning of line.
23212 ;; `org-setup-comments-handling' install comments related variables
23213 ;; during `org-mode' initialization.
23215 (defun org-setup-comments-handling ()
23216 (interactive)
23217 (org-set-local 'comment-use-syntax nil)
23218 (org-set-local 'comment-start "# ")
23219 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23220 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23221 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23222 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23224 (defun org-insert-comment ()
23225 "Insert an empty comment above current line.
23226 If the line is empty, insert comment at its beginning. When
23227 point is within a source block, comment according to the related
23228 major mode."
23229 (if (let ((element (org-element-at-point)))
23230 (and (eq (org-element-type element) 'src-block)
23231 (< (save-excursion
23232 (goto-char (org-element-property :post-affiliated element))
23233 (line-end-position))
23234 (point))
23235 (> (save-excursion
23236 (goto-char (org-element-property :end element))
23237 (skip-chars-backward " \r\t\n")
23238 (line-beginning-position))
23239 (point))))
23240 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23241 (beginning-of-line)
23242 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23243 (open-line 1))
23244 (org-indent-line)
23245 (insert "# ")))
23247 (defvar comment-empty-lines) ; From newcomment.el.
23248 (defun org-comment-or-uncomment-region (beg end &rest ignore)
23249 "Comment or uncomment each non-blank line in the region.
23250 Uncomment each non-blank line between BEG and END if it only
23251 contains commented lines. Otherwise, comment them. If region is
23252 strictly within a source block, use appropriate comment syntax."
23253 (if (let ((element (org-element-at-point)))
23254 (and (eq (org-element-type element) 'src-block)
23255 (< (save-excursion
23256 (goto-char (org-element-property :post-affiliated element))
23257 (line-end-position))
23258 beg)
23259 (>= (save-excursion
23260 (goto-char (org-element-property :end element))
23261 (skip-chars-backward " \r\t\n")
23262 (line-beginning-position))
23263 end)))
23264 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23265 (save-restriction
23266 ;; Restrict region
23267 (narrow-to-region (save-excursion (goto-char beg)
23268 (skip-chars-forward " \r\t\n" end)
23269 (line-beginning-position))
23270 (save-excursion (goto-char end)
23271 (skip-chars-backward " \r\t\n" beg)
23272 (line-end-position)))
23273 (let ((uncommentp
23274 ;; UNCOMMENTP is non-nil when every non blank line between
23275 ;; BEG and END is a comment.
23276 (save-excursion
23277 (goto-char (point-min))
23278 (while (and (not (eobp))
23279 (let ((element (org-element-at-point)))
23280 (and (eq (org-element-type element) 'comment)
23281 (goto-char (min (point-max)
23282 (org-element-property
23283 :end element)))))))
23284 (eobp))))
23285 (if uncommentp
23286 ;; Only blank lines and comments in region: uncomment it.
23287 (save-excursion
23288 (goto-char (point-min))
23289 (while (not (eobp))
23290 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23291 (replace-match "" nil nil nil 1))
23292 (forward-line)))
23293 ;; Comment each line in region.
23294 (let ((min-indent (point-max)))
23295 ;; First find the minimum indentation across all lines.
23296 (save-excursion
23297 (goto-char (point-min))
23298 (while (and (not (eobp)) (not (zerop min-indent)))
23299 (unless (looking-at "[ \t]*$")
23300 (setq min-indent (min min-indent (current-indentation))))
23301 (forward-line)))
23302 ;; Then loop over all lines.
23303 (save-excursion
23304 (goto-char (point-min))
23305 (while (not (eobp))
23306 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23307 ;; Don't get fooled by invisible text (e.g. link path)
23308 ;; when moving to column MIN-INDENT.
23309 (let ((buffer-invisibility-spec nil))
23310 (org-move-to-column min-indent t))
23311 (insert comment-start))
23312 (forward-line)))))))))
23314 (defun org-comment-dwim (arg)
23315 "Call `comment-dwim' within a source edit buffer if needed."
23316 (interactive "*P")
23317 (if (org-in-src-block-p)
23318 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23319 (call-interactively 'comment-dwim)))
23322 ;;; Planning
23324 ;; This section contains tools to operate on timestamp objects, as
23325 ;; returned by, e.g. `org-element-context'.
23327 (defun org-timestamp-has-time-p (timestamp)
23328 "Non-nil when TIMESTAMP has a time specified."
23329 (org-element-property :hour-start timestamp))
23331 (defun org-timestamp-format (timestamp format &optional end utc)
23332 "Format a TIMESTAMP element into a string.
23334 FORMAT is a format specifier to be passed to
23335 `format-time-string'.
23337 When optional argument END is non-nil, use end of date-range or
23338 time-range, if possible.
23340 When optional argument UTC is non-nil, time will be expressed as
23341 Universal Time."
23342 (format-time-string
23343 format
23344 (apply 'encode-time
23345 (cons 0
23346 (mapcar
23347 (lambda (prop) (or (org-element-property prop timestamp) 0))
23348 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23349 '(:minute-start :hour-start :day-start :month-start
23350 :year-start)))))
23351 utc))
23353 (defun org-timestamp-split-range (timestamp &optional end)
23354 "Extract a timestamp object from a date or time range.
23356 TIMESTAMP is a timestamp object. END, when non-nil, means extract
23357 the end of the range. Otherwise, extract its start.
23359 Return a new timestamp object sharing the same parent as
23360 TIMESTAMP."
23361 (let ((type (org-element-property :type timestamp)))
23362 (if (memq type '(active inactive diary)) timestamp
23363 (let ((split-ts (list 'timestamp (copy-sequence (nth 1 timestamp)))))
23364 ;; Set new type.
23365 (org-element-put-property
23366 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23367 ;; Copy start properties over end properties if END is
23368 ;; non-nil. Otherwise, copy end properties over `start' ones.
23369 (let ((p-alist '((:minute-start . :minute-end)
23370 (:hour-start . :hour-end)
23371 (:day-start . :day-end)
23372 (:month-start . :month-end)
23373 (:year-start . :year-end))))
23374 (dolist (p-cell p-alist)
23375 (org-element-put-property
23376 split-ts
23377 (funcall (if end 'car 'cdr) p-cell)
23378 (org-element-property
23379 (funcall (if end 'cdr 'car) p-cell) split-ts)))
23380 ;; Eventually refresh `:raw-value'.
23381 (org-element-put-property split-ts :raw-value nil)
23382 (org-element-put-property
23383 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23385 (defun org-timestamp-translate (timestamp &optional boundary)
23386 "Apply `org-translate-time' on a TIMESTAMP object.
23387 When optional argument BOUNDARY is non-nil, it is either the
23388 symbol `start' or `end'. In this case, only translate the
23389 starting or ending part of TIMESTAMP if it is a date or time
23390 range. Otherwise, translate both parts."
23391 (if (and (not boundary)
23392 (memq (org-element-property :type timestamp)
23393 '(active-range inactive-range)))
23394 (concat
23395 (org-translate-time
23396 (org-element-property :raw-value
23397 (org-timestamp-split-range timestamp)))
23398 "--"
23399 (org-translate-time
23400 (org-element-property :raw-value
23401 (org-timestamp-split-range timestamp t))))
23402 (org-translate-time
23403 (org-element-property
23404 :raw-value
23405 (if (not boundary) timestamp
23406 (org-timestamp-split-range timestamp (eq boundary 'end)))))))
23410 ;;; Other stuff.
23412 (defun org-reftex-citation ()
23413 "Use reftex-citation to insert a citation into the buffer.
23414 This looks for a line like
23416 #+BIBLIOGRAPHY: foo plain option:-d
23418 and derives from it that foo.bib is the bibliography file relevant
23419 for this document. It then installs the necessary environment for RefTeX
23420 to work in this buffer and calls `reftex-citation' to insert a citation
23421 into the buffer.
23423 Export of such citations to both LaTeX and HTML is handled by the contributed
23424 package ox-bibtex by Taru Karttunen."
23425 (interactive)
23426 (let ((reftex-docstruct-symbol 'rds)
23427 (reftex-cite-format "\\cite{%l}")
23428 rds bib)
23429 (save-excursion
23430 (save-restriction
23431 (widen)
23432 (let ((case-fold-search t)
23433 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23434 (if (not (save-excursion
23435 (or (re-search-forward re nil t)
23436 (re-search-backward re nil t))))
23437 (user-error "No bibliography defined in file")
23438 (setq bib (concat (match-string 1) ".bib")
23439 rds (list (list 'bib bib)))))))
23440 (call-interactively 'reftex-citation)))
23442 ;;;; Functions extending outline functionality
23444 (defun org-beginning-of-line (&optional arg)
23445 "Go to the beginning of the current line. If that is invisible, continue
23446 to a visible line beginning. This makes the function of C-a more intuitive.
23447 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23448 first attempt, and only move to after the tags when the cursor is already
23449 beyond the end of the headline."
23450 (interactive "P")
23451 (let ((pos (point))
23452 (special (if (consp org-special-ctrl-a/e)
23453 (car org-special-ctrl-a/e)
23454 org-special-ctrl-a/e))
23455 deactivate-mark refpos)
23456 (if (org-bound-and-true-p visual-line-mode)
23457 (beginning-of-visual-line 1)
23458 (beginning-of-line 1))
23459 (if (and arg (fboundp 'move-beginning-of-line))
23460 (call-interactively 'move-beginning-of-line)
23461 (if (bobp)
23463 (backward-char 1)
23464 (if (org-truely-invisible-p)
23465 (while (and (not (bobp)) (org-truely-invisible-p))
23466 (backward-char 1)
23467 (beginning-of-line 1))
23468 (forward-char 1))))
23469 (when special
23470 (cond
23471 ((and (looking-at org-complex-heading-regexp)
23472 (= (char-after (match-end 1)) ?\ ))
23473 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23474 (point-at-eol)))
23475 (goto-char
23476 (if (eq special t)
23477 (cond ((> pos refpos) refpos)
23478 ((= pos (point)) refpos)
23479 (t (point)))
23480 (cond ((> pos (point)) (point))
23481 ((not (eq last-command this-command)) (point))
23482 (t refpos)))))
23483 ((org-at-item-p)
23484 ;; Being at an item and not looking at an the item means point
23485 ;; was previously moved to beginning of a visual line, which
23486 ;; doesn't contain the item. Therefore, do nothing special,
23487 ;; just stay here.
23488 (when (looking-at org-list-full-item-re)
23489 ;; Set special position at first white space character after
23490 ;; bullet, and check-box, if any.
23491 (let ((after-bullet
23492 (let ((box (match-end 3)))
23493 (if (not box) (match-end 1)
23494 (let ((after (char-after box)))
23495 (if (and after (= after ? )) (1+ box) box))))))
23496 ;; Special case: Move point to special position when
23497 ;; currently after it or at beginning of line.
23498 (if (eq special t)
23499 (when (or (> pos after-bullet) (= (point) pos))
23500 (goto-char after-bullet))
23501 ;; Reversed case: Move point to special position when
23502 ;; point was already at beginning of line and command is
23503 ;; repeated.
23504 (when (and (= (point) pos) (eq last-command this-command))
23505 (goto-char after-bullet))))))))
23506 (org-no-warnings
23507 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23508 (setq disable-point-adjustment
23509 (or (not (invisible-p (point)))
23510 (not (invisible-p (max (point-min) (1- (point))))))))
23512 (defun org-end-of-line (&optional arg)
23513 "Go to the end of the line.
23514 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23515 tags on the first attempt, and only move to after the tags when
23516 the cursor is already beyond the end of the headline."
23517 (interactive "P")
23518 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23519 org-special-ctrl-a/e))
23520 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23521 'end-of-visual-line)
23522 ((fboundp 'move-end-of-line) 'move-end-of-line)
23523 (t 'end-of-line)))
23524 deactivate-mark)
23525 (if (or (not special) arg) (call-interactively move-fun)
23526 (let* ((element (save-excursion (beginning-of-line)
23527 (org-element-at-point)))
23528 (type (org-element-type element)))
23529 (cond
23530 ((memq type '(headline inlinetask))
23531 (let ((pos (point)))
23532 (beginning-of-line 1)
23533 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23534 (if (eq special t)
23535 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23536 (goto-char (match-beginning 1))
23537 (goto-char (match-end 0)))
23538 (if (or (< pos (match-end 0))
23539 (not (eq this-command last-command)))
23540 (goto-char (match-end 0))
23541 (goto-char (match-beginning 1))))
23542 (call-interactively move-fun))))
23543 ((outline-invisible-p (line-end-position))
23544 ;; If element is hidden, `move-end-of-line' would put point
23545 ;; after it. Use `end-of-line' to stay on current line.
23546 (call-interactively 'end-of-line))
23547 (t (call-interactively move-fun)))))
23548 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23549 (setq disable-point-adjustment
23550 (or (not (invisible-p (point)))
23551 (not (invisible-p (max (point-min) (1- (point))))))))
23553 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
23554 (define-key org-mode-map "\C-e" 'org-end-of-line)
23556 (defun org-backward-sentence (&optional arg)
23557 "Go to beginning of sentence, or beginning of table field.
23558 This will call `backward-sentence' or `org-table-beginning-of-field',
23559 depending on context."
23560 (interactive "P")
23561 (cond
23562 ((org-at-table-p) (call-interactively 'org-table-beginning-of-field))
23563 (t (call-interactively 'backward-sentence))))
23565 (defun org-forward-sentence (&optional arg)
23566 "Go to end of sentence, or end of table field.
23567 This will call `forward-sentence' or `org-table-end-of-field',
23568 depending on context."
23569 (interactive "P")
23570 (cond
23571 ((org-at-table-p) (call-interactively 'org-table-end-of-field))
23572 (t (call-interactively 'forward-sentence))))
23574 (define-key org-mode-map "\M-a" 'org-backward-sentence)
23575 (define-key org-mode-map "\M-e" 'org-forward-sentence)
23577 (defun org-kill-line (&optional arg)
23578 "Kill line, to tags or end of line."
23579 (interactive "P")
23580 (cond
23581 ((or (not org-special-ctrl-k)
23582 (bolp)
23583 (not (org-at-heading-p)))
23584 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
23585 org-ctrl-k-protect-subtree)
23586 (if (or (eq org-ctrl-k-protect-subtree 'error)
23587 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
23588 (user-error "C-k aborted as it would kill a hidden subtree")))
23589 (call-interactively
23590 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
23591 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
23592 (kill-region (point) (match-beginning 1))
23593 (org-set-tags nil t))
23594 (t (kill-region (point) (point-at-eol)))))
23596 (define-key org-mode-map "\C-k" 'org-kill-line)
23598 (defun org-yank (&optional arg)
23599 "Yank. If the kill is a subtree, treat it specially.
23600 This command will look at the current kill and check if is a single
23601 subtree, or a series of subtrees[1]. If it passes the test, and if the
23602 cursor is at the beginning of a line or after the stars of a currently
23603 empty headline, then the yank is handled specially. How exactly depends
23604 on the value of the following variables, both set by default.
23606 `org-yank-folded-subtrees'
23607 When set, the subtree(s) will be folded after insertion, but only
23608 if doing so would now swallow text after the yanked text.
23610 `org-yank-adjusted-subtrees'
23611 When set, the subtree will be promoted or demoted in order to
23612 fit into the local outline tree structure, which means that the
23613 level will be adjusted so that it becomes the smaller one of the
23614 two *visible* surrounding headings.
23616 Any prefix to this command will cause `yank' to be called directly with
23617 no special treatment. In particular, a simple \\[universal-argument] prefix \
23618 will just
23619 plainly yank the text as it is.
23621 \[1] The test checks if the first non-white line is a heading
23622 and if there are no other headings with fewer stars."
23623 (interactive "P")
23624 (org-yank-generic 'yank arg))
23626 (defun org-yank-generic (command arg)
23627 "Perform some yank-like command.
23629 This function implements the behavior described in the `org-yank'
23630 documentation. However, it has been generalized to work for any
23631 interactive command with similar behavior."
23633 ;; pretend to be command COMMAND
23634 (setq this-command command)
23636 (if arg
23637 (call-interactively command)
23639 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
23640 (and (org-kill-is-subtree-p)
23641 (or (bolp)
23642 (and (looking-at "[ \t]*$")
23643 (string-match
23644 "\\`\\*+\\'"
23645 (buffer-substring (point-at-bol) (point)))))))
23646 swallowp)
23647 (cond
23648 ((and subtreep org-yank-folded-subtrees)
23649 (let ((beg (point))
23650 end)
23651 (if (and subtreep org-yank-adjusted-subtrees)
23652 (org-paste-subtree nil nil 'for-yank)
23653 (call-interactively command))
23655 (setq end (point))
23656 (goto-char beg)
23657 (when (and (bolp) subtreep
23658 (not (setq swallowp
23659 (org-yank-folding-would-swallow-text beg end))))
23660 (org-with-limited-levels
23661 (or (looking-at org-outline-regexp)
23662 (re-search-forward org-outline-regexp-bol end t))
23663 (while (and (< (point) end) (looking-at org-outline-regexp))
23664 (hide-subtree)
23665 (org-cycle-show-empty-lines 'folded)
23666 (condition-case nil
23667 (outline-forward-same-level 1)
23668 (error (goto-char end))))))
23669 (when swallowp
23670 (message
23671 "Inserted text not folded because that would swallow text"))
23673 (goto-char end)
23674 (skip-chars-forward " \t\n\r")
23675 (beginning-of-line 1)
23676 (push-mark beg 'nomsg)))
23677 ((and subtreep org-yank-adjusted-subtrees)
23678 (let ((beg (point-at-bol)))
23679 (org-paste-subtree nil nil 'for-yank)
23680 (push-mark beg 'nomsg)))
23682 (call-interactively command))))))
23684 (defun org-yank-folding-would-swallow-text (beg end)
23685 "Would hide-subtree at BEG swallow any text after END?"
23686 (let (level)
23687 (org-with-limited-levels
23688 (save-excursion
23689 (goto-char beg)
23690 (when (or (looking-at org-outline-regexp)
23691 (re-search-forward org-outline-regexp-bol end t))
23692 (setq level (org-outline-level)))
23693 (goto-char end)
23694 (skip-chars-forward " \t\r\n\v\f")
23695 (if (or (eobp)
23696 (and (bolp) (looking-at org-outline-regexp)
23697 (<= (org-outline-level) level)))
23698 nil ; Nothing would be swallowed
23699 t))))) ; something would swallow
23701 (define-key org-mode-map "\C-y" 'org-yank)
23703 (defun org-truely-invisible-p ()
23704 "Check if point is at a character currently not visible.
23705 This version does not only check the character property, but also
23706 `visible-mode'."
23707 ;; Early versions of noutline don't have `outline-invisible-p'.
23708 (if (org-bound-and-true-p visible-mode)
23710 (outline-invisible-p)))
23712 (defun org-invisible-p2 ()
23713 "Check if point is at a character currently not visible."
23714 (save-excursion
23715 (if (and (eolp) (not (bobp))) (backward-char 1))
23716 ;; Early versions of noutline don't have `outline-invisible-p'.
23717 (outline-invisible-p)))
23719 (defun org-back-to-heading (&optional invisible-ok)
23720 "Call `outline-back-to-heading', but provide a better error message."
23721 (condition-case nil
23722 (outline-back-to-heading invisible-ok)
23723 (error (error "Before first headline at position %d in buffer %s"
23724 (point) (current-buffer)))))
23726 (defun org-before-first-heading-p ()
23727 "Before first heading?"
23728 (save-excursion
23729 (end-of-line)
23730 (null (re-search-backward org-outline-regexp-bol nil t))))
23732 (defun org-at-heading-p (&optional ignored)
23733 (outline-on-heading-p t))
23734 ;; Compatibility alias with Org versions < 7.8.03
23735 (defalias 'org-on-heading-p 'org-at-heading-p)
23737 (defun org-in-commented-heading-p (&optional no-inheritance)
23738 "Non-nil if point is under a commented heading.
23739 This function also checks ancestors of the current headline,
23740 unless optional argument NO-INHERITANCE is non-nil."
23741 (cond
23742 ((org-before-first-heading-p) nil)
23743 ((let ((headline (nth 4 (org-heading-components))))
23744 (and headline
23745 (let ((case-fold-search nil))
23746 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
23747 headline)))))
23748 (no-inheritance nil)
23750 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
23752 (defun org-at-comment-p nil
23753 "Is cursor in a commented line?"
23754 (save-excursion
23755 (save-match-data
23756 (beginning-of-line)
23757 (looking-at "^[ \t]*# "))))
23759 (defun org-at-drawer-p nil
23760 "Is cursor at a drawer keyword?"
23761 (save-excursion
23762 (move-beginning-of-line 1)
23763 (looking-at org-drawer-regexp)))
23765 (defun org-at-block-p nil
23766 "Is cursor at a block keyword?"
23767 (save-excursion
23768 (move-beginning-of-line 1)
23769 (looking-at org-block-regexp)))
23771 (defun org-point-at-end-of-empty-headline ()
23772 "If point is at the end of an empty headline, return t, else nil.
23773 If the heading only contains a TODO keyword, it is still still considered
23774 empty."
23775 (and (looking-at "[ \t]*$")
23776 (when org-todo-line-regexp
23777 (save-excursion
23778 (beginning-of-line 1)
23779 (let ((case-fold-search nil))
23780 (looking-at org-todo-line-regexp)
23781 (string= (match-string 3) ""))))))
23783 (defun org-at-heading-or-item-p ()
23784 (or (org-at-heading-p) (org-at-item-p)))
23786 (defun org-at-target-p ()
23787 (or (org-in-regexp org-radio-target-regexp)
23788 (org-in-regexp org-target-regexp)))
23789 ;; Compatibility alias with Org versions < 7.8.03
23790 (defalias 'org-on-target-p 'org-at-target-p)
23792 (defun org-up-heading-all (arg)
23793 "Move to the heading line of which the present line is a subheading.
23794 This function considers both visible and invisible heading lines.
23795 With argument, move up ARG levels."
23796 (if (fboundp 'outline-up-heading-all)
23797 (outline-up-heading-all arg) ; emacs 21 version of outline.el
23798 (outline-up-heading arg t))) ; emacs 22 version of outline.el
23800 (defun org-up-heading-safe ()
23801 "Move to the heading line of which the present line is a subheading.
23802 This version will not throw an error. It will return the level of the
23803 headline found, or nil if no higher level is found.
23805 Also, this function will be a lot faster than `outline-up-heading',
23806 because it relies on stars being the outline starters. This can really
23807 make a significant difference in outlines with very many siblings."
23808 (when (ignore-errors (org-back-to-heading t))
23809 (let ((level-up (1- (funcall outline-level))))
23810 (and (> level-up 0)
23811 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
23812 (funcall outline-level)))))
23814 (defun org-first-sibling-p ()
23815 "Is this heading the first child of its parents?"
23816 (interactive)
23817 (let ((re org-outline-regexp-bol)
23818 level l)
23819 (unless (org-at-heading-p t)
23820 (user-error "Not at a heading"))
23821 (setq level (funcall outline-level))
23822 (save-excursion
23823 (if (not (re-search-backward re nil t))
23825 (setq l (funcall outline-level))
23826 (< l level)))))
23828 (defun org-goto-sibling (&optional previous)
23829 "Goto the next sibling, even if it is invisible.
23830 When PREVIOUS is set, go to the previous sibling instead. Returns t
23831 when a sibling was found. When none is found, return nil and don't
23832 move point."
23833 (let ((fun (if previous 're-search-backward 're-search-forward))
23834 (pos (point))
23835 (re org-outline-regexp-bol)
23836 level l)
23837 (when (ignore-errors (org-back-to-heading t))
23838 (setq level (funcall outline-level))
23839 (catch 'exit
23840 (or previous (forward-char 1))
23841 (while (funcall fun re nil t)
23842 (setq l (funcall outline-level))
23843 (when (< l level) (goto-char pos) (throw 'exit nil))
23844 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
23845 (goto-char pos)
23846 nil))))
23848 (defun org-show-siblings ()
23849 "Show all siblings of the current headline."
23850 (save-excursion
23851 (while (org-goto-sibling) (org-flag-heading nil)))
23852 (save-excursion
23853 (while (org-goto-sibling 'previous)
23854 (org-flag-heading nil))))
23856 (defun org-goto-first-child ()
23857 "Goto the first child, even if it is invisible.
23858 Return t when a child was found. Otherwise don't move point and
23859 return nil."
23860 (let (level (pos (point)) (re org-outline-regexp-bol))
23861 (when (ignore-errors (org-back-to-heading t))
23862 (setq level (outline-level))
23863 (forward-char 1)
23864 (if (and (re-search-forward re nil t) (> (outline-level) level))
23865 (progn (goto-char (match-beginning 0)) t)
23866 (goto-char pos) nil))))
23868 (defun org-show-hidden-entry ()
23869 "Show an entry where even the heading is hidden."
23870 (save-excursion
23871 (org-show-entry)))
23873 (defun org-flag-heading (flag &optional entry)
23874 "Flag the current heading. FLAG non-nil means make invisible.
23875 When ENTRY is non-nil, show the entire entry."
23876 (save-excursion
23877 (org-back-to-heading t)
23878 ;; Check if we should show the entire entry
23879 (if entry
23880 (progn
23881 (org-show-entry)
23882 (save-excursion
23883 (and (outline-next-heading)
23884 (org-flag-heading nil))))
23885 (outline-flag-region (max (point-min) (1- (point)))
23886 (save-excursion (outline-end-of-heading) (point))
23887 flag))))
23889 (defun org-get-next-sibling ()
23890 "Move to next heading of the same level, and return point.
23891 If there is no such heading, return nil.
23892 This is like outline-next-sibling, but invisible headings are ok."
23893 (let ((level (funcall outline-level)))
23894 (outline-next-heading)
23895 (while (and (not (eobp)) (> (funcall outline-level) level))
23896 (outline-next-heading))
23897 (if (or (eobp) (< (funcall outline-level) level))
23899 (point))))
23901 (defun org-get-last-sibling ()
23902 "Move to previous heading of the same level, and return point.
23903 If there is no such heading, return nil."
23904 (let ((opoint (point))
23905 (level (funcall outline-level)))
23906 (outline-previous-heading)
23907 (when (and (/= (point) opoint) (outline-on-heading-p t))
23908 (while (and (> (funcall outline-level) level)
23909 (not (bobp)))
23910 (outline-previous-heading))
23911 (if (< (funcall outline-level) level)
23913 (point)))))
23915 (defun org-end-of-subtree (&optional invisible-ok to-heading)
23916 "Goto to the end of a subtree."
23917 ;; This contains an exact copy of the original function, but it uses
23918 ;; `org-back-to-heading', to make it work also in invisible
23919 ;; trees. And is uses an invisible-ok argument.
23920 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
23921 ;; Furthermore, when used inside Org, finding the end of a large subtree
23922 ;; with many children and grandchildren etc, this can be much faster
23923 ;; than the outline version.
23924 (org-back-to-heading invisible-ok)
23925 (let ((first t)
23926 (level (funcall outline-level)))
23927 (if (and (derived-mode-p 'org-mode) (< level 1000))
23928 ;; A true heading (not a plain list item), in Org-mode
23929 ;; This means we can easily find the end by looking
23930 ;; only for the right number of stars. Using a regexp to do
23931 ;; this is so much faster than using a Lisp loop.
23932 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
23933 (forward-char 1)
23934 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
23935 ;; something else, do it the slow way
23936 (while (and (not (eobp))
23937 (or first (> (funcall outline-level) level)))
23938 (setq first nil)
23939 (outline-next-heading)))
23940 (unless to-heading
23941 (if (memq (preceding-char) '(?\n ?\^M))
23942 (progn
23943 ;; Go to end of line before heading
23944 (forward-char -1)
23945 (if (memq (preceding-char) '(?\n ?\^M))
23946 ;; leave blank line before heading
23947 (forward-char -1))))))
23948 (point))
23950 (defun org-end-of-meta-data-and-drawers ()
23951 "Jump to the first text after meta data and drawers in the current entry.
23952 This will move over empty lines, lines with planning time stamps,
23953 clocking lines, and drawers."
23954 (org-back-to-heading t)
23955 (let ((end (save-excursion (outline-next-heading) (point)))
23956 (re (concat "\\(" org-drawer-regexp "\\)"
23957 "\\|" "[ \t]*" org-keyword-time-regexp)))
23958 (forward-line 1)
23959 (while (re-search-forward re end t)
23960 (if (not (match-end 1))
23961 ;; empty or planning line
23962 (forward-line 1)
23963 ;; a drawer, find the end
23964 (re-search-forward "^[ \t]*:END:" end 'move)
23965 (forward-line 1)))
23966 (and (re-search-forward "[^\n]" nil t) (backward-char 1))
23967 (point)))
23969 (defun org-forward-heading-same-level (arg &optional invisible-ok)
23970 "Move forward to the ARG'th subheading at same level as this one.
23971 Stop at the first and last subheadings of a superior heading.
23972 Normally this only looks at visible headings, but when INVISIBLE-OK is
23973 non-nil it will also look at invisible ones."
23974 (interactive "p")
23975 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
23976 (if (and arg (< arg 0))
23977 (goto-char (point-min))
23978 (outline-next-heading))
23979 (org-at-heading-p)
23980 (let ((level (- (match-end 0) (match-beginning 0) 1))
23981 (f (if (and arg (< arg 0))
23982 're-search-backward
23983 're-search-forward))
23984 (count (if arg (abs arg) 1))
23985 (result (point)))
23986 (while (and (prog1 (> count 0)
23987 (forward-char (if (and arg (< arg 0)) -1 1)))
23988 (funcall f org-outline-regexp-bol nil 'move))
23989 (let ((l (- (match-end 0) (match-beginning 0) 1)))
23990 (cond ((< l level) (setq count 0))
23991 ((and (= l level)
23992 (or invisible-ok
23993 (progn
23994 (goto-char (line-beginning-position))
23995 (not (outline-invisible-p)))))
23996 (setq count (1- count))
23997 (when (eq l level)
23998 (setq result (point)))))))
23999 (goto-char result))
24000 (beginning-of-line 1)))
24002 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24003 "Move backward to the ARG'th subheading at same level as this one.
24004 Stop at the first and last subheadings of a superior heading."
24005 (interactive "p")
24006 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24008 (defun org-next-block (arg &optional backward block-regexp)
24009 "Jump to the next block.
24010 With a prefix argument ARG, jump forward ARG many source blocks.
24011 When BACKWARD is non-nil, jump to the previous block.
24012 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24013 (interactive "p")
24014 (let ((re (or block-regexp org-block-regexp))
24015 (re-search-fn (or (and backward 're-search-backward)
24016 're-search-forward)))
24017 (if (looking-at re) (forward-char 1))
24018 (condition-case nil
24019 (funcall re-search-fn re nil nil arg)
24020 (error (user-error "No %s code blocks"
24021 (if backward "previous" "further" ))))
24022 (goto-char (match-beginning 0)) (org-show-context)))
24024 (defun org-previous-block (arg &optional block-regexp)
24025 "Jump to the previous block.
24026 With a prefix argument ARG, jump backward ARG many source blocks.
24027 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24028 (interactive "p")
24029 (org-next-block arg t block-regexp))
24031 (defun org-forward-paragraph ()
24032 "Move forward to beginning of next paragraph or equivalent.
24034 The function moves point to the beginning of the next visible
24035 structural element, which can be a paragraph, a table, a list
24036 item, etc. It also provides some special moves for convenience:
24038 - On an affiliated keyword, jump to the beginning of the
24039 relative element.
24040 - On an item or a footnote definition, move to the second
24041 element inside, if any.
24042 - On a table or a property drawer, jump after it.
24043 - On a verse or source block, stop after blank lines."
24044 (interactive)
24045 (when (eobp) (user-error "Cannot move further down"))
24046 (let* ((deactivate-mark nil)
24047 (element (org-element-at-point))
24048 (type (org-element-type element))
24049 (post-affiliated (org-element-property :post-affiliated element))
24050 (contents-begin (org-element-property :contents-begin element))
24051 (contents-end (org-element-property :contents-end element))
24052 (end (let ((end (org-element-property :end element)) (parent element))
24053 (while (and (setq parent (org-element-property :parent parent))
24054 (= (org-element-property :contents-end parent) end))
24055 (setq end (org-element-property :end parent)))
24056 end)))
24057 (cond ((not element)
24058 (skip-chars-forward " \r\t\n")
24059 (or (eobp) (beginning-of-line)))
24060 ;; On affiliated keywords, move to element's beginning.
24061 ((< (point) post-affiliated)
24062 (goto-char post-affiliated))
24063 ;; At a table row, move to the end of the table. Similarly,
24064 ;; at a node property, move to the end of the property
24065 ;; drawer.
24066 ((memq type '(node-property table-row))
24067 (goto-char (org-element-property
24068 :end (org-element-property :parent element))))
24069 ((memq type '(property-drawer table)) (goto-char end))
24070 ;; Consider blank lines as separators in verse and source
24071 ;; blocks to ease editing.
24072 ((memq type '(src-block verse-block))
24073 (when (eq type 'src-block)
24074 (setq contents-end
24075 (save-excursion (goto-char end)
24076 (skip-chars-backward " \r\t\n")
24077 (line-beginning-position))))
24078 (beginning-of-line)
24079 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24080 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24081 (goto-char end)
24082 (skip-chars-forward " \r\t\n")
24083 (if (= (point) contents-end) (goto-char end)
24084 (beginning-of-line))))
24085 ;; With no contents, just skip element.
24086 ((not contents-begin) (goto-char end))
24087 ;; If contents are invisible, skip the element altogether.
24088 ((outline-invisible-p (line-end-position))
24089 (case type
24090 (headline
24091 (org-with-limited-levels (outline-next-visible-heading 1)))
24092 ;; At a plain list, make sure we move to the next item
24093 ;; instead of skipping the whole list.
24094 (plain-list (forward-char)
24095 (org-forward-paragraph))
24096 (otherwise (goto-char end))))
24097 ((>= (point) contents-end) (goto-char end))
24098 ((>= (point) contents-begin)
24099 ;; This can only happen on paragraphs and plain lists.
24100 (case type
24101 (paragraph (goto-char end))
24102 ;; At a plain list, try to move to second element in
24103 ;; first item, if possible.
24104 (plain-list (end-of-line)
24105 (org-forward-paragraph))))
24106 ;; When contents start on the middle of a line (e.g. in
24107 ;; items and footnote definitions), try to reach first
24108 ;; element starting after current line.
24109 ((> (line-end-position) contents-begin)
24110 (end-of-line)
24111 (org-forward-paragraph))
24112 (t (goto-char contents-begin)))))
24114 (defun org-backward-paragraph ()
24115 "Move backward to start of previous paragraph or equivalent.
24117 The function moves point to the beginning of the current
24118 structural element, which can be a paragraph, a table, a list
24119 item, etc., or to the beginning of the previous visible one if
24120 point is already there. It also provides some special moves for
24121 convenience:
24123 - On an affiliated keyword, jump to the first one.
24124 - On a table or a property drawer, move to its beginning.
24125 - On a verse or source block, stop before blank lines."
24126 (interactive)
24127 (when (bobp) (user-error "Cannot move further up"))
24128 (let* ((deactivate-mark nil)
24129 (element (org-element-at-point))
24130 (type (org-element-type element))
24131 (contents-begin (org-element-property :contents-begin element))
24132 (contents-end (org-element-property :contents-end element))
24133 (post-affiliated (org-element-property :post-affiliated element))
24134 (begin (org-element-property :begin element)))
24135 (cond
24136 ((not element) (goto-char (point-min)))
24137 ((= (point) begin)
24138 (backward-char)
24139 (org-backward-paragraph))
24140 ((<= (point) post-affiliated) (goto-char begin))
24141 ((memq type '(node-property table-row))
24142 (goto-char (org-element-property
24143 :post-affiliated (org-element-property :parent element))))
24144 ((memq type '(property-drawer table)) (goto-char begin))
24145 ((memq type '(src-block verse-block))
24146 (when (eq type 'src-block)
24147 (setq contents-begin
24148 (save-excursion (goto-char begin) (forward-line) (point))))
24149 (if (= (point) contents-begin) (goto-char post-affiliated)
24150 ;; Inside a verse block, see blank lines as paragraph
24151 ;; separators.
24152 (let ((origin (point)))
24153 (skip-chars-backward " \r\t\n" contents-begin)
24154 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24155 (skip-chars-forward " \r\t\n" origin)
24156 (if (= (point) origin) (goto-char contents-begin)
24157 (beginning-of-line))))))
24158 ((not contents-begin) (goto-char (or post-affiliated begin)))
24159 ((eq type 'paragraph)
24160 (goto-char contents-begin)
24161 ;; When at first paragraph in an item or a footnote definition,
24162 ;; move directly to beginning of line.
24163 (let ((parent-contents
24164 (org-element-property
24165 :contents-begin (org-element-property :parent element))))
24166 (when (and parent-contents (= parent-contents contents-begin))
24167 (beginning-of-line))))
24168 ;; At the end of a greater element, move to the beginning of the
24169 ;; last element within.
24170 ((>= (point) contents-end)
24171 (goto-char (1- contents-end))
24172 (org-backward-paragraph))
24173 (t (goto-char (or post-affiliated begin))))
24174 ;; Ensure we never leave point invisible.
24175 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24177 (defun org-forward-element ()
24178 "Move forward by one element.
24179 Move to the next element at the same level, when possible."
24180 (interactive)
24181 (cond ((eobp) (user-error "Cannot move further down"))
24182 ((org-with-limited-levels (org-at-heading-p))
24183 (let ((origin (point)))
24184 (goto-char (org-end-of-subtree nil t))
24185 (unless (org-with-limited-levels (org-at-heading-p))
24186 (goto-char origin)
24187 (user-error "Cannot move further down"))))
24189 (let* ((elem (org-element-at-point))
24190 (end (org-element-property :end elem))
24191 (parent (org-element-property :parent elem)))
24192 (cond ((and parent (= (org-element-property :contents-end parent) end))
24193 (goto-char (org-element-property :end parent)))
24194 ((integer-or-marker-p end) (goto-char end))
24195 (t (message "No element at point")))))))
24197 (defun org-backward-element ()
24198 "Move backward by one element.
24199 Move to the previous element at the same level, when possible."
24200 (interactive)
24201 (cond ((bobp) (user-error "Cannot move further up"))
24202 ((org-with-limited-levels (org-at-heading-p))
24203 ;; At a headline, move to the previous one, if any, or stay
24204 ;; here.
24205 (let ((origin (point)))
24206 (org-with-limited-levels (org-backward-heading-same-level 1))
24207 ;; When current headline has no sibling above, move to its
24208 ;; parent.
24209 (when (= (point) origin)
24210 (or (org-with-limited-levels (org-up-heading-safe))
24211 (progn (goto-char origin)
24212 (user-error "Cannot move further up"))))))
24214 (let* ((elem (org-element-at-point))
24215 (beg (org-element-property :begin elem)))
24216 (cond
24217 ;; Move to beginning of current element if point isn't
24218 ;; there already.
24219 ((null beg) (message "No element at point"))
24220 ((/= (point) beg) (goto-char beg))
24221 (t (goto-char beg)
24222 (skip-chars-backward " \r\t\n")
24223 (unless (bobp)
24224 (let ((prev (org-element-at-point)))
24225 (goto-char (org-element-property :begin prev))
24226 (while (and (setq prev (org-element-property :parent prev))
24227 (<= (org-element-property :end prev) beg))
24228 (goto-char (org-element-property :begin prev)))))))))))
24230 (defun org-up-element ()
24231 "Move to upper element."
24232 (interactive)
24233 (if (org-with-limited-levels (org-at-heading-p))
24234 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24235 (let* ((elem (org-element-at-point))
24236 (parent (org-element-property :parent elem)))
24237 (if parent (goto-char (org-element-property :begin parent))
24238 (if (org-with-limited-levels (org-before-first-heading-p))
24239 (user-error "No surrounding element")
24240 (org-with-limited-levels (org-back-to-heading)))))))
24242 (defvar org-element-greater-elements)
24243 (defun org-down-element ()
24244 "Move to inner element."
24245 (interactive)
24246 (let ((element (org-element-at-point)))
24247 (cond
24248 ((memq (org-element-type element) '(plain-list table))
24249 (goto-char (org-element-property :contents-begin element))
24250 (forward-char))
24251 ((memq (org-element-type element) org-element-greater-elements)
24252 ;; If contents are hidden, first disclose them.
24253 (when (outline-invisible-p (line-end-position)) (org-cycle))
24254 (goto-char (or (org-element-property :contents-begin element)
24255 (user-error "No content for this element"))))
24256 (t (user-error "No inner element")))))
24258 (defun org-drag-element-backward ()
24259 "Move backward element at point."
24260 (interactive)
24261 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24262 (let* ((elem (org-element-at-point))
24263 (prev-elem
24264 (save-excursion
24265 (goto-char (org-element-property :begin elem))
24266 (skip-chars-backward " \r\t\n")
24267 (unless (bobp)
24268 (let* ((beg (org-element-property :begin elem))
24269 (prev (org-element-at-point))
24270 (up prev))
24271 (while (and (setq up (org-element-property :parent up))
24272 (<= (org-element-property :end up) beg))
24273 (setq prev up))
24274 prev)))))
24275 ;; Error out if no previous element or previous element is
24276 ;; a parent of the current one.
24277 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24278 (user-error "Cannot drag element backward")
24279 (let ((pos (point)))
24280 (org-element-swap-A-B prev-elem elem)
24281 (goto-char (+ (org-element-property :begin prev-elem)
24282 (- pos (org-element-property :begin elem)))))))))
24284 (defun org-drag-element-forward ()
24285 "Move forward element at point."
24286 (interactive)
24287 (let* ((pos (point))
24288 (elem (org-element-at-point)))
24289 (when (= (point-max) (org-element-property :end elem))
24290 (user-error "Cannot drag element forward"))
24291 (goto-char (org-element-property :end elem))
24292 (let ((next-elem (org-element-at-point)))
24293 (when (or (org-element-nested-p elem next-elem)
24294 (and (eq (org-element-type next-elem) 'headline)
24295 (not (eq (org-element-type elem) 'headline))))
24296 (goto-char pos)
24297 (user-error "Cannot drag element forward"))
24298 ;; Compute new position of point: it's shifted by NEXT-ELEM
24299 ;; body's length (without final blanks) and by the length of
24300 ;; blanks between ELEM and NEXT-ELEM.
24301 (let ((size-next (- (save-excursion
24302 (goto-char (org-element-property :end next-elem))
24303 (skip-chars-backward " \r\t\n")
24304 (forward-line)
24305 ;; Small correction if buffer doesn't end
24306 ;; with a newline character.
24307 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24308 (org-element-property :begin next-elem)))
24309 (size-blank (- (org-element-property :end elem)
24310 (save-excursion
24311 (goto-char (org-element-property :end elem))
24312 (skip-chars-backward " \r\t\n")
24313 (forward-line)
24314 (point)))))
24315 (org-element-swap-A-B elem next-elem)
24316 (goto-char (+ pos size-next size-blank))))))
24318 (defun org-drag-line-forward (arg)
24319 "Drag the line at point ARG lines forward."
24320 (interactive "p")
24321 (dotimes (n (abs arg))
24322 (let ((c (current-column)))
24323 (if (< 0 arg)
24324 (progn
24325 (beginning-of-line 2)
24326 (transpose-lines 1)
24327 (beginning-of-line 0))
24328 (transpose-lines 1)
24329 (beginning-of-line -1))
24330 (org-move-to-column c))))
24332 (defun org-drag-line-backward (arg)
24333 "Drag the line at point ARG lines backward."
24334 (interactive "p")
24335 (org-drag-line-forward (- arg)))
24337 (defun org-mark-element ()
24338 "Put point at beginning of this element, mark at end.
24340 Interactively, if this command is repeated or (in Transient Mark
24341 mode) if the mark is active, it marks the next element after the
24342 ones already marked."
24343 (interactive)
24344 (let (deactivate-mark)
24345 (if (and (org-called-interactively-p 'any)
24346 (or (and (eq last-command this-command) (mark t))
24347 (and transient-mark-mode mark-active)))
24348 (set-mark
24349 (save-excursion
24350 (goto-char (mark))
24351 (goto-char (org-element-property :end (org-element-at-point)))))
24352 (let ((element (org-element-at-point)))
24353 (end-of-line)
24354 (push-mark (org-element-property :end element) t t)
24355 (goto-char (org-element-property :begin element))))))
24357 (defun org-narrow-to-element ()
24358 "Narrow buffer to current element."
24359 (interactive)
24360 (let ((elem (org-element-at-point)))
24361 (cond
24362 ((eq (car elem) 'headline)
24363 (narrow-to-region
24364 (org-element-property :begin elem)
24365 (org-element-property :end elem)))
24366 ((memq (car elem) org-element-greater-elements)
24367 (narrow-to-region
24368 (org-element-property :contents-begin elem)
24369 (org-element-property :contents-end elem)))
24371 (narrow-to-region
24372 (org-element-property :begin elem)
24373 (org-element-property :end elem))))))
24375 (defun org-transpose-element ()
24376 "Transpose current and previous elements, keeping blank lines between.
24377 Point is moved after both elements."
24378 (interactive)
24379 (org-skip-whitespace)
24380 (let ((end (org-element-property :end (org-element-at-point))))
24381 (org-drag-element-backward)
24382 (goto-char end)))
24384 (defun org-unindent-buffer ()
24385 "Un-indent the visible part of the buffer.
24386 Relative indentation (between items, inside blocks, etc.) isn't
24387 modified."
24388 (interactive)
24389 (unless (eq major-mode 'org-mode)
24390 (user-error "Cannot un-indent a buffer not in Org mode"))
24391 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24392 unindent-tree ; For byte-compiler.
24393 (unindent-tree
24394 (function
24395 (lambda (contents)
24396 (mapc
24397 (lambda (element)
24398 (if (memq (org-element-type element) '(headline section))
24399 (funcall unindent-tree (org-element-contents element))
24400 (save-excursion
24401 (save-restriction
24402 (narrow-to-region
24403 (org-element-property :begin element)
24404 (org-element-property :end element))
24405 (org-do-remove-indentation)))))
24406 (reverse contents))))))
24407 (funcall unindent-tree (org-element-contents parse-tree))))
24409 (defun org-show-subtree ()
24410 "Show everything after this heading at deeper levels."
24411 (interactive)
24412 (outline-flag-region
24413 (point)
24414 (save-excursion
24415 (org-end-of-subtree t t))
24416 nil))
24418 (defun org-show-entry ()
24419 "Show the body directly following this heading.
24420 Show the heading too, if it is currently invisible."
24421 (interactive)
24422 (save-excursion
24423 (ignore-errors
24424 (org-back-to-heading t)
24425 (outline-flag-region
24426 (max (point-min) (1- (point)))
24427 (save-excursion
24428 (if (re-search-forward
24429 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24430 (match-beginning 1)
24431 (point-max)))
24432 nil)
24433 (org-cycle-hide-drawers 'children))))
24435 (defun org-make-options-regexp (kwds &optional extra)
24436 "Make a regular expression for keyword lines.
24437 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24438 when non-nil, is a regexp matching keywords names."
24439 (concat "^[ \t]*#\\+\\("
24440 (regexp-opt kwds)
24441 (and extra (concat (and kwds "\\|") extra))
24442 "\\):[ \t]*\\(.*\\)"))
24444 ;; Make isearch reveal the necessary context
24445 (defun org-isearch-end ()
24446 "Reveal context after isearch exits."
24447 (when isearch-success ; only if search was successful
24448 (if (featurep 'xemacs)
24449 ;; Under XEmacs, the hook is run in the correct place,
24450 ;; we directly show the context.
24451 (org-show-context 'isearch)
24452 ;; In Emacs the hook runs *before* restoring the overlays.
24453 ;; So we have to use a one-time post-command-hook to do this.
24454 ;; (Emacs 22 has a special variable, see function `org-mode')
24455 (unless (and (boundp 'isearch-mode-end-hook-quit)
24456 isearch-mode-end-hook-quit)
24457 ;; Only when the isearch was not quitted.
24458 (org-add-hook 'post-command-hook 'org-isearch-post-command
24459 'append 'local)))))
24461 (defun org-isearch-post-command ()
24462 "Remove self from hook, and show context."
24463 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24464 (org-show-context 'isearch))
24467 ;;;; Integration with and fixes for other packages
24469 ;;; Imenu support
24471 (defvar org-imenu-markers nil
24472 "All markers currently used by Imenu.")
24473 (make-variable-buffer-local 'org-imenu-markers)
24475 (defun org-imenu-new-marker (&optional pos)
24476 "Return a new marker for use by Imenu, and remember the marker."
24477 (let ((m (make-marker)))
24478 (move-marker m (or pos (point)))
24479 (push m org-imenu-markers)
24482 (defun org-imenu-get-tree ()
24483 "Produce the index for Imenu."
24484 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
24485 (setq org-imenu-markers nil)
24486 (let* ((n org-imenu-depth)
24487 (re (concat "^" (org-get-limited-outline-regexp)))
24488 (subs (make-vector (1+ n) nil))
24489 (last-level 0)
24490 m level head0 head)
24491 (save-excursion
24492 (save-restriction
24493 (widen)
24494 (goto-char (point-max))
24495 (while (re-search-backward re nil t)
24496 (setq level (org-reduced-level (funcall outline-level)))
24497 (when (and (<= level n)
24498 (looking-at org-complex-heading-regexp)
24499 (setq head0 (org-match-string-no-properties 4)))
24500 (setq head (org-link-display-format head0)
24501 m (org-imenu-new-marker))
24502 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
24503 (if (>= level last-level)
24504 (push (cons head m) (aref subs level))
24505 (push (cons head (aref subs (1+ level))) (aref subs level))
24506 (loop for i from (1+ level) to n do (aset subs i nil)))
24507 (setq last-level level)))))
24508 (aref subs 1)))
24510 (eval-after-load "imenu"
24511 '(progn
24512 (add-hook 'imenu-after-jump-hook
24513 (lambda ()
24514 (if (derived-mode-p 'org-mode)
24515 (org-show-context 'org-goto))))))
24517 (defun org-link-display-format (link)
24518 "Replace a link with its the description.
24519 If there is no description, use the link target."
24520 (save-match-data
24521 (if (string-match org-bracket-link-analytic-regexp link)
24522 (replace-match (if (match-end 5)
24523 (match-string 5 link)
24524 (concat (match-string 1 link)
24525 (match-string 3 link)))
24526 nil t link)
24527 link)))
24529 (defun org-toggle-link-display ()
24530 "Toggle the literal or descriptive display of links."
24531 (interactive)
24532 (if org-descriptive-links
24533 (progn (org-remove-from-invisibility-spec '(org-link))
24534 (org-restart-font-lock)
24535 (setq org-descriptive-links nil))
24536 (progn (add-to-invisibility-spec '(org-link))
24537 (org-restart-font-lock)
24538 (setq org-descriptive-links t))))
24540 ;; Speedbar support
24542 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
24543 "Overlay marking the agenda restriction line in speedbar.")
24544 (overlay-put org-speedbar-restriction-lock-overlay
24545 'face 'org-agenda-restriction-lock)
24546 (overlay-put org-speedbar-restriction-lock-overlay
24547 'help-echo "Agendas are currently limited to this item.")
24548 (org-detach-overlay org-speedbar-restriction-lock-overlay)
24550 (defun org-speedbar-set-agenda-restriction ()
24551 "Restrict future agenda commands to the location at point in speedbar.
24552 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
24553 (interactive)
24554 (require 'org-agenda)
24555 (let (p m tp np dir txt)
24556 (cond
24557 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24558 'org-imenu t))
24559 (setq m (get-text-property p 'org-imenu-marker))
24560 (with-current-buffer (marker-buffer m)
24561 (goto-char m)
24562 (org-agenda-set-restriction-lock 'subtree)))
24563 ((setq p (text-property-any (point-at-bol) (point-at-eol)
24564 'speedbar-function 'speedbar-find-file))
24565 (setq tp (previous-single-property-change
24566 (1+ p) 'speedbar-function)
24567 np (next-single-property-change
24568 tp 'speedbar-function)
24569 dir (speedbar-line-directory)
24570 txt (buffer-substring-no-properties (or tp (point-min))
24571 (or np (point-max))))
24572 (with-current-buffer (find-file-noselect
24573 (let ((default-directory dir))
24574 (expand-file-name txt)))
24575 (unless (derived-mode-p 'org-mode)
24576 (user-error "Cannot restrict to non-Org-mode file"))
24577 (org-agenda-set-restriction-lock 'file)))
24578 (t (user-error "Don't know how to restrict Org-mode's agenda")))
24579 (move-overlay org-speedbar-restriction-lock-overlay
24580 (point-at-bol) (point-at-eol))
24581 (setq current-prefix-arg nil)
24582 (org-agenda-maybe-redo)))
24584 (defvar speedbar-file-key-map)
24585 (declare-function speedbar-add-supported-extension "speedbar" (extension))
24586 (eval-after-load "speedbar"
24587 '(progn
24588 (speedbar-add-supported-extension ".org")
24589 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
24590 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
24591 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
24592 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
24593 (add-hook 'speedbar-visiting-tag-hook
24594 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
24596 ;;; Fixes and Hacks for problems with other packages
24598 (defun org--flyspell-object-check-p (element)
24599 "Non-nil when Flyspell can check object at point.
24600 ELEMENT is the element at point."
24601 (let ((object (save-excursion
24602 (when (org-looking-at-p "\\>") (backward-char))
24603 (org-element-context element))))
24604 (case (org-element-type object)
24605 ;; Prevent checks in links due to keybinding conflict with
24606 ;; Flyspell.
24607 ((code entity export-snippet inline-babel-call
24608 inline-src-block line-break latex-fragment link macro
24609 statistics-cookie target timestamp verbatim)
24610 nil)
24611 (footnote-reference
24612 ;; Only in inline footnotes, within the definition.
24613 (and (eq (org-element-property :type object) 'inline)
24614 (< (save-excursion
24615 (goto-char (org-element-property :begin object))
24616 (search-forward ":" nil t 2))
24617 (point))))
24618 (otherwise t))))
24620 (defun org-mode-flyspell-verify ()
24621 "Function used for `flyspell-generic-check-word-predicate'."
24622 (if (org-at-heading-p)
24623 ;; At a headline or an inlinetask, check title only. This is
24624 ;; faster than relying on `org-element-at-point'.
24625 (and (save-excursion (beginning-of-line)
24626 (and (let ((case-fold-search t))
24627 (not (looking-at "\\*+ END[ \t]*$")))
24628 (looking-at org-complex-heading-regexp)))
24629 (match-beginning 4)
24630 (>= (point) (match-beginning 4))
24631 (or (not (match-beginning 5))
24632 (< (point) (match-beginning 5))))
24633 (let* ((element (org-element-at-point))
24634 (post-affiliated (org-element-property :post-affiliated element)))
24635 (cond
24636 ;; Ignore checks in all affiliated keywords but captions.
24637 ((< (point) post-affiliated)
24638 (and (save-excursion
24639 (beginning-of-line)
24640 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
24641 (> (point) (match-end 0))
24642 (org--flyspell-object-check-p element)))
24643 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
24644 ((and org-log-into-drawer
24645 (let ((log (or (org-string-nw-p org-log-into-drawer) "LOGBOOK"))
24646 (parent element))
24647 (while (and parent (not (eq (org-element-type parent) 'drawer)))
24648 (setq parent (org-element-property :parent parent)))
24649 (and parent
24650 (eq (compare-strings
24651 log nil nil
24652 (org-element-property :drawer-name parent) nil nil t)
24653 t))))
24654 nil)
24656 (case (org-element-type element)
24657 ((comment quote-section) t)
24658 (comment-block
24659 ;; Allow checks between block markers, not on them.
24660 (and (> (line-beginning-position) post-affiliated)
24661 (save-excursion
24662 (end-of-line)
24663 (skip-chars-forward " \r\t\n")
24664 (< (point) (org-element-property :end element)))))
24665 ;; Arbitrary list of keywords where checks are meaningful.
24666 ;; Make sure point is on the value part of the element.
24667 (keyword
24668 (and (member (org-element-property :key element)
24669 '("DESCRIPTION" "TITLE"))
24670 (< (save-excursion
24671 (beginning-of-line) (search-forward ":") (point))
24672 (point))))
24673 ;; Check is globally allowed in paragraphs verse blocks and
24674 ;; table rows (after affiliated keywords) but some objects
24675 ;; must not be affected.
24676 ((paragraph table-row verse-block)
24677 (let ((cbeg (org-element-property :contents-begin element))
24678 (cend (org-element-property :contents-end element)))
24679 (and cbeg (>= (point) cbeg) (< (point) cend)
24680 (org--flyspell-object-check-p element))))))))))
24681 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
24683 (defun org-remove-flyspell-overlays-in (beg end)
24684 "Remove flyspell overlays in region."
24685 (and (org-bound-and-true-p flyspell-mode)
24686 (fboundp 'flyspell-delete-region-overlays)
24687 (flyspell-delete-region-overlays beg end)))
24689 (defvar flyspell-delayed-commands)
24690 (eval-after-load "flyspell"
24691 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
24693 ;; Make `bookmark-jump' shows the jump location if it was hidden.
24694 (eval-after-load "bookmark"
24695 '(if (boundp 'bookmark-after-jump-hook)
24696 ;; We can use the hook
24697 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
24698 ;; Hook not available, use advice
24699 (defadvice bookmark-jump (after org-make-visible activate)
24700 "Make the position visible."
24701 (org-bookmark-jump-unhide))))
24703 ;; Make sure saveplace shows the location if it was hidden
24704 (eval-after-load "saveplace"
24705 '(defadvice save-place-find-file-hook (after org-make-visible activate)
24706 "Make the position visible."
24707 (org-bookmark-jump-unhide)))
24709 ;; Make sure ecb shows the location if it was hidden
24710 (eval-after-load "ecb"
24711 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
24712 "Make hierarchy visible when jumping into location from ECB tree buffer."
24713 (if (derived-mode-p 'org-mode)
24714 (org-show-context))))
24716 (defun org-bookmark-jump-unhide ()
24717 "Unhide the current position, to show the bookmark location."
24718 (and (derived-mode-p 'org-mode)
24719 (or (outline-invisible-p)
24720 (save-excursion (goto-char (max (point-min) (1- (point))))
24721 (outline-invisible-p)))
24722 (org-show-context 'bookmark-jump)))
24724 (defun org-mark-jump-unhide ()
24725 "Make the point visible with `org-show-context' after jumping to the mark."
24726 (when (and (derived-mode-p 'org-mode)
24727 (outline-invisible-p))
24728 (org-show-context 'mark-goto)))
24730 (eval-after-load "simple"
24731 '(defadvice pop-to-mark-command (after org-make-visible activate)
24732 "Make the point visible with `org-show-context'."
24733 (org-mark-jump-unhide)))
24735 (eval-after-load "simple"
24736 '(defadvice exchange-point-and-mark (after org-make-visible activate)
24737 "Make the point visible with `org-show-context'."
24738 (org-mark-jump-unhide)))
24740 (eval-after-load "simple"
24741 '(defadvice pop-global-mark (after org-make-visible activate)
24742 "Make the point visible with `org-show-context'."
24743 (org-mark-jump-unhide)))
24745 ;; Make session.el ignore our circular variable
24746 (defvar session-globals-exclude)
24747 (eval-after-load "session"
24748 '(add-to-list 'session-globals-exclude 'org-mark-ring))
24750 ;;;; Finish up
24752 (provide 'org)
24754 (run-hooks 'org-load-hook)
24756 ;;; org.el ends here