org-capture.el (org-capture-fill-template): Small fix
[org-mode.git] / lisp / org-capture.el
blobc70868374378e25fd23b2abf0df397ef5c0df2ae
1 ;;; org-capture.el --- Fast note taking in Org-mode
3 ;; Copyright (C) 2010-2014 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains an alternative implementation of the functionality
28 ;; that used to be provided by org-remember.el. The implementation is more
29 ;; streamlined, can produce more target types (e.g. plain list items or
30 ;; table lines). Also, it does not use a temporary buffer for editing
31 ;; the captured entry - instead it uses an indirect buffer that visits
32 ;; the new entry already in the target buffer (this was an idea by Samuel
33 ;; Wales). John Wiegley's excellent `remember.el' is not needed anymore
34 ;; for this implementation, even though we borrow heavily from its ideas.
36 ;; This implementation heavily draws on ideas by James TD Smith and
37 ;; Samuel Wales, and, of cause, uses John Wiegley's remember.el as inspiration.
39 ;;; TODO
41 ;; - find a clever way to not always insert an annotation maybe a
42 ;; predicate function that can check for conditions for %a to be
43 ;; used. This could be one of the properties.
45 ;; - Should there be plist members that arrange for properties to be
46 ;; asked for, like James proposed in his RFC?
48 ;;; Code:
50 (eval-when-compile
51 (require 'cl))
52 (require 'org)
54 (declare-function org-datetree-find-date-create "org-datetree"
55 (date &optional keep-restriction))
56 (declare-function org-table-get-specials "org-table" ())
57 (declare-function org-table-goto-line "org-table" (N))
58 (declare-function org-pop-to-buffer-same-window "org-compat"
59 (&optional buffer-or-name norecord label))
60 (declare-function org-at-encrypted-entry-p "org-crypt" ())
61 (declare-function org-encrypt-entry "org-crypt" ())
62 (declare-function org-decrypt-entry "org-crypt" ())
64 (defvar org-remember-default-headline)
65 (defvar org-remember-templates)
66 (defvar org-table-hlines)
67 (defvar dired-buffers)
69 (defvar org-capture-clock-was-started nil
70 "Internal flag, noting if the clock was started.")
72 (defvar org-capture-last-stored-marker (make-marker)
73 "Marker pointing to the entry most recently stored with `org-capture'.")
75 ;; The following variable is scoped dynamically by org-protocol
76 ;; to indicate that the link properties have already been stored
77 (defvar org-capture-link-is-already-stored nil)
79 (defgroup org-capture nil
80 "Options concerning capturing new entries."
81 :tag "Org Capture"
82 :group 'org)
84 (defcustom org-capture-templates nil
85 "Templates for the creation of new entries.
87 Each entry is a list with the following items:
89 keys The keys that will select the template, as a string, characters
90 only, for example \"a\" for a template to be selected with a
91 single key, or \"bt\" for selection with two keys. When using
92 several keys, keys using the same prefix key must be together
93 in the list and preceded by a 2-element entry explaining the
94 prefix key, for example
96 (\"b\" \"Templates for marking stuff to buy\")
98 The \"C\" key is used by default for quick access to the
99 customization of the template variable. But if you want to use
100 that key for a template, you can.
102 description A short string describing the template, will be shown during
103 selection.
105 type The type of entry. Valid types are:
106 entry an Org-mode node, with a headline. Will be
107 filed as the child of the target entry or as
108 a top-level entry.
109 item a plain list item, will be placed in the
110 first plain list at the target
111 location.
112 checkitem a checkbox item. This differs from the
113 plain list item only is so far as it uses a
114 different default template.
115 table-line a new line in the first table at target location.
116 plain text to be inserted as it is.
118 target Specification of where the captured item should be placed.
119 In Org-mode files, targets usually define a node. Entries will
120 become children of this node, other types will be added to the
121 table or list in the body of this node.
123 Most target specifications contain a file name. If that file
124 name is the empty string, it defaults to `org-default-notes-file'.
125 A file can also be given as a variable, function, or Emacs Lisp
126 form.
128 Valid values are:
130 (file \"path/to/file\")
131 Text will be placed at the beginning or end of that file
133 (id \"id of existing org entry\")
134 File as child of this entry, or in the body of the entry
136 (file+headline \"path/to/file\" \"node headline\")
137 Fast configuration if the target heading is unique in the file
139 (file+olp \"path/to/file\" \"Level 1 heading\" \"Level 2\" ...)
140 For non-unique headings, the full path is safer
142 (file+regexp \"path/to/file\" \"regexp to find location\")
143 File to the entry matching regexp
145 (file+datetree \"path/to/file\")
146 Will create a heading in a date tree for today's date
148 (file+datetree+prompt \"path/to/file\")
149 Will create a heading in a date tree, prompts for date
151 (file+function \"path/to/file\" function-finding-location)
152 A function to find the right location in the file
154 (clock)
155 File to the entry that is currently being clocked
157 (function function-finding-location)
158 Most general way, write your own function to find both
159 file and location
161 template The template for creating the capture item. If you leave this
162 empty, an appropriate default template will be used. See below
163 for more details. Instead of a string, this may also be one of
165 (file \"/path/to/template-file\")
166 (function function-returning-the-template)
168 in order to get a template from a file, or dynamically
169 from a function.
171 The rest of the entry is a property list of additional options. Recognized
172 properties are:
174 :prepend Normally newly captured information will be appended at
175 the target location (last child, last table line,
176 last list item...). Setting this property will
177 change that.
179 :immediate-finish When set, do not offer to edit the information, just
180 file it away immediately. This makes sense if the
181 template only needs information that can be added
182 automatically.
184 :jump-to-captured When set, jump to the captured entry when finished.
186 :empty-lines Set this to the number of lines the should be inserted
187 before and after the new item. Default 0, only common
188 other value is 1.
190 :empty-lines-before Set this to the number of lines the should be inserted
191 before the new item. Overrides :empty-lines for the
192 number lines inserted before.
194 :empty-lines-after Set this to the number of lines the should be inserted
195 after the new item. Overrides :empty-lines for the
196 number of lines inserted after.
198 :clock-in Start the clock in this item.
200 :clock-keep Keep the clock running when filing the captured entry.
202 :clock-resume Start the interrupted clock when finishing the capture.
203 Note that :clock-keep has precedence over :clock-resume.
204 When setting both to `t', the current clock will run and
205 the previous one will not be resumed.
207 :unnarrowed Do not narrow the target buffer, simply show the
208 full buffer. Default is to narrow it so that you
209 only see the new stuff.
211 :table-line-pos Specification of the location in the table where the
212 new line should be inserted. It should be a string like
213 \"II-3\", meaning that the new line should become the
214 third line before the second horizontal separator line.
216 :kill-buffer If the target file was not yet visited by a buffer when
217 capture was invoked, kill the buffer again after capture
218 is finalized.
220 The template defines the text to be inserted. Often this is an
221 org-mode entry (so the first line should start with a star) that
222 will be filed as a child of the target headline. It can also be
223 freely formatted text. Furthermore, the following %-escapes will
224 be replaced with content and expanded in this order:
226 %[pathname] Insert the contents of the file given by `pathname'.
227 %(sexp) Evaluate elisp `(sexp)' and replace it with the results.
228 For convenience, %:keyword (see below) placeholders within
229 the expression will be expanded prior to this.
230 %<...> The result of format-time-string on the ... format specification.
231 %t Time stamp, date only.
232 %T Time stamp with date and time.
233 %u, %U Like the above, but inactive time stamps.
234 %i Initial content, copied from the active region. If %i is
235 indented, the entire inserted text will be indented as well.
236 %a Annotation, normally the link created with `org-store-link'.
237 %A Like %a, but prompt for the description part.
238 %l Like %a, but only insert the literal link.
239 %c Current kill ring head.
240 %x Content of the X clipboard.
241 %k Title of currently clocked task.
242 %K Link to currently clocked task.
243 %n User name (taken from the variable `user-full-name').
244 %f File visited by current buffer when org-capture was called.
245 %F Full path of the file or directory visited by current buffer.
246 %:keyword Specific information for certain link types, see below.
247 %^g Prompt for tags, with completion on tags in target file.
248 %^G Prompt for tags, with completion on all tags in all agenda files.
249 %^t Like %t, but prompt for date. Similarly %^T, %^u, %^U.
250 You may define a prompt like: %^{Please specify birthday}t
251 %^C Interactive selection of which kill or clip to use.
252 %^L Like %^C, but insert as link.
253 %^{prop}p Prompt the user for a value for property `prop'.
254 %^{prompt} Prompt the user for a string and replace this sequence with it.
255 A default value and a completion table ca be specified like this:
256 %^{prompt|default|completion2|completion3|...}.
257 %? After completing the template, position cursor here.
258 %\\n Insert the text entered at the nth %^{prompt}, where `n' is
259 a number, starting from 1.
261 Apart from these general escapes, you can access information specific to
262 the link type that is created. For example, calling `org-capture' in emails
263 or in Gnus will record the author and the subject of the message, which you
264 can access with \"%:from\" and \"%:subject\", respectively. Here is a
265 complete list of what is recorded for each link type.
267 Link type | Available information
268 ------------------------+------------------------------------------------------
269 bbdb | %:type %:name %:company
270 vm, wl, mh, mew, rmail, | %:type %:subject %:message-id
271 gnus | %:from %:fromname %:fromaddress
272 | %:to %:toname %:toaddress
273 | %:fromto (either \"to NAME\" or \"from NAME\")
274 | %:date %:date-timestamp (as active timestamp)
275 | %:date-timestamp-inactive (as inactive timestamp)
276 gnus | %:group, for messages also all email fields
277 w3, w3m | %:type %:url
278 info | %:type %:file %:node
279 calendar | %:type %:date"
280 :group 'org-capture
281 :version "24.1"
282 :type
283 '(repeat
284 (choice :value ("" "" entry (file "~/org/notes.org") "")
285 (list :tag "Multikey description"
286 (string :tag "Keys ")
287 (string :tag "Description"))
288 (list :tag "Template entry"
289 (string :tag "Keys ")
290 (string :tag "Description ")
291 (choice :tag "Capture Type " :value entry
292 (const :tag "Org entry" entry)
293 (const :tag "Plain list item" item)
294 (const :tag "Checkbox item" checkitem)
295 (const :tag "Plain text" plain)
296 (const :tag "Table line" table-line))
297 (choice :tag "Target location"
298 (list :tag "File"
299 (const :format "" file)
300 (file :tag " File"))
301 (list :tag "ID"
302 (const :format "" id)
303 (string :tag " ID"))
304 (list :tag "File & Headline"
305 (const :format "" file+headline)
306 (file :tag " File ")
307 (string :tag " Headline"))
308 (list :tag "File & Outline path"
309 (const :format "" file+olp)
310 (file :tag " File ")
311 (repeat :tag "Outline path" :inline t
312 (string :tag "Headline")))
313 (list :tag "File & Regexp"
314 (const :format "" file+regexp)
315 (file :tag " File ")
316 (regexp :tag " Regexp"))
317 (list :tag "File & Date tree"
318 (const :format "" file+datetree)
319 (file :tag " File"))
320 (list :tag "File & Date tree, prompt for date"
321 (const :format "" file+datetree+prompt)
322 (file :tag " File"))
323 (list :tag "File & function"
324 (const :format "" file+function)
325 (file :tag " File ")
326 (sexp :tag " Function"))
327 (list :tag "Current clocking task"
328 (const :format "" clock))
329 (list :tag "Function"
330 (const :format "" function)
331 (sexp :tag " Function")))
332 (choice :tag "Template"
333 (string)
334 (list :tag "File"
335 (const :format "" file)
336 (file :tag "Template file"))
337 (list :tag "Function"
338 (const :format "" function)
339 (function :tag "Template function")))
340 (plist :inline t
341 ;; Give the most common options as checkboxes
342 :options (((const :format "%v " :prepend) (const t))
343 ((const :format "%v " :immediate-finish) (const t))
344 ((const :format "%v " :jump-to-captured) (const t))
345 ((const :format "%v " :empty-lines) (const 1))
346 ((const :format "%v " :empty-lines-before) (const 1))
347 ((const :format "%v " :empty-lines-after) (const 1))
348 ((const :format "%v " :clock-in) (const t))
349 ((const :format "%v " :clock-keep) (const t))
350 ((const :format "%v " :clock-resume) (const t))
351 ((const :format "%v " :unnarrowed) (const t))
352 ((const :format "%v " :table-line-pos) (const t))
353 ((const :format "%v " :kill-buffer) (const t))))))))
355 (defcustom org-capture-before-finalize-hook nil
356 "Hook that is run right before a capture process is finalized.
357 The capture buffer is still current when this hook runs and it is
358 widened to the entire buffer."
359 :group 'org-capture
360 :version "24.1"
361 :type 'hook)
363 (defcustom org-capture-after-finalize-hook nil
364 "Hook that is run right after a capture process is finalized.
365 Suitable for window cleanup."
366 :group 'org-capture
367 :version "24.1"
368 :type 'hook)
370 (defcustom org-capture-prepare-finalize-hook nil
371 "Hook that is run before the finalization starts.
372 The capture buffer is current and still narrowed."
373 :group 'org-capture
374 :version "24.1"
375 :type 'hook)
377 (defcustom org-capture-bookmark t
378 "When non-nil, add a bookmark pointing at the last stored
379 position when capturing."
380 :group 'org-capture
381 :version "24.3"
382 :type 'boolean)
384 ;;; The property list for keeping information about the capture process
386 (defvar org-capture-plist nil
387 "Plist for the current capture process, global, to avoid having to pass it.")
389 (defvar org-capture-current-plist nil
390 "Local variable holding the plist in a capture buffer.
391 This is used to store the plist for use when finishing a capture process
392 because another such process might have changed the global variable by then.
394 Each time a new capture buffer has been set up, the global `org-capture-plist'
395 is copied to this variable, which is local in the indirect buffer.")
397 (defvar org-capture-clock-keep nil
398 "Local variable to store the value of the :clock-keep parameter.
399 This is needed in case org-capture-finalize is called interactively.")
401 (defun org-capture-put (&rest stuff)
402 "Add properties to the capture property list `org-capture-plist'."
403 (while stuff
404 (setq org-capture-plist (plist-put org-capture-plist
405 (pop stuff) (pop stuff)))))
406 (defun org-capture-get (prop &optional local)
407 "Get properties from the capture property list `org-capture-plist'.
408 When LOCAL is set, use the local variable `org-capture-current-plist',
409 this is necessary after initialization of the capture process,
410 to avoid conflicts with other active capture processes."
411 (plist-get (if local org-capture-current-plist org-capture-plist) prop))
413 (defun org-capture-member (prop &optional local)
414 "Is PROP a property in `org-capture-plist'.
415 When LOCAL is set, use the local variable `org-capture-current-plist',
416 this is necessary after initialization of the capture process,
417 to avoid conflicts with other active capture processes."
418 (plist-get (if local org-capture-current-plist org-capture-plist) prop))
420 ;;; The minor mode
422 (defvar org-capture-mode-map (make-sparse-keymap)
423 "Keymap for `org-capture-mode', a minor mode.
424 Use this map to set additional keybindings for when Org-mode is used
425 for a capture buffer.")
427 (defvar org-capture-mode-hook nil
428 "Hook for the minor `org-capture-mode'.")
430 (define-minor-mode org-capture-mode
431 "Minor mode for special key bindings in a capture buffer.
433 Turning on this mode runs the normal hook `org-capture-mode-hook'."
434 nil " Rem" org-capture-mode-map
435 (org-set-local
436 'header-line-format
437 "Capture buffer. Finish `C-c C-c', refile `C-c C-w', abort `C-c C-k'."))
438 (define-key org-capture-mode-map "\C-c\C-c" 'org-capture-finalize)
439 (define-key org-capture-mode-map "\C-c\C-k" 'org-capture-kill)
440 (define-key org-capture-mode-map "\C-c\C-w" 'org-capture-refile)
442 ;;; The main commands
444 (defvar org-capture-initial nil)
445 (defvar org-capture-entry nil)
447 ;;;###autoload
448 (defun org-capture-string (string &optional keys)
449 "Capture STRING with the template selected by KEYS."
450 (interactive "sInitial text: \n")
451 (let ((org-capture-initial string)
452 (org-capture-entry (org-capture-select-template keys)))
453 (org-capture)))
455 (defcustom org-capture-templates-contexts nil
456 "Alist of capture templates and valid contexts.
458 For example, if you have a capture template \"c\" and you want
459 this template to be accessible only from `message-mode' buffers,
460 use this:
462 '((\"c\" ((in-mode . \"message-mode\"))))
464 Here are the available contexts definitions:
466 in-file: command displayed only in matching files
467 in-mode: command displayed only in matching modes
468 not-in-file: command not displayed in matching files
469 not-in-mode: command not displayed in matching modes
470 in-buffer: command displayed only in matching buffers
471 not-in-buffer: command not displayed in matching buffers
472 [function]: a custom function taking no argument
474 If you define several checks, the agenda command will be
475 accessible if there is at least one valid check.
477 You can also bind a key to another agenda custom command
478 depending on contextual rules.
480 '((\"c\" \"d\" ((in-mode . \"message-mode\"))))
482 Here it means: in `message-mode buffers', use \"c\" as the
483 key for the capture template otherwise associated with \"d\".
484 \(The template originally associated with \"d\" is not displayed
485 to avoid duplicates.)"
486 :version "24.3"
487 :group 'org-capture
488 :type '(repeat (list :tag "Rule"
489 (string :tag " Capture key")
490 (string :tag "Replace by template")
491 (repeat :tag "Available when"
492 (choice
493 (cons :tag "Condition"
494 (choice
495 (const :tag "In file" in-file)
496 (const :tag "Not in file" not-in-file)
497 (const :tag "In buffer" in-buffer)
498 (const :tag "Not in buffer" not-in-buffer)
499 (const :tag "In mode" in-mode)
500 (const :tag "Not in mode" not-in-mode))
501 (regexp))
502 (function :tag "Custom function"))))))
504 (defcustom org-capture-use-agenda-date nil
505 "Non-nil means use the date at point when capturing from agendas.
506 When nil, you can still capture using the date at point with \\[org-agenda-capture]."
507 :group 'org-capture
508 :version "24.3"
509 :type 'boolean)
511 ;;;###autoload
512 (defun org-capture (&optional goto keys)
513 "Capture something.
514 \\<org-capture-mode-map>
515 This will let you select a template from `org-capture-templates', and then
516 file the newly captured information. The text is immediately inserted
517 at the target location, and an indirect buffer is shown where you can
518 edit it. Pressing \\[org-capture-finalize] brings you back to the previous state
519 of Emacs, so that you can continue your work.
521 When called interactively with a \\[universal-argument] prefix argument GOTO, don't capture
522 anything, just go to the file/headline where the selected template
523 stores its notes. With a double prefix argument \
524 \\[universal-argument] \\[universal-argument], go to the last note
525 stored.
527 When called with a `C-0' (zero) prefix, insert a template at point.
529 ELisp programs can set KEYS to a string associated with a template
530 in `org-capture-templates'. In this case, interactive selection
531 will be bypassed.
533 If `org-capture-use-agenda-date' is non-nil, capturing from the
534 agenda will use the date at point as the default date. Then, a
535 `C-1' prefix will tell the capture process to use the HH:MM time
536 of the day at point (if any) or the current HH:MM time."
537 (interactive "P")
538 (when (and org-capture-use-agenda-date
539 (eq major-mode 'org-agenda-mode))
540 (setq org-overriding-default-time
541 (org-get-cursor-date (equal goto 1))))
542 (cond
543 ((equal goto '(4)) (org-capture-goto-target))
544 ((equal goto '(16)) (org-capture-goto-last-stored))
546 ;; FIXME: Are these needed?
547 (let* ((orig-buf (current-buffer))
548 (annotation (if (and (boundp 'org-capture-link-is-already-stored)
549 org-capture-link-is-already-stored)
550 (plist-get org-store-link-plist :annotation)
551 (ignore-errors (org-store-link nil))))
552 (entry (or org-capture-entry (org-capture-select-template keys)))
553 initial)
554 (setq initial (or org-capture-initial
555 (and (org-region-active-p)
556 (buffer-substring (point) (mark)))))
557 (when (stringp initial)
558 (remove-text-properties 0 (length initial) '(read-only t) initial))
559 (when (stringp annotation)
560 (remove-text-properties 0 (length annotation)
561 '(read-only t) annotation))
562 (cond
563 ((equal entry "C")
564 (customize-variable 'org-capture-templates))
565 ((equal entry "q")
566 (error "Abort"))
568 (org-capture-set-plist entry)
569 (org-capture-get-template)
570 (org-capture-put :original-buffer orig-buf
571 :original-file (or (buffer-file-name orig-buf)
572 (and (featurep 'dired)
573 (car (rassq orig-buf
574 dired-buffers))))
575 :original-file-nondirectory
576 (and (buffer-file-name orig-buf)
577 (file-name-nondirectory
578 (buffer-file-name orig-buf)))
579 :annotation annotation
580 :initial initial
581 :return-to-wconf (current-window-configuration)
582 :default-time
583 (or org-overriding-default-time
584 (org-current-time)))
585 (org-capture-set-target-location)
586 (condition-case error
587 (org-capture-put :template (org-capture-fill-template))
588 ((error quit)
589 (if (get-buffer "*Capture*") (kill-buffer "*Capture*"))
590 (error "Capture abort: %s" error)))
592 (setq org-capture-clock-keep (org-capture-get :clock-keep))
593 (if (equal goto 0)
594 ;;insert at point
595 (org-capture-insert-template-here)
596 (condition-case error
597 (org-capture-place-template
598 (equal (car (org-capture-get :target)) 'function))
599 ((error quit)
600 (if (and (buffer-base-buffer (current-buffer))
601 (string-match "\\`CAPTURE-" (buffer-name)))
602 (kill-buffer (current-buffer)))
603 (set-window-configuration (org-capture-get :return-to-wconf))
604 (error "Capture template `%s': %s"
605 (org-capture-get :key)
606 (nth 1 error))))
607 (if (and (derived-mode-p 'org-mode)
608 (org-capture-get :clock-in))
609 (condition-case nil
610 (progn
611 (if (org-clock-is-active)
612 (org-capture-put :interrupted-clock
613 (copy-marker org-clock-marker)))
614 (org-clock-in)
615 (org-set-local 'org-capture-clock-was-started t))
616 (error
617 "Could not start the clock in this capture buffer")))
618 (if (org-capture-get :immediate-finish)
619 (org-capture-finalize)))))))))
621 (defun org-capture-get-template ()
622 "Get the template from a file or a function if necessary."
623 (let ((txt (org-capture-get :template)) file)
624 (cond
625 ((and (listp txt) (eq (car txt) 'file))
626 (if (file-exists-p
627 (setq file (expand-file-name (nth 1 txt) org-directory)))
628 (setq txt (org-file-contents file))
629 (setq txt (format "* Template file %s not found" (nth 1 txt)))))
630 ((and (listp txt) (eq (car txt) 'function))
631 (if (fboundp (nth 1 txt))
632 (setq txt (funcall (nth 1 txt)))
633 (setq txt (format "* Template function %s not found" (nth 1 txt)))))
634 ((not txt) (setq txt ""))
635 ((stringp txt))
636 (t (setq txt "* Invalid capture template")))
637 (org-capture-put :template txt)))
639 (defun org-capture-finalize (&optional stay-with-capture)
640 "Finalize the capture process.
641 With prefix argument STAY-WITH-CAPTURE, jump to the location of the
642 captured item after finalizing."
643 (interactive "P")
644 (when (org-capture-get :jump-to-captured)
645 (setq stay-with-capture t))
646 (unless (and org-capture-mode
647 (buffer-base-buffer (current-buffer)))
648 (error "This does not seem to be a capture buffer for Org-mode"))
650 (run-hooks 'org-capture-prepare-finalize-hook)
652 ;; Did we start the clock in this capture buffer?
653 (when (and org-capture-clock-was-started
654 org-clock-marker (marker-buffer org-clock-marker)
655 (equal (marker-buffer org-clock-marker) (buffer-base-buffer))
656 (> org-clock-marker (point-min))
657 (< org-clock-marker (point-max)))
658 ;; Looks like the clock we started is still running. Clock out.
659 (when (not org-capture-clock-keep) (let (org-log-note-clock-out) (org-clock-out)))
660 (when (and (not org-capture-clock-keep)
661 (org-capture-get :clock-resume 'local)
662 (markerp (org-capture-get :interrupted-clock 'local))
663 (buffer-live-p (marker-buffer
664 (org-capture-get :interrupted-clock 'local))))
665 (let ((clock-in-task (org-capture-get :interrupted-clock 'local)))
666 (org-with-point-at clock-in-task
667 (org-clock-in)))
668 (message "Interrupted clock has been resumed")))
670 (let ((beg (point-min))
671 (end (point-max))
672 (abort-note nil))
673 ;; Store the size of the capture buffer
674 (org-capture-put :captured-entry-size (- (point-max) (point-min)))
675 (widen)
676 ;; Store the insertion point in the target buffer
677 (org-capture-put :insertion-point (point))
679 (if org-note-abort
680 (let ((m1 (org-capture-get :begin-marker 'local))
681 (m2 (org-capture-get :end-marker 'local)))
682 (if (and m1 m2 (= m1 beg) (= m2 end))
683 (progn
684 (setq m2 (if (cdr (assoc 'heading org-blank-before-new-entry))
685 m2 (1+ m2))
686 m2 (if (< (point-max) m2) (point-max) m2))
687 (setq abort-note 'clean)
688 (kill-region m1 m2))
689 (setq abort-note 'dirty)))
691 ;; Make sure that the empty lines after are correct
692 (when (and (> (point-max) end) ; indeed, the buffer was still narrowed
693 (member (org-capture-get :type 'local)
694 '(entry item checkitem plain)))
695 (save-excursion
696 (goto-char end)
697 (or (bolp) (newline))
698 (org-capture-empty-lines-after
699 (or (org-capture-get :empty-lines-after 'local)
700 (org-capture-get :empty-lines 'local) 0))))
701 ;; Postprocessing: Update Statistics cookies, do the sorting
702 (when (derived-mode-p 'org-mode)
703 (save-excursion
704 (when (ignore-errors (org-back-to-heading))
705 (org-update-parent-todo-statistics)
706 (org-update-checkbox-count)))
707 ;; FIXME Here we should do the sorting
708 ;; If we have added a table line, maybe recompute?
709 (when (and (eq (org-capture-get :type 'local) 'table-line)
710 (org-at-table-p))
711 (if (org-table-get-stored-formulas)
712 (org-table-recalculate 'all) ;; FIXME: Should we iterate???
713 (org-table-align))))
714 ;; Store this place as the last one where we stored something
715 ;; Do the marking in the base buffer, so that it makes sense after
716 ;; the indirect buffer has been killed.
717 (when org-capture-bookmark
718 (org-capture-bookmark-last-stored-position))
720 ;; Run the hook
721 (run-hooks 'org-capture-before-finalize-hook))
723 (when (org-capture-get :decrypted)
724 (save-excursion
725 (goto-char (org-capture-get :decrypted))
726 (org-encrypt-entry)))
728 ;; Kill the indirect buffer
729 (save-buffer)
730 (let ((return-wconf (org-capture-get :return-to-wconf 'local))
731 (new-buffer (org-capture-get :new-buffer 'local))
732 (kill-buffer (org-capture-get :kill-buffer 'local))
733 (base-buffer (buffer-base-buffer (current-buffer))))
735 ;; Kill the indirect buffer
736 (kill-buffer (current-buffer))
738 ;; Narrow back the target buffer to its previous state
739 (with-current-buffer (org-capture-get :buffer)
740 (let ((reg (org-capture-get :initial-target-region))
741 (pos (org-capture-get :initial-target-position))
742 (ipt (org-capture-get :insertion-point))
743 (size (org-capture-get :captured-entry-size)))
744 (if (not reg)
745 (widen)
746 (cond ((< ipt (car reg))
747 ;; insertion point is before the narrowed region
748 (narrow-to-region (+ size (car reg)) (+ size (cdr reg))))
749 ((> ipt (cdr reg))
750 ;; insertion point is after the narrowed region
751 (narrow-to-region (car reg) (cdr reg)))
753 ;; insertion point is within the narrowed region
754 (narrow-to-region (car reg) (+ size (cdr reg)))))
755 ;; now place back the point at its original position
756 (if (< ipt (car reg))
757 (goto-char (+ size pos))
758 (goto-char (if (< ipt pos) (+ size pos) pos))))))
760 ;; Kill the target buffer if that is desired
761 (when (and base-buffer new-buffer kill-buffer)
762 (with-current-buffer base-buffer (save-buffer))
763 (kill-buffer base-buffer))
765 ;; Restore the window configuration before capture
766 (set-window-configuration return-wconf))
768 (run-hooks 'org-capture-after-finalize-hook)
769 ;; Special cases
770 (cond
771 (abort-note
772 (cond
773 ((equal abort-note 'clean)
774 (message "Capture process aborted and target buffer cleaned up"))
775 ((equal abort-note 'dirty)
776 (error "Capture process aborted, but target buffer could not be cleaned up correctly"))))
777 (stay-with-capture
778 (org-capture-goto-last-stored)))
779 ;; Return if we did store something
780 (not abort-note)))
782 (defun org-capture-refile ()
783 "Finalize the current capture and then refile the entry.
784 Refiling is done from the base buffer, because the indirect buffer is then
785 already gone. Any prefix argument will be passed to the refile command."
786 (interactive)
787 (unless (eq (org-capture-get :type 'local) 'entry)
788 (error
789 "Refiling from a capture buffer makes only sense for `entry'-type templates"))
790 (let ((pos (point))
791 (base (buffer-base-buffer (current-buffer)))
792 (org-refile-for-capture t))
793 (save-window-excursion
794 (with-current-buffer (or base (current-buffer))
795 (save-excursion
796 (save-restriction
797 (widen)
798 (goto-char pos)
799 (call-interactively 'org-refile)))))
800 (org-capture-finalize)))
802 (defun org-capture-kill ()
803 "Abort the current capture process."
804 (interactive)
805 ;; FIXME: This does not do the right thing, we need to remove the
806 ;; new stuff by hand it is easy: undo, then kill the buffer
807 (let ((org-note-abort t)
808 (org-capture-before-finalize-hook nil))
809 (org-capture-finalize)))
811 (defun org-capture-goto-last-stored ()
812 "Go to the location where the last capture note was stored."
813 (interactive)
814 (org-goto-marker-or-bmk org-capture-last-stored-marker
815 "org-capture-last-stored")
816 (message "This is the last note stored by a capture process"))
818 ;;; Supporting functions for handling the process
820 (defun org-capture-put-target-region-and-position ()
821 "Store the initial region with `org-capture-put'."
822 (org-capture-put
823 :initial-target-region
824 ;; Check if the buffer is currently narrowed
825 (when (/= (buffer-size) (- (point-max) (point-min)))
826 (cons (point-min) (point-max))))
827 ;; store the current point
828 (org-capture-put :initial-target-position (point)))
830 (defvar org-time-was-given) ; dynamically scoped parameter
831 (defun org-capture-set-target-location (&optional target)
832 "Find TARGET buffer and position.
833 Store them in the capture property list."
834 (let ((target-entry-p t) decrypted-hl-pos)
835 (setq target (or target (org-capture-get :target)))
836 (save-excursion
837 (cond
838 ((eq (car target) 'file)
839 (set-buffer (org-capture-target-buffer (nth 1 target)))
840 (org-capture-put-target-region-and-position)
841 (widen)
842 (setq target-entry-p nil))
844 ((eq (car target) 'id)
845 (let ((loc (org-id-find (nth 1 target))))
846 (if (not loc)
847 (error "Cannot find target ID \"%s\"" (nth 1 target))
848 (set-buffer (org-capture-target-buffer (car loc)))
849 (widen)
850 (org-capture-put-target-region-and-position)
851 (goto-char (cdr loc)))))
853 ((eq (car target) 'file+headline)
854 (set-buffer (org-capture-target-buffer (nth 1 target)))
855 (org-capture-put-target-region-and-position)
856 (widen)
857 (let ((hd (nth 2 target)))
858 (goto-char (point-min))
859 (unless (derived-mode-p 'org-mode)
860 (error
861 "Target buffer \"%s\" for file+headline should be in Org mode"
862 (current-buffer)))
863 (if (re-search-forward
864 (format org-complex-heading-regexp-format (regexp-quote hd))
865 nil t)
866 (goto-char (point-at-bol))
867 (goto-char (point-max))
868 (or (bolp) (insert "\n"))
869 (insert "* " hd "\n")
870 (beginning-of-line 0))))
872 ((eq (car target) 'file+olp)
873 (let ((m (org-find-olp
874 (cons (org-capture-expand-file (nth 1 target))
875 (cddr target)))))
876 (set-buffer (marker-buffer m))
877 (org-capture-put-target-region-and-position)
878 (widen)
879 (goto-char m)))
881 ((eq (car target) 'file+regexp)
882 (set-buffer (org-capture-target-buffer (nth 1 target)))
883 (org-capture-put-target-region-and-position)
884 (widen)
885 (goto-char (point-min))
886 (if (re-search-forward (nth 2 target) nil t)
887 (progn
888 (goto-char (if (org-capture-get :prepend)
889 (match-beginning 0) (match-end 0)))
890 (org-capture-put :exact-position (point))
891 (setq target-entry-p (and (derived-mode-p 'org-mode) (org-at-heading-p))))
892 (error "No match for target regexp in file %s" (nth 1 target))))
894 ((memq (car target) '(file+datetree file+datetree+prompt))
895 (require 'org-datetree)
896 (set-buffer (org-capture-target-buffer (nth 1 target)))
897 (org-capture-put-target-region-and-position)
898 (widen)
899 ;; Make a date tree entry, with the current date (or yesterday,
900 ;; if we are extending dates for a couple of hours)
901 (org-datetree-find-date-create
902 (calendar-gregorian-from-absolute
903 (cond
904 (org-overriding-default-time
905 ;; use the overriding default time
906 (time-to-days org-overriding-default-time))
908 ((eq (car target) 'file+datetree+prompt)
909 ;; prompt for date
910 (let ((prompt-time (org-read-date
911 nil t nil "Date for tree entry:"
912 (current-time))))
913 (org-capture-put
914 :default-time
915 (cond ((and (or (not (boundp 'org-time-was-given))
916 (not org-time-was-given))
917 (not (= (time-to-days prompt-time) (org-today))))
918 ;; Use 00:00 when no time is given for another date than today?
919 (apply 'encode-time (append '(0 0 0) (cdddr (decode-time prompt-time)))))
920 ((string-match "\\([^ ]+\\)--?[^ ]+[ ]+\\(.*\\)" org-read-date-final-answer)
921 ;; Replace any time range by its start
922 (apply 'encode-time
923 (org-read-date-analyze
924 (replace-match "\\1 \\2" nil nil org-read-date-final-answer)
925 prompt-time (decode-time prompt-time))))
926 (t prompt-time)))
927 (time-to-days prompt-time)))
929 ;; current date, possibly corrected for late night workers
930 (org-today))))))
932 ((eq (car target) 'file+function)
933 (set-buffer (org-capture-target-buffer (nth 1 target)))
934 (org-capture-put-target-region-and-position)
935 (widen)
936 (funcall (nth 2 target))
937 (org-capture-put :exact-position (point))
938 (setq target-entry-p (and (derived-mode-p 'org-mode) (org-at-heading-p))))
940 ((eq (car target) 'function)
941 (funcall (nth 1 target))
942 (org-capture-put :exact-position (point))
943 (setq target-entry-p (and (derived-mode-p 'org-mode) (org-at-heading-p))))
945 ((eq (car target) 'clock)
946 (if (and (markerp org-clock-hd-marker)
947 (marker-buffer org-clock-hd-marker))
948 (progn (set-buffer (marker-buffer org-clock-hd-marker))
949 (org-capture-put-target-region-and-position)
950 (widen)
951 (goto-char org-clock-hd-marker))
952 (error "No running clock that could be used as capture target")))
954 (t (error "Invalid capture target specification")))
956 (when (and (featurep 'org-crypt) (org-at-encrypted-entry-p))
957 (org-decrypt-entry)
958 (setq decrypted-hl-pos
959 (save-excursion (and (org-back-to-heading t) (point)))))
961 (org-capture-put :buffer (current-buffer) :pos (point)
962 :target-entry-p target-entry-p
963 :decrypted decrypted-hl-pos))))
965 (defun org-capture-expand-file (file)
966 "Expand functions and symbols for FILE.
967 When FILE is a function, call it. When it is a form, evaluate
968 it. When it is a variable, retrieve the value. Return whatever we get."
969 (cond
970 ((org-string-nw-p file) file)
971 ((functionp file) (funcall file))
972 ((and (symbolp file) (boundp file)) (symbol-value file))
973 ((and file (consp file)) (eval file))
974 (t file)))
976 (defun org-capture-target-buffer (file)
977 "Get a buffer for FILE."
978 (setq file (org-capture-expand-file file))
979 (setq file (or (org-string-nw-p file)
980 org-default-notes-file
981 (error "No notes file specified, and no default available")))
982 (or (org-find-base-buffer-visiting file)
983 (progn (org-capture-put :new-buffer t)
984 (find-file-noselect (expand-file-name file org-directory)))))
986 (defun org-capture-steal-local-variables (buffer)
987 "Install Org-mode local variables of BUFFER."
988 (mapc (lambda (v)
989 (ignore-errors (org-set-local (car v) (cdr v))))
990 (buffer-local-variables buffer)))
992 (defun org-capture-place-template (&optional inhibit-wconf-store)
993 "Insert the template at the target location, and display the buffer.
994 When `inhibit-wconf-store', don't store the window configuration, as it
995 may have been stored before."
996 (unless inhibit-wconf-store
997 (org-capture-put :return-to-wconf (current-window-configuration)))
998 (delete-other-windows)
999 (org-switch-to-buffer-other-window
1000 (org-capture-get-indirect-buffer (org-capture-get :buffer) "CAPTURE"))
1001 (widen)
1002 (show-all)
1003 (goto-char (org-capture-get :pos))
1004 (org-set-local 'org-capture-target-marker
1005 (point-marker))
1006 (org-set-local 'outline-level 'org-outline-level)
1007 (let* ((template (org-capture-get :template))
1008 (type (org-capture-get :type)))
1009 (case type
1010 ((nil entry) (org-capture-place-entry))
1011 (table-line (org-capture-place-table-line))
1012 (plain (org-capture-place-plain-text))
1013 (item (org-capture-place-item))
1014 (checkitem (org-capture-place-item))))
1015 (org-capture-mode 1)
1016 (org-set-local 'org-capture-current-plist org-capture-plist))
1018 (defun org-capture-place-entry ()
1019 "Place the template as a new Org entry."
1020 (let* ((txt (org-capture-get :template))
1021 (reversed (org-capture-get :prepend))
1022 (target-entry-p (org-capture-get :target-entry-p))
1023 level beg end file)
1025 (cond
1026 ((org-capture-get :exact-position)
1027 (goto-char (org-capture-get :exact-position)))
1028 ((not target-entry-p)
1029 ;; Insert as top-level entry, either at beginning or at end of file
1030 (setq level 1)
1031 (if reversed
1032 (progn (goto-char (point-min))
1033 (or (org-at-heading-p)
1034 (outline-next-heading)))
1035 (goto-char (point-max))
1036 (or (bolp) (insert "\n"))))
1038 ;; Insert as a child of the current entry
1039 (and (looking-at "\\*+")
1040 (setq level (- (match-end 0) (match-beginning 0))))
1041 (setq level (org-get-valid-level (or level 1) 1))
1042 (if reversed
1043 (progn
1044 (outline-next-heading)
1045 (or (bolp) (insert "\n")))
1046 (org-end-of-subtree t nil)
1047 (or (bolp) (insert "\n")))))
1048 (org-capture-empty-lines-before)
1049 (setq beg (point))
1050 (org-capture-verify-tree txt)
1051 (org-paste-subtree level txt 'for-yank)
1052 (org-capture-empty-lines-after 1)
1053 (org-capture-position-for-last-stored beg)
1054 (outline-next-heading)
1055 (setq end (point))
1056 (org-capture-mark-kill-region beg (1- end))
1057 (org-capture-narrow beg (1- end))
1058 (if (or (re-search-backward "%\\?" beg t)
1059 (re-search-forward "%\\?" end t))
1060 (replace-match ""))))
1062 (defun org-capture-place-item ()
1063 "Place the template as a new plain list item."
1064 (let* ((txt (org-capture-get :template))
1065 (target-entry-p (org-capture-get :target-entry-p))
1066 (ind 0)
1067 beg end)
1068 (if (org-capture-get :exact-position)
1069 (goto-char (org-capture-get :exact-position))
1070 (cond
1071 ((not target-entry-p)
1072 ;; Insert as top-level entry, either at beginning or at end of file
1073 (setq beg (point-min) end (point-max)))
1075 (setq beg (1+ (point-at-eol))
1076 end (save-excursion (outline-next-heading) (point)))))
1077 (if (org-capture-get :prepend)
1078 (progn
1079 (goto-char beg)
1080 (if (org-list-search-forward (org-item-beginning-re) end t)
1081 (progn
1082 (goto-char (match-beginning 0))
1083 (setq ind (org-get-indentation)))
1084 (goto-char end)
1085 (setq ind 0)))
1086 (goto-char end)
1087 (if (org-list-search-backward (org-item-beginning-re) beg t)
1088 (progn
1089 (setq ind (org-get-indentation))
1090 (org-end-of-item))
1091 (setq ind 0))))
1092 ;; Remove common indentation
1093 (setq txt (org-remove-indentation txt))
1094 ;; Make sure this is indeed an item
1095 (unless (string-match (concat "\\`" (org-item-re)) txt)
1096 (setq txt (concat "- "
1097 (mapconcat 'identity (split-string txt "\n")
1098 "\n "))))
1099 ;; Set the correct indentation, depending on context
1100 (setq ind (make-string ind ?\ ))
1101 (setq txt (concat ind
1102 (mapconcat 'identity (split-string txt "\n")
1103 (concat "\n" ind))
1104 "\n"))
1105 ;; Insert, with surrounding empty lines
1106 (org-capture-empty-lines-before)
1107 (setq beg (point))
1108 (insert txt)
1109 (or (bolp) (insert "\n"))
1110 (org-capture-empty-lines-after 1)
1111 (org-capture-position-for-last-stored beg)
1112 (forward-char 1)
1113 (setq end (point))
1114 (org-capture-mark-kill-region beg (1- end))
1115 (org-capture-narrow beg (1- end))
1116 (if (or (re-search-backward "%\\?" beg t)
1117 (re-search-forward "%\\?" end t))
1118 (replace-match ""))))
1120 (defun org-capture-place-table-line ()
1121 "Place the template as a table line."
1122 (require 'org-table)
1123 (let* ((txt (org-capture-get :template))
1124 (target-entry-p (org-capture-get :target-entry-p))
1125 (table-line-pos (org-capture-get :table-line-pos))
1126 ind beg end)
1127 (cond
1128 ((org-capture-get :exact-position)
1129 (goto-char (org-capture-get :exact-position)))
1130 ((not target-entry-p)
1131 ;; Table is not necessarily under a heading
1132 (setq beg (point-min) end (point-max)))
1134 ;; WE are at a heading, limit search to the body
1135 (setq beg (1+ (point-at-eol))
1136 end (save-excursion (outline-next-heading) (point)))))
1137 (if (re-search-forward org-table-dataline-regexp end t)
1138 (let ((b (org-table-begin)) (e (org-table-end)) (case-fold-search t))
1139 (goto-char e)
1140 (if (looking-at "[ \t]*#\\+tblfm:")
1141 (forward-line 1))
1142 (narrow-to-region b (point)))
1143 (goto-char end)
1144 (insert "\n| |\n|----|\n| |\n")
1145 (narrow-to-region (1+ end) (point)))
1146 ;; We are narrowed to the table, or to an empty line if there was no table
1148 ;; Check if the template is good
1149 (if (not (string-match org-table-dataline-regexp txt))
1150 (setq txt "| %?Bad template |\n"))
1151 (cond
1152 ((and table-line-pos
1153 (string-match "\\(I+\\)\\([-+][0-9]\\)" table-line-pos))
1154 ;; we have a complex line specification
1155 (goto-char (point-min))
1156 (let ((nh (- (match-end 1) (match-beginning 1)))
1157 (delta (string-to-number (match-string 2 table-line-pos)))
1159 ;; The user wants a special position in the table
1160 (org-table-get-specials)
1161 (setq ll (ignore-errors (aref org-table-hlines nh)))
1162 (unless ll (error "Invalid table line specification \"%s\""
1163 table-line-pos))
1164 (setq ll (+ ll delta (if (< delta 0) 0 -1)))
1165 (org-goto-line ll)
1166 (org-table-insert-row 'below)
1167 (beginning-of-line 1)
1168 (delete-region (point) (1+ (point-at-eol)))
1169 (setq beg (point))
1170 (insert txt)
1171 (setq end (point))))
1172 ((org-capture-get :prepend)
1173 (goto-char (point-min))
1174 (re-search-forward org-table-hline-regexp nil t)
1175 (beginning-of-line 1)
1176 (re-search-forward org-table-dataline-regexp nil t)
1177 (beginning-of-line 1)
1178 (setq beg (point))
1179 (org-table-insert-row)
1180 (beginning-of-line 1)
1181 (delete-region (point) (1+ (point-at-eol)))
1182 (insert txt)
1183 (setq end (point)))
1185 (goto-char (point-max))
1186 (re-search-backward org-table-dataline-regexp nil t)
1187 (beginning-of-line 1)
1188 (org-table-insert-row 'below)
1189 (beginning-of-line 1)
1190 (delete-region (point) (1+ (point-at-eol)))
1191 (setq beg (point))
1192 (insert txt)
1193 (setq end (point))))
1194 (goto-char beg)
1195 (org-capture-position-for-last-stored 'table-line)
1196 (if (or (re-search-backward "%\\?" beg t)
1197 (re-search-forward "%\\?" end t))
1198 (replace-match ""))
1199 (org-table-align)))
1201 (defun org-capture-place-plain-text ()
1202 "Place the template plainly.
1203 If the target locator points at an Org node, place the template into
1204 the text of the entry, before the first child. If not, place the
1205 template at the beginning or end of the file.
1206 Of course, if exact position has been required, just put it there."
1207 (let* ((txt (org-capture-get :template))
1208 beg end)
1209 (cond
1210 ((org-capture-get :exact-position)
1211 (goto-char (org-capture-get :exact-position)))
1212 ((and (org-capture-get :target-entry-p)
1213 (bolp)
1214 (looking-at org-outline-regexp))
1215 ;; we should place the text into this entry
1216 (if (org-capture-get :prepend)
1217 ;; Skip meta data and drawers
1218 (org-end-of-meta-data-and-drawers)
1219 ;; go to ent of the entry text, before the next headline
1220 (outline-next-heading)))
1222 ;; beginning or end of file
1223 (goto-char (if (org-capture-get :prepend) (point-min) (point-max)))))
1224 (or (bolp) (newline))
1225 (org-capture-empty-lines-before)
1226 (setq beg (point))
1227 (insert txt)
1228 (org-capture-empty-lines-after 1)
1229 (org-capture-position-for-last-stored beg)
1230 (setq end (point))
1231 (org-capture-mark-kill-region beg (1- end))
1232 (org-capture-narrow beg (1- end))
1233 (if (or (re-search-backward "%\\?" beg t)
1234 (re-search-forward "%\\?" end t))
1235 (replace-match ""))))
1237 (defun org-capture-mark-kill-region (beg end)
1238 "Mark the region that will have to be killed when aborting capture."
1239 (let ((m1 (move-marker (make-marker) beg))
1240 (m2 (move-marker (make-marker) end)))
1241 (org-capture-put :begin-marker m1)
1242 (org-capture-put :end-marker m2)))
1244 (defun org-capture-position-for-last-stored (where)
1245 "Memorize the position that should later become the position of last capture."
1246 (cond
1247 ((integerp where)
1248 (org-capture-put :position-for-last-stored
1249 (move-marker (make-marker) where
1250 (or (buffer-base-buffer (current-buffer))
1251 (current-buffer)))))
1252 ((eq where 'table-line)
1253 (org-capture-put :position-for-last-stored
1254 (list 'table-line
1255 (org-table-current-dline))))
1256 (t (error "This should not happen"))))
1258 (defun org-capture-bookmark-last-stored-position ()
1259 "Bookmark the last-captured position."
1260 (let* ((where (org-capture-get :position-for-last-stored 'local))
1261 (pos (cond
1262 ((markerp where)
1263 (prog1 (marker-position where)
1264 (move-marker where nil)))
1265 ((and (listp where) (eq (car where) 'table-line))
1266 (if (org-at-table-p)
1267 (save-excursion
1268 (org-table-goto-line (nth 1 where))
1269 (point-at-bol))
1270 (point))))))
1271 (with-current-buffer (buffer-base-buffer (current-buffer))
1272 (save-excursion
1273 (save-restriction
1274 (widen)
1275 (goto-char pos)
1276 (let ((bookmark-name (plist-get org-bookmark-names-plist
1277 :last-capture)))
1278 (when bookmark-name
1279 (with-demoted-errors
1280 (bookmark-set bookmark-name))))
1281 (move-marker org-capture-last-stored-marker (point)))))))
1283 (defun org-capture-narrow (beg end)
1284 "Narrow, unless configuration says not to narrow."
1285 (unless (org-capture-get :unnarrowed)
1286 (narrow-to-region beg end)
1287 (goto-char beg)))
1289 (defun org-capture-empty-lines-before (&optional n)
1290 "Set the correct number of empty lines before the insertion point.
1291 Point will be after the empty lines, so insertion can directly be done."
1292 (setq n (or n (org-capture-get :empty-lines-before)
1293 (org-capture-get :empty-lines) 0))
1294 (let ((pos (point)))
1295 (org-back-over-empty-lines)
1296 (delete-region (point) pos)
1297 (if (> n 0) (newline n))))
1299 (defun org-capture-empty-lines-after (&optional n)
1300 "Set the correct number of empty lines after the inserted string.
1301 Point will remain at the first line after the inserted text."
1302 (setq n (or n (org-capture-get :empty-lines-after)
1303 (org-capture-get :empty-lines) 0))
1304 (org-back-over-empty-lines)
1305 (while (looking-at "[ \t]*\n") (replace-match ""))
1306 (let ((pos (point)))
1307 (if (> n 0) (newline n))
1308 (goto-char pos)))
1310 (defvar org-clock-marker) ; Defined in org.el
1312 (defun org-capture-insert-template-here ()
1313 "Insert the capture template at point."
1314 (let* ((template (org-capture-get :template))
1315 (type (org-capture-get :type))
1316 beg end pp)
1317 (or (bolp) (newline))
1318 (setq beg (point))
1319 (cond
1320 ((and (eq type 'entry) (derived-mode-p 'org-mode))
1321 (org-capture-verify-tree (org-capture-get :template))
1322 (org-paste-subtree nil template t))
1323 ((and (memq type '(item checkitem))
1324 (derived-mode-p 'org-mode)
1325 (save-excursion (skip-chars-backward " \t\n")
1326 (setq pp (point))
1327 (org-in-item-p)))
1328 (goto-char pp)
1329 (org-insert-item)
1330 (skip-chars-backward " ")
1331 (skip-chars-backward "-+*0123456789).")
1332 (delete-region (point) (point-at-eol))
1333 (setq beg (point))
1334 (org-remove-indentation template)
1335 (insert template)
1336 (org-capture-empty-lines-after)
1337 (goto-char beg)
1338 (org-list-repair)
1339 (org-end-of-item)
1340 (setq end (point)))
1341 (t (insert template)))
1342 (setq end (point))
1343 (goto-char beg)
1344 (if (re-search-forward "%\\?" end t)
1345 (replace-match ""))))
1347 (defun org-capture-set-plist (entry)
1348 "Initialize the property list from the template definition."
1349 (setq org-capture-plist (copy-sequence (nthcdr 5 entry)))
1350 (org-capture-put :key (car entry) :description (nth 1 entry)
1351 :target (nth 3 entry))
1352 (let ((txt (nth 4 entry)) (type (or (nth 2 entry) 'entry)))
1353 (when (or (not txt) (and (stringp txt) (not (string-match "\\S-" txt))))
1354 ;; The template may be empty or omitted for special types.
1355 ;; Here we insert the default templates for such cases.
1356 (cond
1357 ((eq type 'item) (setq txt "- %?"))
1358 ((eq type 'checkitem) (setq txt "- [ ] %?"))
1359 ((eq type 'table-line) (setq txt "| %? |"))
1360 ((member type '(nil entry)) (setq txt "* %?\n %a"))))
1361 (org-capture-put :template txt :type type)))
1363 (defun org-capture-goto-target (&optional template-key)
1364 "Go to the target location of a capture template.
1365 The user is queried for the template."
1366 (interactive)
1367 (let* (org-select-template-temp-major-mode
1368 (entry (org-capture-select-template template-key)))
1369 (unless entry
1370 (error "No capture template selected"))
1371 (org-capture-set-plist entry)
1372 (org-capture-set-target-location)
1373 (org-pop-to-buffer-same-window (org-capture-get :buffer))
1374 (goto-char (org-capture-get :pos))))
1376 (defun org-capture-get-indirect-buffer (&optional buffer prefix)
1377 "Make an indirect buffer for a capture process.
1378 Use PREFIX as a prefix for the name of the indirect buffer."
1379 (setq buffer (or buffer (current-buffer)))
1380 (let ((n 1) (base (buffer-name buffer)) bname)
1381 (setq bname (concat prefix "-" base))
1382 (while (buffer-live-p (get-buffer bname))
1383 (setq bname (concat prefix "-" (number-to-string (incf n)) "-" base)))
1384 (condition-case nil
1385 (make-indirect-buffer buffer bname 'clone)
1386 (error
1387 (let ((buf (make-indirect-buffer buffer bname)))
1388 (with-current-buffer buf (org-mode))
1389 buf)))))
1391 (defun org-capture-verify-tree (tree)
1392 "Throw error if TREE is not a valid tree."
1393 (unless (org-kill-is-subtree-p tree)
1394 (error "Template is not a valid Org entry or tree")))
1396 (defun org-mks (table title &optional prompt specials)
1397 "Select a member of an alist with multiple keys.
1398 TABLE is the alist which should contain entries where the car is a string.
1399 There should be two types of entries.
1401 1. prefix descriptions like (\"a\" \"Description\")
1402 This indicates that `a' is a prefix key for multi-letter selection, and
1403 that there are entries following with keys like \"ab\", \"ax\"...
1405 2. Selectable members must have more than two elements, with the first
1406 being the string of keys that lead to selecting it, and the second a
1407 short description string of the item.
1409 The command will then make a temporary buffer listing all entries
1410 that can be selected with a single key, and all the single key
1411 prefixes. When you press the key for a single-letter entry, it is selected.
1412 When you press a prefix key, the commands (and maybe further prefixes)
1413 under this key will be shown and offered for selection.
1415 TITLE will be placed over the selection in the temporary buffer,
1416 PROMPT will be used when prompting for a key. SPECIAL is an alist with
1417 also (\"key\" \"description\") entries. When one of these is selection,
1418 only the bare key is returned."
1419 (setq prompt (or prompt "Select: "))
1420 (let (tbl orig-table dkey ddesc des-keys allowed-keys
1421 current prefix rtn re pressed buffer (inhibit-quit t))
1422 (save-window-excursion
1423 (setq buffer (org-switch-to-buffer-other-window "*Org Select*"))
1424 (setq orig-table table)
1425 (catch 'exit
1426 (while t
1427 (erase-buffer)
1428 (insert title "\n\n")
1429 (setq tbl table
1430 des-keys nil
1431 allowed-keys nil
1432 cursor-type nil)
1433 (setq prefix (if current (concat current " ") ""))
1434 (while tbl
1435 (cond
1436 ((and (= 2 (length (car tbl))) (= (length (caar tbl)) 1))
1437 ;; This is a description on this level
1438 (setq dkey (caar tbl) ddesc (cadar tbl))
1439 (pop tbl)
1440 (push dkey des-keys)
1441 (push dkey allowed-keys)
1442 (insert prefix "[" dkey "]" "..." " " ddesc "..." "\n")
1443 ;; Skip keys which are below this prefix
1444 (setq re (concat "\\`" (regexp-quote dkey)))
1445 (let (case-fold-search)
1446 (while (and tbl (string-match re (caar tbl))) (pop tbl))))
1447 ((= 2 (length (car tbl)))
1448 ;; Not yet a usable description, skip it
1451 ;; usable entry on this level
1452 (insert prefix "[" (caar tbl) "]" " " (nth 1 (car tbl)) "\n")
1453 (push (caar tbl) allowed-keys)
1454 (pop tbl))))
1455 (when specials
1456 (insert "-------------------------------------------------------------------------------\n")
1457 (let ((sp specials))
1458 (while sp
1459 (insert (format "[%s] %s\n"
1460 (caar sp) (nth 1 (car sp))))
1461 (push (caar sp) allowed-keys)
1462 (pop sp))))
1463 (push "\C-g" allowed-keys)
1464 (goto-char (point-min))
1465 (if (not (pos-visible-in-window-p (point-max)))
1466 (org-fit-window-to-buffer))
1467 (message prompt)
1468 (setq pressed (char-to-string (read-char-exclusive)))
1469 (while (not (member pressed allowed-keys))
1470 (message "Invalid key `%s'" pressed) (sit-for 1)
1471 (message prompt)
1472 (setq pressed (char-to-string (read-char-exclusive))))
1473 (when (equal pressed "\C-g")
1474 (kill-buffer buffer)
1475 (error "Abort"))
1476 (when (and (not (assoc pressed table))
1477 (not (member pressed des-keys))
1478 (assoc pressed specials))
1479 (throw 'exit (setq rtn pressed)))
1480 (unless (member pressed des-keys)
1481 (throw 'exit (setq rtn (rassoc (cdr (assoc pressed table))
1482 orig-table))))
1483 (setq current (concat current pressed))
1484 (setq table (mapcar
1485 (lambda (x)
1486 (if (and (> (length (car x)) 1)
1487 (equal (substring (car x) 0 1) pressed))
1488 (cons (substring (car x) 1) (cdr x))
1489 nil))
1490 table))
1491 (setq table (remove nil table)))))
1492 (when buffer (kill-buffer buffer))
1493 rtn))
1495 ;;; The template code
1496 (defun org-capture-select-template (&optional keys)
1497 "Select a capture template.
1498 Lisp programs can force the template by setting KEYS to a string."
1499 (let ((org-capture-templates
1500 (or (org-contextualize-keys
1501 org-capture-templates org-capture-templates-contexts)
1502 '(("t" "Task" entry (file+headline "" "Tasks")
1503 "* TODO %?\n %u\n %a")))))
1504 (if keys
1505 (or (assoc keys org-capture-templates)
1506 (error "No capture template referred to by \"%s\" keys" keys))
1507 (org-mks org-capture-templates
1508 "Select a capture template\n========================="
1509 "Template key: "
1510 '(("C" "Customize org-capture-templates")
1511 ("q" "Abort"))))))
1513 (defun org-capture-fill-template (&optional template initial annotation)
1514 "Fill a template and return the filled template as a string.
1515 The template may still contain \"%?\" for cursor positioning."
1516 (setq template (or template (org-capture-get :template)))
1517 (when (stringp initial)
1518 (setq initial (org-no-properties initial)))
1519 (let* ((buffer (org-capture-get :buffer))
1520 (file (buffer-file-name (or (buffer-base-buffer buffer) buffer)))
1521 (ct (org-capture-get :default-time))
1522 (dct (decode-time ct))
1523 (ct1
1524 (if (< (nth 2 dct) org-extend-today-until)
1525 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct))
1526 ct))
1527 (plist-p (if org-store-link-plist t nil))
1528 (v-c (and (> (length kill-ring) 0) (current-kill 0)))
1529 (v-x (or (org-get-x-clipboard 'PRIMARY)
1530 (org-get-x-clipboard 'CLIPBOARD)
1531 (org-get-x-clipboard 'SECONDARY)))
1532 (v-t (format-time-string (car org-time-stamp-formats) ct1))
1533 (v-T (format-time-string (cdr org-time-stamp-formats) ct1))
1534 (v-u (concat "[" (substring v-t 1 -1) "]"))
1535 (v-U (concat "[" (substring v-T 1 -1) "]"))
1536 ;; `initial' and `annotation' might habe been passed.
1537 ;; But if the property list has them, we prefer those values
1538 (v-i (or (plist-get org-store-link-plist :initial)
1539 initial
1540 (org-capture-get :initial)
1541 ""))
1542 (v-a (or (plist-get org-store-link-plist :annotation)
1543 annotation
1544 (org-capture-get :annotation)
1545 ""))
1546 ;; Is the link empty? Then we do not want it...
1547 (v-a (if (equal v-a "[[]]") "" v-a))
1548 (clipboards (remove nil (list v-i
1549 (org-get-x-clipboard 'PRIMARY)
1550 (org-get-x-clipboard 'CLIPBOARD)
1551 (org-get-x-clipboard 'SECONDARY)
1552 v-c)))
1553 (l-re "\\[\\[\\(.*?\\)\\]\\(\\[.*?\\]\\)?\\]")
1554 (v-A (if (and v-a (string-match l-re v-a))
1555 (replace-match "[[\\1][%^{Link description}]]" nil nil v-a)
1556 v-a))
1557 (v-l (if (and v-a (string-match l-re v-a))
1558 (replace-match "\\1" nil nil v-a)
1559 v-a))
1560 (v-n user-full-name)
1561 (v-k (if (marker-buffer org-clock-marker)
1562 (org-no-properties org-clock-heading)))
1563 (v-K (if (marker-buffer org-clock-marker)
1564 (org-make-link-string
1565 (buffer-file-name (marker-buffer org-clock-marker))
1566 org-clock-heading)))
1567 (v-f (or (org-capture-get :original-file-nondirectory) ""))
1568 (v-F (or (org-capture-get :original-file) ""))
1570 (org-startup-folded nil)
1571 (org-inhibit-startup t)
1572 org-time-was-given org-end-time-was-given x
1573 prompt completions char time pos default histvar strings)
1575 (setq org-store-link-plist
1576 (plist-put org-store-link-plist :annotation v-a)
1577 org-store-link-plist
1578 (plist-put org-store-link-plist :initial v-i))
1579 (setq initial v-i)
1581 (unless template (setq template "") (message "No template") (ding)
1582 (sit-for 1))
1583 (save-window-excursion
1584 (delete-other-windows)
1585 (org-pop-to-buffer-same-window (get-buffer-create "*Capture*"))
1586 (erase-buffer)
1587 (insert template)
1588 (goto-char (point-min))
1589 (org-capture-steal-local-variables buffer)
1590 (setq buffer-file-name nil mark-active nil)
1592 ;; %[] Insert contents of a file.
1593 (goto-char (point-min))
1594 (while (re-search-forward "%\\[\\(.+\\)\\]" nil t)
1595 (unless (org-capture-escaped-%)
1596 (let ((start (match-beginning 0))
1597 (end (match-end 0))
1598 (filename (expand-file-name (match-string 1))))
1599 (goto-char start)
1600 (delete-region start end)
1601 (condition-case error
1602 (insert-file-contents filename)
1603 (error (insert (format "%%![Couldn't insert %s: %s]"
1604 filename error)))))))
1605 ;; %() embedded elisp
1606 (org-capture-expand-embedded-elisp)
1608 ;; The current time
1609 (goto-char (point-min))
1610 (while (re-search-forward "%<\\([^>\n]+\\)>" nil t)
1611 (replace-match (format-time-string (match-string 1)) t t))
1613 ;; Simple %-escapes
1614 (goto-char (point-min))
1615 (while (re-search-forward "%\\([tTuUaliAcxkKInfF]\\)" nil t)
1616 (unless (org-capture-escaped-%)
1617 (when (and initial (equal (match-string 0) "%i"))
1618 (save-match-data
1619 (let* ((lead (buffer-substring
1620 (point-at-bol) (match-beginning 0))))
1621 (setq v-i (mapconcat 'identity
1622 (org-split-string initial "\n")
1623 (concat "\n" lead))))))
1624 (replace-match (or (eval (intern (concat "v-" (match-string 1)))) "")
1625 t t)))
1627 ;; From the property list
1628 (when plist-p
1629 (goto-char (point-min))
1630 (while (re-search-forward "%\\(:[-a-zA-Z]+\\)" nil t)
1631 (unless (org-capture-escaped-%)
1632 (and (setq x (or (plist-get org-store-link-plist
1633 (intern (match-string 1))) ""))
1634 (replace-match x t t)))))
1636 ;; Turn on org-mode in temp buffer, set local variables
1637 ;; This is to support completion in interactive prompts
1638 (let ((org-inhibit-startup t)) (org-mode))
1639 ;; Interactive template entries
1640 (goto-char (point-min))
1641 (while (re-search-forward "%^\\({\\([^}]*\\)}\\)?\\([gGtTuUCLp]\\)?" nil t)
1642 (unless (org-capture-escaped-%)
1643 (setq char (if (match-end 3) (match-string-no-properties 3))
1644 prompt (if (match-end 2) (match-string-no-properties 2)))
1645 (goto-char (match-beginning 0))
1646 (replace-match "")
1647 (setq completions nil default nil)
1648 (when prompt
1649 (setq completions (org-split-string prompt "|")
1650 prompt (pop completions)
1651 default (car completions)
1652 histvar (intern (concat
1653 "org-capture-template-prompt-history::"
1654 (or prompt "")))
1655 completions (mapcar 'list completions)))
1656 (unless (boundp histvar) (set histvar nil))
1657 (cond
1658 ((member char '("G" "g"))
1659 (let* ((org-last-tags-completion-table
1660 (org-global-tags-completion-table
1661 (if (equal char "G")
1662 (org-agenda-files)
1663 (and file (list file)))))
1664 (org-add-colon-after-tag-completion t)
1665 (ins (org-icompleting-read
1666 (if prompt (concat prompt ": ") "Tags: ")
1667 'org-tags-completion-function nil nil nil
1668 'org-tags-history)))
1669 (setq ins (mapconcat 'identity
1670 (org-split-string
1671 ins (org-re "[^[:alnum:]_@#%]+"))
1672 ":"))
1673 (when (string-match "\\S-" ins)
1674 (or (equal (char-before) ?:) (insert ":"))
1675 (insert ins)
1676 (or (equal (char-after) ?:) (insert ":"))
1677 (and (org-at-heading-p)
1678 (let ((org-ignore-region t))
1679 (org-set-tags nil 'align))))))
1680 ((equal char "C")
1681 (cond ((= (length clipboards) 1) (insert (car clipboards)))
1682 ((> (length clipboards) 1)
1683 (insert (read-string "Clipboard/kill value: "
1684 (car clipboards) '(clipboards . 1)
1685 (car clipboards))))))
1686 ((equal char "L")
1687 (cond ((= (length clipboards) 1)
1688 (org-insert-link 0 (car clipboards)))
1689 ((> (length clipboards) 1)
1690 (org-insert-link 0 (read-string "Clipboard/kill value: "
1691 (car clipboards)
1692 '(clipboards . 1)
1693 (car clipboards))))))
1694 ((equal char "p")
1695 (org-set-property (org-no-properties prompt) nil))
1696 (char
1697 ;; These are the date/time related ones
1698 (setq org-time-was-given (equal (upcase char) char))
1699 (setq time (org-read-date (equal (upcase char) char) t nil
1700 prompt))
1701 (if (equal (upcase char) char) (setq org-time-was-given t))
1702 (org-insert-time-stamp time org-time-was-given
1703 (member char '("u" "U"))
1704 nil nil (list org-end-time-was-given)))
1706 (let (org-completion-use-ido)
1707 (push (org-completing-read-no-i
1708 (concat (if prompt prompt "Enter string")
1709 (if default (concat " [" default "]"))
1710 ": ")
1711 completions nil nil nil histvar default)
1712 strings)
1713 (insert (car strings)))))))
1714 ;; Replace %n escapes with nth %^{...} string
1715 (setq strings (nreverse strings))
1716 (goto-char (point-min))
1717 (while (re-search-forward "%\\\\\\([1-9][0-9]*\\)" nil t)
1718 (unless (org-capture-escaped-%)
1719 (replace-match
1720 (nth (1- (string-to-number (match-string 1))) strings)
1721 nil t)))
1722 ;; Make sure there are no empty lines before the text, and that
1723 ;; it ends with a newline character
1724 (goto-char (point-min))
1725 (while (looking-at "[ \t]*\n") (replace-match ""))
1726 (if (re-search-forward "[ \t\n]*\\'" nil t) (replace-match "\n"))
1727 ;; Return the expanded template and kill the temporary buffer
1728 (untabify (point-min) (point-max))
1729 (set-buffer-modified-p nil)
1730 (prog1 (buffer-string) (kill-buffer (current-buffer))))))
1732 (defun org-capture-escaped-% ()
1733 "Check if % was escaped - if yes, unescape it now."
1734 (if (equal (char-before (match-beginning 0)) ?\\)
1735 (progn
1736 (delete-region (1- (match-beginning 0)) (match-beginning 0))
1738 nil))
1740 (defun org-capture-expand-embedded-elisp ()
1741 "Evaluate embedded elisp %(sexp) and replace with the result."
1742 (goto-char (point-min))
1743 (while (re-search-forward "%(" nil t)
1744 (unless (org-capture-escaped-%)
1745 (goto-char (match-beginning 0))
1746 (let ((template-start (point)))
1747 (forward-char 1)
1748 (let* ((sexp (read (current-buffer)))
1749 (result (org-eval
1750 (org-capture--expand-keyword-in-embedded-elisp sexp))))
1751 (delete-region template-start (point))
1752 (when result
1753 (if (stringp result)
1754 (insert result)
1755 (error "Capture template sexp `%s' must evaluate to string or nil"
1756 sexp))))))))
1758 (defun org-capture--expand-keyword-in-embedded-elisp (attr)
1759 "Recursively replace capture link keywords in ATTR sexp.
1760 Such keywords are prefixed with \"%:\". See
1761 `org-capture-template' for more information."
1762 (cond ((consp attr)
1763 (mapcar 'org-capture--expand-keyword-in-embedded-elisp attr))
1764 ((symbolp attr)
1765 (let* ((attr-symbol (symbol-name attr))
1766 (key (and (string-match "%\\(:.*\\)" attr-symbol)
1767 (intern (match-string 1 attr-symbol)))))
1768 (or (plist-get org-store-link-plist key)
1769 attr)))
1770 (t attr)))
1772 (defun org-capture-inside-embedded-elisp-p ()
1773 "Return non-nil if point is inside of embedded elisp %(sexp)."
1774 (let (beg end)
1775 (with-syntax-table emacs-lisp-mode-syntax-table
1776 (save-excursion
1777 ;; `looking-at' and `search-backward' below do not match the "%(" if
1778 ;; point is in its middle
1779 (when (equal (char-before) ?%)
1780 (backward-char))
1781 (save-match-data
1782 (when (or (looking-at "%(") (search-backward "%(" nil t))
1783 (setq beg (point))
1784 (setq end (progn (forward-char) (forward-sexp) (1- (point)))))))
1785 (when (and beg end)
1786 (and (<= (point) end) (>= (point) beg))))))
1788 ;;;###autoload
1789 (defun org-capture-import-remember-templates ()
1790 "Set `org-capture-templates' to be similar to `org-remember-templates'."
1791 (interactive)
1792 (when (and (yes-or-no-p
1793 "Import old remember templates into org-capture-templates? ")
1794 (yes-or-no-p
1795 "Note that this will remove any templates currently defined in `org-capture-templates'. Do you still want to go ahead? "))
1796 (require 'org-remember)
1797 (setq org-capture-templates
1798 (mapcar
1799 (lambda (entry)
1800 (let ((desc (car entry))
1801 (key (char-to-string (nth 1 entry)))
1802 (template (nth 2 entry))
1803 (file (or (nth 3 entry) org-default-notes-file))
1804 (position (or (nth 4 entry) org-remember-default-headline))
1805 (type 'entry)
1806 (prepend org-reverse-note-order)
1807 immediate target jump-to-captured)
1808 (cond
1809 ((member position '(top bottom))
1810 (setq target (list 'file file)
1811 prepend (eq position 'top)))
1812 ((eq position 'date-tree)
1813 (setq target (list 'file+datetree file)
1814 prepend nil))
1815 (t (setq target (list 'file+headline file position))))
1817 (when (string-match "%!" template)
1818 (setq template (replace-match "" t t template)
1819 immediate t))
1821 (when (string-match "%&" template)
1822 (setq jump-to-captured t))
1824 (append (list key desc type target template)
1825 (if prepend '(:prepend t))
1826 (if immediate '(:immediate-finish t))
1827 (if jump-to-captured '(:jump-to-captured t)))))
1829 org-remember-templates))))
1831 (provide 'org-capture)
1833 ;;; org-capture.el ends here