2010-04-10 Carsten Dominik <carsten.dominik@gmail.com>
[bpt/emacs.git] / lisp / org / org-remember.el
CommitLineData
20908596
CD
1;;; org-remember.el --- Fast note taking in Org-mode
2
114f9c96 3;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
1e4f816a 4;; Free Software Foundation, Inc.
20908596
CD
5
6;; Author: Carsten Dominik <carsten at orgmode dot org>
7;; Keywords: outlines, hypermedia, calendar, wp
8;; Homepage: http://orgmode.org
ed21c5c8 9;; Version: 6.35i
20908596
CD
10;;
11;; This file is part of GNU Emacs.
12;;
b1fc2b50 13;; GNU Emacs is free software: you can redistribute it and/or modify
20908596 14;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
20908596
CD
17
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.
22
23;; You should have received a copy of the GNU General Public License
b1fc2b50 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20908596
CD
25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26;;
27;;; Commentary:
28
29;; This file contains the system to take fast notes with Org-mode.
33306645 30;; This system is used together with John Wiegley's `remember.el'.
20908596
CD
31
32;;; Code:
33
34(eval-when-compile
35 (require 'cl))
36(require 'org)
8bfe682a 37(require 'org-datetree)
20908596 38
621f83e4 39(declare-function remember-mode "remember" ())
20908596
CD
40(declare-function remember "remember" (&optional initial))
41(declare-function remember-buffer-desc "remember" ())
42(declare-function remember-finalize "remember" ())
43(defvar remember-save-after-remembering)
20908596
CD
44(defvar remember-register)
45(defvar remember-buffer)
46(defvar remember-handler-functions)
47(defvar remember-annotation-functions)
621f83e4
CD
48(defvar org-clock-heading)
49(defvar org-clock-heading-for-remember)
20908596
CD
50
51(defgroup org-remember nil
52 "Options concerning interaction with remember.el."
53 :tag "Org Remember"
54 :group 'org)
55
56(defcustom org-remember-store-without-prompt t
ed21c5c8 57 "Non-nil means `C-c C-c' stores remember note without further prompts.
b349f79f 58It then uses the file and headline specified by the template or (if the
ce4fdcb9 59template does not specify them) by the variables `org-default-notes-file'
ff4be292 60and `org-remember-default-headline'. To force prompting anyway, use
b349f79f
CD
61`C-u C-c C-c' to file the note.
62
eb82b61d
JB
63When this variable is nil, `C-c C-c' gives you the prompts, and
64`C-u C-c C-c' triggers the fasttrack."
20908596
CD
65 :group 'org-remember
66 :type 'boolean)
67
68(defcustom org-remember-interactive-interface 'refile
69 "The interface to be used for interactive filing of remember notes.
70This is only used when the interactive mode for selecting a filing
71location is used (see the variable `org-remember-store-without-prompt').
33306645 72Allowed values are:
20908596
CD
73outline The interface shows an outline of the relevant file
74 and the correct heading is found by moving through
75 the outline or by searching with incremental search.
76outline-path-completion Headlines in the current buffer are offered via
77 completion.
78refile Use the refile interface, and offer headlines,
79 possibly from different buffers."
80 :group 'org-remember
81 :type '(choice
82 (const :tag "Refile" refile)
83 (const :tag "Outline" outline)
84 (const :tag "Outline-path-completion" outline-path-completion)))
85
86(defcustom org-remember-default-headline ""
87 "The headline that should be the default location in the notes file.
88When filing remember notes, the cursor will start at that position.
89You can set this on a per-template basis with the variable
90`org-remember-templates'."
91 :group 'org-remember
92 :type 'string)
93
94(defcustom org-remember-templates nil
95 "Templates for the creation of remember buffers.
96When nil, just let remember make the buffer.
eb82b61d 97When non-nil, this is a list of 5-element lists. In each entry, the first
20908596
CD
98element is the name of the template, which should be a single short word.
99The second element is a character, a unique key to select this template.
100The third element is the template.
101
102The fourth element is optional and can specify a destination file for
103remember items created with this template. The default file is given
104by `org-default-notes-file'. If the file name is not an absolute path,
105it will be interpreted relative to `org-directory'.
106
107An optional fifth element can specify the headline in that file that should
108be offered first when the user is asked to file the entry. The default
b349f79f
CD
109headline is given in the variable `org-remember-default-headline'. When
110this element is `top' or `bottom', the note will be placed as a level-1
111entry at the beginning or end of the file, respectively.
20908596 112
b349f79f
CD
113An optional sixth element specifies the contexts in which the template
114will be offered to the user. This element can be a list of major modes
115or a function, and the template will only be offered if `org-remember'
116is called from a mode in the list, or if the function returns t.
117Templates that specify t or nil for the context will be always be added
118to the list of selectable templates.
20908596
CD
119
120The template specifies the structure of the remember buffer. It should have
121a first line starting with a star, to act as the org-mode headline.
122Furthermore, the following %-escapes will be replaced with content:
123
124 %^{prompt} Prompt the user for a string and replace this sequence with it.
125 A default value and a completion table ca be specified like this:
126 %^{prompt|default|completion2|completion3|...}
127 %t time stamp, date only
128 %T time stamp with date and time
129 %u, %U like the above, but inactive time stamps
b349f79f
CD
130 %^t like %t, but prompt for date. Similarly %^T, %^u, %^U.
131 You may define a prompt like %^{Please specify birthday
20908596
CD
132 %n user name (taken from `user-full-name')
133 %a annotation, normally the link created with org-store-link
ed21c5c8 134 %i initial content, copied from the active region. If %i is
54a0dee5 135 indented, the entire inserted text will be indented as well.
b349f79f
CD
136 %c current kill ring head
137 %x content of the X clipboard
138 %^C Interactive selection of which kill or clip to use
139 %^L Like %^C, but insert as link
621f83e4
CD
140 %k title of currently clocked task
141 %K link to currently clocked task
20908596
CD
142 %^g prompt for tags, with completion on tags in target file
143 %^G prompt for tags, with completion all tags in all agenda files
621f83e4 144 %^{prop}p Prompt the user for a value for property `prop'
20908596
CD
145 %:keyword specific information for certain link types, see below
146 %[pathname] insert the contents of the file given by `pathname'
147 %(sexp) evaluate elisp `(sexp)' and replace with the result
148 %! Store this note immediately after filling the template
b349f79f 149 %& Visit note immediately after storing it
20908596
CD
150
151 %? After completing the template, position cursor here.
152
153Apart from these general escapes, you can access information specific to the
154link type that is created. For example, calling `remember' in emails or gnus
155will record the author and the subject of the message, which you can access
156with %:author and %:subject, respectively. Here is a complete list of what
157is recorded for each link type.
158
159Link type | Available information
160-------------------+------------------------------------------------------
161bbdb | %:type %:name %:company
162vm, wl, mh, rmail | %:type %:subject %:message-id
163 | %:from %:fromname %:fromaddress
164 | %:to %:toname %:toaddress
165 | %:fromto (either \"to NAME\" or \"from NAME\")
166gnus | %:group, for messages also all email fields
167w3, w3m | %:type %:url
168info | %:type %:file %:node
169calendar | %:type %:date"
170 :group 'org-remember
171 :get (lambda (var) ; Make sure all entries have at least 5 elements
172 (mapcar (lambda (x)
173 (if (not (stringp (car x))) (setq x (cons "" x)))
621f83e4
CD
174 (cond ((= (length x) 4) (append x '(nil)))
175 ((= (length x) 3) (append x '(nil nil)))
20908596
CD
176 (t x)))
177 (default-value var)))
178 :type '(repeat
179 :tag "enabled"
180 (list :value ("" ?a "\n" nil nil nil)
181 (string :tag "Name")
182 (character :tag "Selection Key")
183 (string :tag "Template")
b349f79f
CD
184 (choice :tag "Destination file"
185 (file :tag "Specify")
621f83e4 186 (function :tag "Function")
b349f79f
CD
187 (const :tag "Use `org-default-notes-file'" nil))
188 (choice :tag "Destin. headline"
189 (string :tag "Specify")
c8d0cf5c 190 (function :tag "Function")
b349f79f 191 (const :tag "Use `org-remember-default-headline'" nil)
c8d0cf5c 192 (const :tag "At beginning of file" top)
8bfe682a
CD
193 (const :tag "At end of file" bottom)
194 (const :tag "In a date tree" date-tree))
b349f79f
CD
195 (choice :tag "Context"
196 (const :tag "Use in all contexts" nil)
20908596
CD
197 (const :tag "Use in all contexts" t)
198 (repeat :tag "Use only if in major mode"
199 (symbol :tag "Major mode"))
200 (function :tag "Perform a check against function")))))
201
c8d0cf5c
CD
202(defcustom org-remember-delete-empty-lines-at-end t
203 "Non-nil means clean up final empty lines in remember buffer."
204 :group 'org-remember
205 :type 'boolean)
206
ce4fdcb9
CD
207(defcustom org-remember-before-finalize-hook nil
208 "Hook that is run right before a remember process is finalized.
209The remember buffer is still current when this hook runs."
210 :group 'org-remember
211 :type 'hook)
212
213(defvar org-remember-mode-map (make-sparse-keymap)
214 "Keymap for org-remember-mode, a minor mode.
215Use this map to set additional keybindings for when Org-mode is used
216for a Remember buffer.")
217(defvar org-remember-mode-hook nil
218 "Hook for the minor `org-remember-mode'.")
219
220(define-minor-mode org-remember-mode
221 "Minor mode for special key bindings in a remember buffer."
222 nil " Rem" org-remember-mode-map
223 (run-hooks 'org-remember-mode-hook))
224(define-key org-remember-mode-map "\C-c\C-c" 'org-remember-finalize)
225(define-key org-remember-mode-map "\C-c\C-k" 'org-remember-kill)
226
b349f79f 227(defcustom org-remember-clock-out-on-exit 'query
ed21c5c8 228 "Non-nil means stop the clock when exiting a clocking remember buffer.
b349f79f
CD
229This only applies if the clock is running in the remember buffer. If the
230clock is not stopped, it continues to run in the storage location.
231Instead of nil or t, this may also be the symbol `query' to prompt the
232user each time a remember buffer with a running clock is filed away. "
233 :group 'org-remember
234 :type '(choice
235 (const :tag "Never" nil)
236 (const :tag "Always" t)
237 (const :tag "Query user" query)))
238
c8d0cf5c
CD
239(defcustom org-remember-backup-directory nil
240 "Directory where to store all remember buffers, for backup purposes.
241After a remember buffer has been stored successfully, the backup file
242will be removed. However, if you forget to finish the remember process,
243the file will remain there.
244See also `org-remember-auto-remove-backup-files'."
245 :group 'org-remember
246 :type '(choice
247 (const :tag "No backups" nil)
248 (directory :tag "Directory")))
249
250(defcustom org-remember-auto-remove-backup-files t
ed21c5c8 251 "Non-nil means remove remember backup files after successfully storage.
c8d0cf5c
CD
252When remember is finished successfully, with storing the note at the
253desired target, remove the backup files related to this remember process
254and show a message about remaining backup files, from previous, unfinished
255remember sessions.
256Backup files will only be made at all, when `org-remember-backup-directory'
257is set."
258 :group 'org-remember
259 :type 'boolean)
b349f79f 260
54a0dee5
CD
261(defcustom org-remember-warn-about-backups t
262 "Non-nil means warn about backup files in `org-remember-backup-directory'.
263
264Set this to nil if you find that you don't need the warning.
265
266If you cancel remember calls frequently and know when they
267contain useful information (because you know that you made an
268error or emacs crashed, for example) nil is more useful. In the
269opposite case, the default, t, is more useful."
270 :group 'org-remember
271 :type 'boolean)
272
20908596
CD
273(defvar annotation) ; from remember.el, dynamically scoped in `remember-mode'
274(defvar initial) ; from remember.el, dynamically scoped in `remember-mode'
275
276;;;###autoload
277(defun org-remember-insinuate ()
621f83e4
CD
278 "Setup remember.el for use with Org-mode."
279 (org-require-remember)
20908596
CD
280 (setq remember-annotation-functions '(org-remember-annotation))
281 (setq remember-handler-functions '(org-remember-handler))
282 (add-hook 'remember-mode-hook 'org-remember-apply-template))
283
284;;;###autoload
285(defun org-remember-annotation ()
286 "Return a link to the current location as an annotation for remember.el.
287If you are using Org-mode files as target for data storage with
288remember.el, then the annotations should include a link compatible with the
289conventions in Org-mode. This function returns such a link."
290 (org-store-link nil))
291
292(defconst org-remember-help
293"Select a destination location for the note.
294UP/DOWN=headline TAB=cycle visibility [Q]uit RET/<left>/<right>=Store
295RET on headline -> Store as sublevel entry to current headline
296RET at beg-of-buf -> Append to file as level 2 headline
297<left>/<right> -> before/after current headline, same headings level")
298
b349f79f 299(defvar org-jump-to-target-location nil)
20908596 300(defvar org-remember-previous-location nil)
8bfe682a 301(defvar org-remember-reference-date nil)
20908596
CD
302(defvar org-force-remember-template-char) ;; dynamically scoped
303
304;; Save the major mode of the buffer we called remember from
305(defvar org-select-template-temp-major-mode nil)
306
307;; Temporary store the buffer where remember was called from
308(defvar org-select-template-original-buffer nil)
309
310(defun org-select-remember-template (&optional use-char)
311 (when org-remember-templates
312 (let* ((pre-selected-templates
313 (mapcar
314 (lambda (tpl)
315 (let ((ctxt (nth 5 tpl))
316 (mode org-select-template-temp-major-mode)
317 (buf org-select-template-original-buffer))
318 (and (or (not ctxt) (eq ctxt t)
319 (and (listp ctxt) (memq mode ctxt))
320 (and (functionp ctxt)
321 (with-current-buffer buf
322 ;; Protect the user-defined function from error
323 (condition-case nil (funcall ctxt) (error nil)))))
324 tpl)))
325 org-remember-templates))
326 ;; If no template at this point, add the default templates:
327 (pre-selected-templates1
328 (if (not (delq nil pre-selected-templates))
329 (mapcar (lambda(x) (if (not (nth 5 x)) x))
330 org-remember-templates)
331 pre-selected-templates))
33306645 332 ;; Then unconditionally add template for any contexts
20908596
CD
333 (pre-selected-templates2
334 (append (mapcar (lambda(x) (if (eq (nth 5 x) t) x))
335 org-remember-templates)
336 (delq nil pre-selected-templates1)))
337 (templates (mapcar (lambda (x)
338 (if (stringp (car x))
339 (append (list (nth 1 x) (car x)) (cddr x))
340 (append (list (car x) "") (cdr x))))
341 (delq nil pre-selected-templates2)))
c8d0cf5c 342 msg
20908596
CD
343 (char (or use-char
344 (cond
345 ((= (length templates) 1)
346 (caar templates))
347 ((and (boundp 'org-force-remember-template-char)
348 org-force-remember-template-char)
349 (if (stringp org-force-remember-template-char)
350 (string-to-char org-force-remember-template-char)
351 org-force-remember-template-char))
352 (t
c8d0cf5c 353 (setq msg (format
ed21c5c8 354 "Select template: %s%s"
c8d0cf5c
CD
355 (mapconcat
356 (lambda (x)
357 (cond
358 ((not (string-match "\\S-" (nth 1 x)))
359 (format "[%c]" (car x)))
360 ((equal (downcase (car x))
361 (downcase (aref (nth 1 x) 0)))
362 (format "[%c]%s" (car x)
363 (substring (nth 1 x) 1)))
364 (t (format "[%c]%s" (car x) (nth 1 x)))))
ed21c5c8
CD
365 templates " ")
366 (if (assoc ?C templates)
367 ""
368 " [C]customize templates")))
c8d0cf5c
CD
369 (let ((inhibit-quit t) char0)
370 (while (not char0)
371 (message msg)
372 (setq char0 (read-char-exclusive))
373 (when (and (not (assoc char0 templates))
ed21c5c8
CD
374 (not (equal char0 ?\C-g))
375 (not (equal char0 ?C)))
c8d0cf5c
CD
376 (message "No such template \"%c\"" char0)
377 (ding) (sit-for 1)
378 (setq char0 nil)))
20908596
CD
379 (when (equal char0 ?\C-g)
380 (jump-to-register remember-register)
c8d0cf5c
CD
381 (kill-buffer remember-buffer)
382 (error "Abort"))
ed21c5c8
CD
383 (when (not (assoc char0 templates))
384 (jump-to-register remember-register)
385 (kill-buffer remember-buffer)
386 (customize-variable 'org-remember-templates)
387 (error "Customize templates"))
20908596
CD
388 char0))))))
389 (cddr (assoc char templates)))))
390
391(defun org-get-x-clipboard (value)
33306645 392 "Get the value of the x clipboard, compatible with XEmacs, and GNU Emacs 21."
20908596 393 (if (eq window-system 'x)
621f83e4
CD
394 (let ((x (org-get-x-clipboard-compat value)))
395 (if x (org-no-properties x)))))
20908596
CD
396
397;;;###autoload
398(defun org-remember-apply-template (&optional use-char skip-interactive)
399 "Initialize *remember* buffer with template, invoke `org-mode'.
400This function should be placed into `remember-mode-hook' and in fact requires
401to be run from that hook to function properly."
621f83e4
CD
402 (when (and (boundp 'initial) (stringp initial))
403 (setq initial (org-no-properties initial))
404 (remove-text-properties 0 (length initial) '(read-only t) initial))
20908596
CD
405 (if org-remember-templates
406 (let* ((entry (org-select-remember-template use-char))
b349f79f 407 (ct (or org-overriding-default-time (org-current-time)))
621f83e4
CD
408 (dct (decode-time ct))
409 (ct1
410 (if (< (nth 2 dct) org-extend-today-until)
411 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct))
412 ct))
20908596
CD
413 (tpl (car entry))
414 (plist-p (if org-store-link-plist t nil))
ff4be292 415 (file (if (and (nth 1 entry)
621f83e4
CD
416 (or (and (stringp (nth 1 entry))
417 (string-match "\\S-" (nth 1 entry)))
418 (functionp (nth 1 entry))))
20908596
CD
419 (nth 1 entry)
420 org-default-notes-file))
421 (headline (nth 2 entry))
422 (v-c (and (> (length kill-ring) 0) (current-kill 0)))
423 (v-x (or (org-get-x-clipboard 'PRIMARY)
424 (org-get-x-clipboard 'CLIPBOARD)
425 (org-get-x-clipboard 'SECONDARY)))
b349f79f
CD
426 (v-t (format-time-string (car org-time-stamp-formats) ct))
427 (v-T (format-time-string (cdr org-time-stamp-formats) ct))
20908596
CD
428 (v-u (concat "[" (substring v-t 1 -1) "]"))
429 (v-U (concat "[" (substring v-T 1 -1) "]"))
c8d0cf5c
CD
430 ;; `initial' and `annotation' are bound in `remember'.
431 ;; But if the property list has them, we prefer those values
432 (v-i (or (plist-get org-store-link-plist :initial)
433 (and (boundp 'initial) initial)
434 ""))
435 (v-a (or (plist-get org-store-link-plist :annotation)
436 (and (boundp 'annotation) annotation)
437 ""))
438 ;; Is the link empty? Then we do not want it...
439 (v-a (if (equal v-a "[[]]") "" v-a))
20908596
CD
440 (clipboards (remove nil (list v-i
441 (org-get-x-clipboard 'PRIMARY)
442 (org-get-x-clipboard 'CLIPBOARD)
443 (org-get-x-clipboard 'SECONDARY)
444 v-c)))
445 (v-A (if (and v-a
446 (string-match "\\[\\(\\[.*?\\]\\)\\(\\[.*?\\]\\)?\\]" v-a))
447 (replace-match "[\\1[%^{Link description}]]" nil nil v-a)
448 v-a))
449 (v-n user-full-name)
621f83e4 450 (v-k (if (marker-buffer org-clock-marker)
ce4fdcb9 451 (org-substring-no-properties org-clock-heading)))
621f83e4
CD
452 (v-K (if (marker-buffer org-clock-marker)
453 (org-make-link-string
454 (buffer-file-name (marker-buffer org-clock-marker))
455 org-clock-heading)))
456 v-I
20908596 457 (org-startup-folded nil)
621f83e4 458 (org-inhibit-startup t)
20908596
CD
459 org-time-was-given org-end-time-was-given x
460 prompt completions char time pos default histvar)
621f83e4
CD
461
462 (when (functionp file)
463 (setq file (funcall file)))
c8d0cf5c
CD
464 (when (functionp headline)
465 (setq headline (funcall headline)))
20908596
CD
466 (when (and file (not (file-name-absolute-p file)))
467 (setq file (expand-file-name file org-directory)))
621f83e4 468
20908596 469 (setq org-store-link-plist
c8d0cf5c
CD
470 (plist-put org-store-link-plist :annotation v-a)
471 org-store-link-plist
472 (plist-put org-store-link-plist :initial v-i))
473
20908596
CD
474 (unless tpl (setq tpl "") (message "No template") (ding) (sit-for 1))
475 (erase-buffer)
476 (insert (substitute-command-keys
477 (format
621f83e4
CD
478"## %s \"%s\" -> \"* %s\"
479## C-u C-c C-c like C-c C-c, and immediately visit note at target location
480## C-0 C-c C-c \"%s\" -> \"* %s\"
20908596 481## %s to select file and header location interactively.
ed21c5c8 482## C-2 C-c C-c as child (C-3: as sibling) of the currently clocked item
20908596 483## To switch templates, use `\\[org-remember]'. To abort use `C-c C-k'.\n\n"
621f83e4 484 (if org-remember-store-without-prompt " C-c C-c" " C-1 C-c C-c")
20908596
CD
485 (abbreviate-file-name (or file org-default-notes-file))
486 (or headline "")
487 (or (car org-remember-previous-location) "???")
621f83e4
CD
488 (or (cdr org-remember-previous-location) "???")
489 (if org-remember-store-without-prompt "C-1 C-c C-c" " C-c C-c"))))
490 (insert tpl)
621f83e4 491
ed21c5c8
CD
492 ;; %[] Insert contents of a file.
493 (goto-char (point-min))
494 (while (re-search-forward "%\\[\\(.+\\)\\]" nil t)
495 (unless (org-remember-escaped-%)
496 (let ((start (match-beginning 0))
497 (end (match-end 0))
498 (filename (expand-file-name (match-string 1))))
499 (goto-char start)
500 (delete-region start end)
501 (condition-case error
502 (insert-file-contents filename)
503 (error (insert (format "%%![Couldn't insert %s: %s]"
504 filename error)))))))
20908596 505 ;; Simple %-escapes
ed21c5c8 506 (goto-char (point-min))
621f83e4 507 (while (re-search-forward "%\\([tTuUaiAcxkKI]\\)" nil t)
54a0dee5
CD
508 (unless (org-remember-escaped-%)
509 (when (and initial (equal (match-string 0) "%i"))
510 (save-match-data
511 (let* ((lead (buffer-substring
512 (point-at-bol) (match-beginning 0))))
513 (setq v-i (mapconcat 'identity
514 (org-split-string initial "\n")
515 (concat "\n" lead))))))
516 (replace-match
517 (or (eval (intern (concat "v-" (match-string 1)))) "")
518 t t)))
20908596 519
20908596
CD
520 ;; %() embedded elisp
521 (goto-char (point-min))
522 (while (re-search-forward "%\\((.+)\\)" nil t)
54a0dee5
CD
523 (unless (org-remember-escaped-%)
524 (goto-char (match-beginning 0))
525 (let ((template-start (point)))
526 (forward-char 1)
527 (let ((result
528 (condition-case error
529 (eval (read (current-buffer)))
530 (error (format "%%![Error: %s]" error)))))
531 (delete-region template-start (point))
532 (insert result)))))
20908596
CD
533
534 ;; From the property list
535 (when plist-p
536 (goto-char (point-min))
537 (while (re-search-forward "%\\(:[-a-zA-Z]+\\)" nil t)
54a0dee5 538 (unless (org-remember-escaped-%)
20908596
CD
539 (and (setq x (or (plist-get org-store-link-plist
540 (intern (match-string 1))) ""))
54a0dee5 541 (replace-match x t t)))))
20908596
CD
542
543 ;; Turn on org-mode in the remember buffer, set local variables
ce4fdcb9 544 (let ((org-inhibit-startup t)) (org-mode) (org-remember-mode 1))
20908596
CD
545 (if (and file (string-match "\\S-" file) (not (file-directory-p file)))
546 (org-set-local 'org-default-notes-file file))
b349f79f 547 (if headline
20908596 548 (org-set-local 'org-remember-default-headline headline))
8bfe682a
CD
549 (org-set-local 'org-remember-reference-date
550 (list (nth 4 dct) (nth 3 dct) (nth 5 dct)))
20908596
CD
551 ;; Interactive template entries
552 (goto-char (point-min))
621f83e4 553 (while (re-search-forward "%^\\({\\([^}]*\\)}\\)?\\([gGtTuUCLp]\\)?" nil t)
54a0dee5
CD
554 (unless (org-remember-escaped-%)
555 (setq char (if (match-end 3) (match-string 3))
556 prompt (if (match-end 2) (match-string 2)))
557 (goto-char (match-beginning 0))
558 (replace-match "")
559 (setq completions nil default nil)
560 (when prompt
561 (setq completions (org-split-string prompt "|")
562 prompt (pop completions)
563 default (car completions)
564 histvar (intern (concat
565 "org-remember-template-prompt-history::"
566 (or prompt "")))
567 completions (mapcar 'list completions)))
568 (cond
569 ((member char '("G" "g"))
570 (let* ((org-last-tags-completion-table
571 (org-global-tags-completion-table
572 (if (equal char "G") (org-agenda-files) (and file (list file)))))
573 (org-add-colon-after-tag-completion t)
574 (ins (org-icompleting-read
575 (if prompt (concat prompt ": ") "Tags: ")
576 'org-tags-completion-function nil nil nil
577 'org-tags-history)))
578 (setq ins (mapconcat 'identity
579 (org-split-string ins (org-re "[^[:alnum:]_@]+"))
580 ":"))
581 (when (string-match "\\S-" ins)
582 (or (equal (char-before) ?:) (insert ":"))
583 (insert ins)
584 (or (equal (char-after) ?:) (insert ":")))))
585 ((equal char "C")
586 (cond ((= (length clipboards) 1) (insert (car clipboards)))
587 ((> (length clipboards) 1)
588 (insert (read-string "Clipboard/kill value: "
589 (car clipboards) '(clipboards . 1)
590 (car clipboards))))))
591 ((equal char "L")
592 (cond ((= (length clipboards) 1)
593 (org-insert-link 0 (car clipboards)))
594 ((> (length clipboards) 1)
595 (org-insert-link 0 (read-string "Clipboard/kill value: "
596 (car clipboards)
597 '(clipboards . 1)
598 (car clipboards))))))
599 ((equal char "p")
600 (let*
601 ((prop (org-substring-no-properties prompt))
602 (pall (concat prop "_ALL"))
603 (allowed
604 (with-current-buffer
8bfe682a
CD
605 (or (find-buffer-visiting file)
606 (find-file-noselect file))
54a0dee5
CD
607 (or (cdr (assoc pall org-file-properties))
608 (cdr (assoc pall org-global-properties))
609 (cdr (assoc pall org-global-properties-fixed)))))
610 (existing (with-current-buffer
8bfe682a
CD
611 (or (find-buffer-visiting file)
612 (find-file-noselect file))
54a0dee5
CD
613 (mapcar 'list (org-property-values prop))))
614 (propprompt (concat "Value for " prop ": "))
615 (val (if allowed
616 (org-completing-read
617 propprompt
618 (mapcar 'list (org-split-string allowed "[ \t]+"))
619 nil 'req-match)
620 (org-completing-read-no-i propprompt existing nil nil
621 "" nil ""))))
622 (org-set-property prop val)))
623 (char
624 ;; These are the date/time related ones
625 (setq org-time-was-given (equal (upcase char) char))
626 (setq time (org-read-date (equal (upcase char) "U") t nil
627 prompt))
628 (org-insert-time-stamp time org-time-was-given
629 (member char '("u" "U"))
630 nil nil (list org-end-time-was-given)))
631 (t
632 (let (org-completion-use-ido)
8bfe682a
CD
633 (insert (org-without-partial-completion
634 (org-completing-read-no-i
635 (concat (if prompt prompt "Enter string")
636 (if default (concat " [" default "]"))
637 ": ")
638 completions nil nil nil histvar default))))))))
54a0dee5 639
20908596
CD
640 (goto-char (point-min))
641 (if (re-search-forward "%\\?" nil t)
642 (replace-match "")
643 (and (re-search-forward "^[^#\n]" nil t) (backward-char 1))))
ce4fdcb9 644 (let ((org-inhibit-startup t)) (org-mode) (org-remember-mode 1)))
b349f79f
CD
645 (when (save-excursion
646 (goto-char (point-min))
647 (re-search-forward "%&" nil t))
648 (replace-match "")
649 (org-set-local 'org-jump-to-target-location t))
c8d0cf5c
CD
650 (when org-remember-backup-directory
651 (unless (file-directory-p org-remember-backup-directory)
652 (make-directory org-remember-backup-directory))
653 (org-set-local 'auto-save-file-name-transforms nil)
654 (setq buffer-file-name
655 (expand-file-name
656 (format-time-string "remember-%Y-%m-%d-%H-%M-%S")
657 org-remember-backup-directory))
658 (save-buffer)
659 (org-set-local 'auto-save-visited-file-name t)
660 (auto-save-mode 1))
20908596
CD
661 (when (save-excursion
662 (goto-char (point-min))
663 (re-search-forward "%!" nil t))
664 (replace-match "")
665 (add-hook 'post-command-hook 'org-remember-finish-immediately 'append)))
666
54a0dee5
CD
667(defun org-remember-escaped-% ()
668 (if (equal (char-before (match-beginning 0)) ?\\)
669 (progn
670 (delete-region (1- (match-beginning 0)) (match-beginning 0))
671 t)
672 nil))
673
674
20908596
CD
675(defun org-remember-finish-immediately ()
676 "File remember note immediately.
677This should be run in `post-command-hook' and will remove itself
678from that hook."
679 (remove-hook 'post-command-hook 'org-remember-finish-immediately)
ce4fdcb9 680 (org-remember-finalize))
20908596 681
b349f79f
CD
682(defun org-remember-visit-immediately ()
683 "File remember note immediately.
684This should be run in `post-command-hook' and will remove itself
685from that hook."
686 (org-remember '(16))
687 (goto-char (or (text-property-any
688 (point) (save-excursion (org-end-of-subtree t t))
689 'org-position-cursor t)
690 (point)))
691 (message "%s"
692 (format
ff4be292 693 (substitute-command-keys
b349f79f
CD
694 "Restore window configuration with \\[jump-to-register] %c")
695 remember-register)))
696
697(defvar org-clock-marker) ; Defined in org.el
20908596
CD
698(defun org-remember-finalize ()
699 "Finalize the remember process."
ce4fdcb9
CD
700 (interactive)
701 (unless org-remember-mode
702 (error "This does not seem to be a remember buffer for Org-mode"))
703 (run-hooks 'org-remember-before-finalize-hook)
20908596
CD
704 (unless (fboundp 'remember-finalize)
705 (defalias 'remember-finalize 'remember-buffer))
706 (when (and org-clock-marker
707 (equal (marker-buffer org-clock-marker) (current-buffer)))
b349f79f
CD
708 ;; the clock is running in this buffer.
709 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
710 (or (eq org-remember-clock-out-on-exit t)
711 (and org-remember-clock-out-on-exit
712 (y-or-n-p "The clock is running in this buffer. Clock out now? "))))
713 (let (org-log-note-clock-out) (org-clock-out))))
20908596 714 (when buffer-file-name
c8d0cf5c 715 (do-auto-save))
20908596
CD
716 (remember-finalize))
717
ce4fdcb9
CD
718(defun org-remember-kill ()
719 "Abort the current remember process."
720 (interactive)
721 (let ((org-note-abort t))
722 (org-remember-finalize)))
723
20908596
CD
724;;;###autoload
725(defun org-remember (&optional goto org-force-remember-template-char)
726 "Call `remember'. If this is already a remember buffer, re-apply template.
727If there is an active region, make sure remember uses it as initial content
728of the remember buffer.
729
730When called interactively with a `C-u' prefix argument GOTO, don't remember
731anything, just go to the file/headline where the selected template usually
732stores its notes. With a double prefix arg `C-u C-u', go to the last
733note stored by remember.
734
735Lisp programs can set ORG-FORCE-REMEMBER-TEMPLATE-CHAR to a character
736associated with a template in `org-remember-templates'."
737 (interactive "P")
621f83e4 738 (org-require-remember)
20908596
CD
739 (cond
740 ((equal goto '(4)) (org-go-to-remember-target))
741 ((equal goto '(16)) (org-remember-goto-last-stored))
742 (t
743 ;; set temporary variables that will be needed in
744 ;; `org-select-remember-template'
745 (setq org-select-template-temp-major-mode major-mode)
746 (setq org-select-template-original-buffer (current-buffer))
ce4fdcb9 747 (if org-remember-mode
20908596
CD
748 (progn
749 (when (< (length org-remember-templates) 2)
750 (error "No other template available"))
751 (erase-buffer)
752 (let ((annotation (plist-get org-store-link-plist :annotation))
753 (initial (plist-get org-store-link-plist :initial)))
754 (org-remember-apply-template))
755 (message "Press C-c C-c to remember data"))
756 (if (org-region-active-p)
757 (org-do-remember (buffer-substring (point) (mark)))
758 (org-do-remember))))))
759
b349f79f
CD
760(defvar org-remember-last-stored-marker (make-marker)
761 "Marker pointing to the entry most recently stored with `org-remember'.")
762
20908596
CD
763(defun org-remember-goto-last-stored ()
764 "Go to the location where the last remember note was stored."
765 (interactive)
b349f79f
CD
766 (org-goto-marker-or-bmk org-remember-last-stored-marker
767 "org-remember-last-stored")
20908596
CD
768 (message "This is the last note stored by remember"))
769
770(defun org-go-to-remember-target (&optional template-key)
771 "Go to the target location of a remember template.
772The user is queried for the template."
773 (interactive)
774 (let* (org-select-template-temp-major-mode
775 (entry (org-select-remember-template template-key))
776 (file (nth 1 entry))
777 (heading (nth 2 entry))
778 visiting)
779 (unless (and file (stringp file) (string-match "\\S-" file))
780 (setq file org-default-notes-file))
781 (when (and file (not (file-name-absolute-p file)))
782 (setq file (expand-file-name file org-directory)))
783 (unless (and heading (stringp heading) (string-match "\\S-" heading))
784 (setq heading org-remember-default-headline))
785 (setq visiting (org-find-base-buffer-visiting file))
786 (if (not visiting) (find-file-noselect file))
787 (switch-to-buffer (or visiting (get-file-buffer file)))
788 (widen)
789 (goto-char (point-min))
790 (if (re-search-forward
8d642074 791 (format org-complex-heading-regexp-format (regexp-quote heading))
20908596
CD
792 nil t)
793 (goto-char (match-beginning 0))
794 (error "Target headline not found: %s" heading))))
795
c8d0cf5c
CD
796;; FIXME (bzg): let's clean up of final empty lines happen only once
797;; (see the org-remember-delete-empty-lines-at-end option below)
20908596
CD
798;;;###autoload
799(defun org-remember-handler ()
800 "Store stuff from remember.el into an org file.
621f83e4
CD
801When the template has specified a file and a headline, the entry is filed
802there, or in the location defined by `org-default-notes-file' and
803`org-remember-default-headline'.
804
805If no defaults have been defined, or if the current prefix argument
806is 1 (so you must use `C-1 C-c C-c' to exit remember), an interactive
807process is used to select the target location.
808
809When the prefix is 0 (i.e. when remember is exited with `C-0 C-c C-c'),
810the entry is filed to the same location as the previous note.
811
812When the prefix is 2 (i.e. when remember is exited with `C-2 C-c C-c'),
33306645 813the entry is filed as a subentry of the entry where the clock is
621f83e4
CD
814currently running.
815
816When `C-u' has been used as prefix argument, the note is stored and emacs
817moves point to the new location of the note, so that editing can be
33306645 818continued there (similar to inserting \"%&\" into the template).
621f83e4
CD
819
820Before storing the note, the function ensures that the text has an
821org-mode-style headline, i.e. a first line that starts with
822a \"*\". If not, a headline is constructed from the current date and
823some additional data.
20908596
CD
824
825If the variable `org-adapt-indentation' is non-nil, the entire text is
826also indented so that it starts in the same column as the headline
827\(i.e. after the stars).
828
829See also the variable `org-reverse-note-order'."
621f83e4
CD
830 (when (and (equal current-prefix-arg 2)
831 (not (marker-buffer org-clock-marker)))
93b62de8 832 (error "No running clock"))
b349f79f
CD
833 (when (org-bound-and-true-p org-jump-to-target-location)
834 (let* ((end (min (point-max) (1+ (point))))
835 (beg (point)))
836 (if (= end beg) (setq beg (1- beg)))
837 (put-text-property beg end 'org-position-cursor t)))
20908596
CD
838 (goto-char (point-min))
839 (while (looking-at "^[ \t]*\n\\|^##.*\n")
840 (replace-match ""))
c8d0cf5c
CD
841 (when org-remember-delete-empty-lines-at-end
842 (goto-char (point-max))
843 (beginning-of-line 1)
844 (while (and (looking-at "[ \t]*$\\|##.*") (> (point) 1))
845 (delete-region (1- (point)) (point-max))
846 (beginning-of-line 1)))
20908596 847 (catch 'quit
c8d0cf5c 848 (if org-note-abort (throw 'quit t))
b349f79f 849 (let* ((visitp (org-bound-and-true-p org-jump-to-target-location))
c8d0cf5c
CD
850 (backup-file
851 (and buffer-file-name
852 (equal (file-name-directory buffer-file-name)
853 (file-name-as-directory
854 (expand-file-name org-remember-backup-directory)))
855 (string-match "^remember-[0-9]\\{4\\}"
856 (file-name-nondirectory buffer-file-name))
857 buffer-file-name))
858
859 (dummy
860 (unless (string-match "\\S-" (buffer-string))
861 (message "Nothing to remember")
862 (and backup-file
863 (ignore-errors
864 (delete-file backup-file)
865 (delete-file (concat backup-file "~"))))
866 (set-buffer-modified-p nil)
867 (throw 'quit t)))
8bfe682a 868 (reference-date org-remember-reference-date)
621f83e4
CD
869 (previousp (and (member current-prefix-arg '((16) 0))
870 org-remember-previous-location))
871 (clockp (equal current-prefix-arg 2))
ed21c5c8 872 (clocksp (equal current-prefix-arg 3))
621f83e4 873 (fastp (org-xor (equal current-prefix-arg 1)
20908596
CD
874 org-remember-store-without-prompt))
875 (file (cond
876 (fastp org-default-notes-file)
877 ((and (eq org-remember-interactive-interface 'refile)
878 org-refile-targets)
879 org-default-notes-file)
621f83e4 880 ((not previousp)
20908596
CD
881 (org-get-org-file))))
882 (heading org-remember-default-headline)
883 (visiting (and file (org-find-base-buffer-visiting file)))
884 (org-startup-folded nil)
885 (org-startup-align-all-tables nil)
886 (org-goto-start-pos 1)
c8d0cf5c 887 spos exitcmd level reversed txt text-before-node-creation)
621f83e4
CD
888 (when (equal current-prefix-arg '(4))
889 (setq visitp t))
890 (when previousp
891 (setq file (car org-remember-previous-location)
93b62de8 892 visiting (and file (org-find-base-buffer-visiting file))
621f83e4
CD
893 heading (cdr org-remember-previous-location)
894 fastp t))
ed21c5c8 895 (when (or clockp clocksp)
621f83e4 896 (setq file (buffer-file-name (marker-buffer org-clock-marker))
93b62de8 897 visiting (and file (org-find-base-buffer-visiting file))
621f83e4
CD
898 heading org-clock-heading-for-remember
899 fastp t))
20908596 900 (setq current-prefix-arg nil)
20908596
CD
901 ;; Modify text so that it becomes a nice subtree which can be inserted
902 ;; into an org tree.
c8d0cf5c
CD
903 (when org-remember-delete-empty-lines-at-end
904 (goto-char (point-min))
905 (if (re-search-forward "[ \t\n]+\\'" nil t)
906 ;; remove empty lines at end
907 (replace-match "")))
b349f79f 908 (goto-char (point-min))
8bfe682a 909 (setq text-before-node-creation (buffer-string))
b349f79f
CD
910 (unless (looking-at org-outline-regexp)
911 ;; add a headline
912 (insert (concat "* " (current-time-string)
913 " (" (remember-buffer-desc) ")\n"))
914 (backward-char 1)
915 (when org-adapt-indentation
916 (while (re-search-forward "^" nil t)
917 (insert " "))))
c8d0cf5c
CD
918 ;; Delete final empty lines
919 (when org-remember-delete-empty-lines-at-end
920 (goto-char (point-min))
921 (if (re-search-forward "\n[ \t]*\n[ \t\n]*\\'" nil t)
922 (replace-match "\n\n")
923 (if (re-search-forward "[ \t\n]*\\'")
924 (replace-match "\n"))))
b349f79f
CD
925 (goto-char (point-min))
926 (setq txt (buffer-string))
927 (org-save-markers-in-region (point-min) (point-max))
c8d0cf5c 928 (set-buffer-modified-p nil)
20908596
CD
929 (when (and (eq org-remember-interactive-interface 'refile)
930 (not fastp))
931 (org-refile nil (or visiting (find-file-noselect file)))
b349f79f 932 (and visitp (run-with-idle-timer 0.01 nil 'org-remember-visit-immediately))
ce4fdcb9
CD
933 (save-excursion
934 (bookmark-jump "org-refile-last-stored")
935 (bookmark-set "org-remember-last-stored")
936 (move-marker org-remember-last-stored-marker (point)))
20908596
CD
937 (throw 'quit t))
938 ;; Find the file
bb31cb31 939 (with-current-buffer (or visiting (find-file-noselect file))
c8d0cf5c
CD
940 (unless (or (org-mode-p) (member heading '(top bottom)))
941 (error "Target files for notes must be in Org-mode if not filing to top/bottom"))
20908596
CD
942 (save-excursion
943 (save-restriction
944 (widen)
20908596
CD
945 (setq reversed (org-notes-order-reversed-p))
946
947 ;; Find the default location
b349f79f
CD
948 (when heading
949 (cond
c8d0cf5c
CD
950 ((not (org-mode-p))
951 (if (eq heading 'top)
952 (goto-char (point-min))
953 (goto-char (point-max))
954 (or (bolp) (newline)))
955 (insert text-before-node-creation)
956 (when remember-save-after-remembering
957 (save-buffer)
958 (if (not visiting) (kill-buffer (current-buffer))))
959 (throw 'quit t))
b349f79f
CD
960 ((eq heading 'top)
961 (goto-char (point-min))
962 (or (looking-at org-outline-regexp)
963 (re-search-forward org-outline-regexp nil t))
964 (setq org-goto-start-pos (or (match-beginning 0) (point-min))))
965 ((eq heading 'bottom)
966 (goto-char (point-max))
b349f79f
CD
967 (or (bolp) (newline))
968 (setq org-goto-start-pos (point)))
8bfe682a
CD
969 ((eq heading 'date-tree)
970 (org-datetree-find-date-create reference-date)
971 (setq reversed nil)
972 (setq org-goto-start-pos (point)))
b349f79f
CD
973 ((and (stringp heading) (string-match "\\S-" heading))
974 (goto-char (point-min))
975 (if (re-search-forward
8d642074
CD
976 (format org-complex-heading-regexp-format
977 (regexp-quote heading))
b349f79f
CD
978 nil t)
979 (setq org-goto-start-pos (match-beginning 0))
980 (when fastp
981 (goto-char (point-max))
982 (unless (bolp) (newline))
983 (insert "* " heading "\n")
984 (setq org-goto-start-pos (point-at-bol 0)))))
985 (t (goto-char (point-min)) (setq org-goto-start-pos (point)
986 heading 'top))))
20908596
CD
987
988 ;; Ask the User for a location, using the appropriate interface
989 (cond
b349f79f
CD
990 ((and fastp (memq heading '(top bottom)))
991 (setq spos org-goto-start-pos
621f83e4 992 exitcmd (if (eq heading 'top) 'left nil)))
20908596
CD
993 (fastp (setq spos org-goto-start-pos
994 exitcmd 'return))
995 ((eq org-remember-interactive-interface 'outline)
996 (setq spos (org-get-location (current-buffer)
997 org-remember-help)
998 exitcmd (cdr spos)
999 spos (car spos)))
1000 ((eq org-remember-interactive-interface 'outline-path-completion)
1001 (let ((org-refile-targets '((nil . (:maxlevel . 10))))
1002 (org-refile-use-outline-path t))
1003 (setq spos (org-refile-get-location "Heading: ")
1004 exitcmd 'return
1005 spos (nth 3 spos))))
1006 (t (error "This should not happen")))
1007 (if (not spos) (throw 'quit nil)) ; return nil to show we did
1008 ; not handle this note
b349f79f 1009 (and visitp (run-with-idle-timer 0.01 nil 'org-remember-visit-immediately))
20908596
CD
1010 (goto-char spos)
1011 (cond ((org-on-heading-p t)
1012 (org-back-to-heading t)
1013 (setq level (funcall outline-level))
1014 (cond
1015 ((eq exitcmd 'return)
1016 ;; sublevel of current
1017 (setq org-remember-previous-location
1018 (cons (abbreviate-file-name file)
1019 (org-get-heading 'notags)))
1020 (if reversed
1021 (outline-next-heading)
1022 (org-end-of-subtree t)
1023 (if (not (bolp))
1024 (if (looking-at "[ \t]*\n")
1025 (beginning-of-line 2)
1026 (end-of-line 1)
1027 (insert "\n"))))
ed21c5c8
CD
1028 (org-paste-subtree (if clocksp
1029 level
1030 (org-get-valid-level level 1)) txt)
b349f79f 1031 (and org-auto-align-tags (org-set-tags nil t))
20908596 1032 (bookmark-set "org-remember-last-stored")
b349f79f 1033 (move-marker org-remember-last-stored-marker (point)))
20908596
CD
1034 ((eq exitcmd 'left)
1035 ;; before current
b349f79f
CD
1036 (org-paste-subtree level txt)
1037 (and org-auto-align-tags (org-set-tags nil t))
20908596 1038 (bookmark-set "org-remember-last-stored")
b349f79f 1039 (move-marker org-remember-last-stored-marker (point)))
20908596
CD
1040 ((eq exitcmd 'right)
1041 ;; after current
1042 (org-end-of-subtree t)
b349f79f
CD
1043 (org-paste-subtree level txt)
1044 (and org-auto-align-tags (org-set-tags nil t))
20908596 1045 (bookmark-set "org-remember-last-stored")
b349f79f 1046 (move-marker org-remember-last-stored-marker (point)))
20908596
CD
1047 (t (error "This should not happen"))))
1048
621f83e4
CD
1049 ((eq heading 'bottom)
1050 (org-paste-subtree 1 txt)
1051 (and org-auto-align-tags (org-set-tags nil t))
1052 (bookmark-set "org-remember-last-stored")
1053 (move-marker org-remember-last-stored-marker (point)))
1054
20908596
CD
1055 ((and (bobp) (not reversed))
1056 ;; Put it at the end, one level below level 1
1057 (save-restriction
1058 (widen)
1059 (goto-char (point-max))
1060 (if (not (bolp)) (newline))
b349f79f
CD
1061 (org-paste-subtree (org-get-valid-level 1 1) txt)
1062 (and org-auto-align-tags (org-set-tags nil t))
20908596 1063 (bookmark-set "org-remember-last-stored")
b349f79f 1064 (move-marker org-remember-last-stored-marker (point))))
20908596
CD
1065
1066 ((and (bobp) reversed)
1067 ;; Put it at the start, as level 1
1068 (save-restriction
1069 (widen)
1070 (goto-char (point-min))
1071 (re-search-forward "^\\*+ " nil t)
1072 (beginning-of-line 1)
b349f79f
CD
1073 (org-paste-subtree 1 txt)
1074 (and org-auto-align-tags (org-set-tags nil t))
20908596 1075 (bookmark-set "org-remember-last-stored")
b349f79f 1076 (move-marker org-remember-last-stored-marker (point))))
20908596
CD
1077 (t
1078 ;; Put it right there, with automatic level determined by
1079 ;; org-paste-subtree or from prefix arg
20908596
CD
1080 (org-paste-subtree
1081 (if (numberp current-prefix-arg) current-prefix-arg)
b349f79f
CD
1082 txt)
1083 (and org-auto-align-tags (org-set-tags nil t))
1084 (bookmark-set "org-remember-last-stored")
1085 (move-marker org-remember-last-stored-marker (point))))
1086
20908596
CD
1087 (when remember-save-after-remembering
1088 (save-buffer)
b349f79f
CD
1089 (if (and (not visiting)
1090 (not (equal (marker-buffer org-clock-marker)
1091 (current-buffer))))
c8d0cf5c
CD
1092 (kill-buffer (current-buffer))))
1093 (when org-remember-auto-remove-backup-files
1094 (when backup-file
1095 (ignore-errors
1096 (delete-file backup-file)
1097 (delete-file (concat backup-file "~"))))
1098 (when org-remember-backup-directory
1099 (let ((n (length
1100 (directory-files
1101 org-remember-backup-directory nil
1102 "^remember-.*[0-9]$"))))
54a0dee5
CD
1103 (when (and org-remember-warn-about-backups
1104 (> n 0))
c8d0cf5c
CD
1105 (message
1106 "%d backup files (unfinished remember calls) in %s"
1107 n org-remember-backup-directory))))))))))
20908596
CD
1108
1109 t) ;; return t to indicate that we took care of this note.
1110
20908596
CD
1111(defun org-do-remember (&optional initial)
1112 "Call remember."
1113 (remember initial))
1114
621f83e4
CD
1115(defun org-require-remember ()
1116 "Make sure remember is loaded, or install our own emergency version of it."
1117 (condition-case nil
1118 (require 'remember)
1119 (error
1120 ;; Lets install our own micro version of remember
1121 (defvar remember-register ?R)
1122 (defvar remember-mode-hook nil)
1123 (defvar remember-handler-functions nil)
1124 (defvar remember-buffer "*Remember*")
1125 (defvar remember-save-after-remembering t)
1126 (defvar remember-annotation-functions '(buffer-file-name))
1127 (defun remember-finalize ()
1128 (run-hook-with-args-until-success 'remember-handler-functions)
1129 (when (equal remember-buffer (buffer-name))
1130 (kill-buffer (current-buffer))
1131 (jump-to-register remember-register)))
1132 (defun remember-mode ()
1133 (fundamental-mode)
1134 (setq mode-name "Remember")
1135 (run-hooks 'remember-mode-hook))
1136 (defun remember (&optional initial)
1137 (window-configuration-to-register remember-register)
1138 (let* ((annotation (run-hook-with-args-until-success
1139 'remember-annotation-functions)))
1140 (switch-to-buffer-other-window (get-buffer-create remember-buffer))
1141 (remember-mode)))
1142 (defun remember-buffer-desc ()
1143 (buffer-substring (point-min) (save-excursion (goto-char (point-min))
1144 (point-at-eol)))))))
1145
20908596
CD
1146(provide 'org-remember)
1147
88ac7b50 1148;; arch-tag: 497f30d0-4bc3-4097-8622-2d27ac5f2698
b349f79f
CD
1149
1150;;; org-remember.el ends here
c8d0cf5c 1151