1;;; remember --- a mode for quickly jotting down things to remember 2 3;; Copyright (C) 1999-2001, 2003-2021 Free Software Foundation, Inc. 4 5;; Author: John Wiegley <johnw@gnu.org> 6;; Maintainer: emacs-devel@gnu.org 7;; Created: 29 Mar 1999 8;; Version: 2.0 9;; Keywords: data memory todo pim 10;; URL: http://gna.org/projects/remember-el/ 11 12;; This file is part of GNU Emacs. 13 14;; GNU Emacs is free software: you can redistribute it and/or modify 15;; it under the terms of the GNU General Public License as published by 16;; the Free Software Foundation, either version 3 of the License, or 17;; (at your option) any later version. 18 19;; GNU Emacs is distributed in the hope that it will be useful, 20;; but WITHOUT ANY WARRANTY; without even the implied warranty of 21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22;; GNU General Public License for more details. 23 24;; You should have received a copy of the GNU General Public License 25;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. 26 27;;; Commentary: 28 29;; * The idea 30;; 31;; Todo lists, schedules, phone databases... everything we use 32;; databases for is really just a way to extend the power of our 33;; memory. To be able to remember what our conscious mind may not 34;; currently have access to. 35;; 36;; There are many different databases out there -- and good ones -- 37;; which this mode is not trying to replace. Rather, it's how that 38;; data gets there that's the question. Most of the time, we just 39;; want to say "Remember so-and-so's phone number, or that I have to 40;; buy dinner for the cats tonight." That's the FACT. How it's 41;; stored is really the computer's problem. But at this point in 42;; time, it's most definitely also the user's problem, and sometimes 43;; so laboriously so that people just let data slip, rather than 44;; expend the effort to record it. 45;; 46;; "Remember" is a mode for remembering data. It uses whatever 47;; back-end is appropriate to record and correlate the data, but it's 48;; main intention is to allow you to express as _little_ structure as 49;; possible up front. If you later want to express more powerful 50;; relationships between your data, or state assumptions that were at 51;; first too implicit to be recognized, you can "study" the data later 52;; and rearrange it. But the initial "just remember this" impulse 53;; should be as close to simply throwing the data at Emacs as 54;; possible. 55;; 56;; * Implementation 57;; 58;; Hyperbole, as a data presentation tool, always struck me as being 59;; very powerful, but it seemed to require a lot of "front-end" work 60;; before that data was really available. The problem with BBDB, or 61;; keeping up a Bibl-mode file, is that you have to use different 62;; functions to record the data, and it always takes time to stop what 63;; you're doing, format the data in the manner expected by that 64;; particular data interface, and then resume your work. 65;; 66;; With "remember", you just hit `M-x remember' (you'd probably want 67;; to bind this to an easily accessible keystroke, like C-x M-r), slam 68;; in your text however you like, and then hit C-c C-c. It will file 69;; the data away for later retrieval, and possibly indexing. 70;; 71;; Indexing is to data what "studying" is in the real world. What you 72;; do when you study (or lucubrate, for some of us) is to realize 73;; certain relationships implicit in the data, so that you can make 74;; use of those relationships. Expressing that a certain quote you 75;; remembered was a religious quote, and that you want the ability to 76;; pull up all quotes of a religious nature, is what studying does. 77;; This is a more labor intensive task than the original remembering 78;; of the data, and it's typical in real life to set aside a special 79;; period of time for doing this work. 80;; 81;; "Remember" works in the same way. When you enter data, either by 82;; typing it into a buffer, or using the contents of the selected 83;; region, it will store that data -- unindexed, uninterpreted -- in a 84;; data pool. It will also try to remember as much context 85;; information as possible (any text properties that were set, where 86;; you copied it from, when, how, etc). Later, you can walk through 87;; your accumulated set of data (both organized, and unorganized) and 88;; easily begin moving things around, and making annotations that will 89;; express the full meaning of that data, as far as you know it. 90;; 91;; Obviously this latter stage is more user-interface intensive, and 92;; it would be nice if "remember" could do it as elegantly as 93;; possible, rather than requiring a billion keystrokes to reorganize 94;; your hierarchy. Well, as the future arrives, hopefully experience 95;; and user feedback will help to make this as intuitive a tool as 96;; possible. 97;; 98;; * Future Goals 99;; 100;; This tool hopes to track (and by doing it with as little new code 101;; as possible): 102;; 103;; - The raw data that gets entered 104;; 105;; - The relationships between that data (either determined 106;; implicitly by parsing the input, or explicitly by the user's 107;; studying the data). 108;; 109;; - Revisioning of the data 110;; 111;; - Where it came from, and any context information that can be 112;; programmatically determined. 113;; 114;; - Allowing particular views of the initially amorphous data pool 115;; (ala the Xanadu concept). 116;; 117;; - Storage of the data in a manner most appropriate to that data, 118;; such as keeping address-book type information in BBDB, etc. 119;; 120;; * Using "remember" 121;; 122;; As a rough beginning, what I do is to keep my `remember-data-file' in 123;; outline-mode format, with a final entry called "* Raw data". Then, 124;; at intervals, I can move the data that gets appended there into 125;; other places. But certainly this should evolve into an intuitive 126;; mechanism for shuffling data off to its appropriate corner of the 127;; universe. 128;; 129;; To map the primary remember function to the keystroke F8, do the 130;; following. 131;; 132;; (autoload 'remember "remember" nil t) 133;; 134;; (define-key global-map [f8] 'remember) 135;; 136;; * Feedback 137;; 138;; If Emacs could become a more intelligent data store, where 139;; brainstorming would focus on the IDEAS involved -- rather than the 140;; structuring and format of those ideas, or having to stop your 141;; current flow of work in order to record them -- it would map much 142;; more closely to how the mind (well, at least mine) works, and hence 143;; would eliminate that very manual-ness which computers from the very 144;; beginning have been championed as being able to reduce. 145;; 146;; Have you ever noticed that having a laptop to write on doesn't 147;; _actually_ increase the amount of quality material that you turn 148;; out, in the long run? Perhaps its because the time we save 149;; electronically in one way, we're losing electronically in another; 150;; the tool should never dominate one's focus. As the mystic 151;; Farīd ud-Dīn ʿAṭṭār wrote: "Be occupied as little as possible with 152;; things of the outer world but much with things of the inner world; 153;; then right action will overcome inaction." 154;; 155;; * Diary integration 156;; 157;; To use, add the following to your .emacs: 158;; 159;; ;; This should be before other entries that may return t 160;; (add-to-list 'remember-handler-functions 'remember-diary-extract-entries) 161;; 162;; This module recognizes entries of the form 163;; 164;; DIARY: .... 165;; 166;; and puts them in your ~/.diary (or remember-diary-file) together 167;; with an annotation. Dates in the form YYYY.MM.DD are converted to 168;; YYYY-MM-DD so that diary can understand them. 169;; 170;; For example: 171;; 172;; DIARY: 2003.08.12 Sacha's birthday 173;; 174;; is stored as 175;; 176;; 2003.08.12 Sacha's birthday 177 178;;; History: 179 180;;; Code: 181 182(defconst remember-version "2.0" 183 "This version of remember.") 184 185(defgroup remember nil 186 "A mode to remember information." 187 :group 'data) 188 189;;; User Variables: 190 191(defcustom remember-mode-hook nil 192 "Functions run upon entering `remember-mode'." 193 :type 'hook 194 :options '(flyspell-mode turn-on-auto-fill org-remember-apply-template) 195 :group 'remember) 196 197(defcustom remember-in-new-frame nil 198 "Non-nil means use a separate frame for capturing remember data." 199 :type 'boolean 200 :group 'remember) 201 202(defcustom remember-register ?R 203 "The register in which the window configuration is stored." 204 :type 'character 205 :group 'remember) 206 207(defcustom remember-filter-functions nil 208 "Functions run to filter remember data. 209All functions are run in the remember buffer." 210 :type 'hook 211 :group 'remember) 212 213(defcustom remember-handler-functions '(remember-append-to-file) 214 "Functions run to process remember data. 215Each function is called with the current buffer narrowed to what the 216user wants remembered. 217If any function returns non-nil, the data is assumed to have been 218recorded somewhere by that function." 219 :type 'hook 220 :options '(remember-store-in-mailbox 221 remember-append-to-file 222 remember-store-in-files 223 remember-diary-extract-entries 224 org-remember-handler) 225 :group 'remember) 226 227(defcustom remember-all-handler-functions nil 228 "If non-nil every function in `remember-handler-functions' is called." 229 :type 'boolean 230 :group 'remember) 231 232;; See below for more user variables. 233 234;;; Internal Variables: 235 236(defvar remember-buffer "*Remember*" 237 "The name of the remember data entry buffer.") 238 239(defcustom remember-save-after-remembering t 240 "Non-nil means automatically save after remembering." 241 :type 'boolean 242 :group 'remember) 243 244;;; User Functions: 245 246(defcustom remember-annotation-functions '(buffer-file-name) 247 "Hook that returns an annotation to be inserted into the remember buffer." 248 :type 'hook 249 :options '(org-remember-annotation buffer-file-name) 250 :group 'remember) 251 252(defvar remember-annotation nil 253 "Current annotation.") 254(defvar remember-initial-contents nil 255 "Initial contents to place into *Remember* buffer.") 256 257(defcustom remember-before-remember-hook nil 258 "Functions run before switching to the *Remember* buffer." 259 :type 'hook 260 :group 'remember) 261 262(defcustom remember-run-all-annotation-functions-flag nil 263 "Non-nil means use all annotations returned by `remember-annotation-functions'." 264 :type 'boolean 265 :group 'remember) 266 267;;;###autoload 268(defun remember (&optional initial) 269 "Remember an arbitrary piece of data. 270INITIAL is the text to initially place in the *Remember* buffer, 271or nil to bring up a blank *Remember* buffer. 272 273With a prefix or a visible region, use the region as INITIAL." 274 (interactive 275 (list (when (or current-prefix-arg 276 (and mark-active 277 transient-mark-mode)) 278 (buffer-substring (region-beginning) (region-end))))) 279 (funcall (if remember-in-new-frame 280 #'frameset-to-register 281 #'window-configuration-to-register) remember-register) 282 (let* ((annotation 283 (if remember-run-all-annotation-functions-flag 284 (mapconcat 'identity 285 (delq nil 286 (mapcar 'funcall remember-annotation-functions)) 287 "\n") 288 (run-hook-with-args-until-success 289 'remember-annotation-functions))) 290 (buf (get-buffer-create remember-buffer))) 291 (run-hooks 'remember-before-remember-hook) 292 (funcall (if remember-in-new-frame 293 #'switch-to-buffer-other-frame 294 #'switch-to-buffer-other-window) buf) 295 (if remember-in-new-frame 296 (set-window-dedicated-p 297 (get-buffer-window (current-buffer) (selected-frame)) t)) 298 (setq buffer-offer-save t) 299 (remember-mode) 300 (when (= (point-max) (point-min)) 301 (when initial (insert initial)) 302 (setq remember-annotation annotation) 303 (when remember-initial-contents (insert remember-initial-contents)) 304 (when (and (stringp annotation) 305 (not (equal annotation ""))) 306 (insert "\n\n" annotation)) 307 (setq remember-initial-contents nil) 308 (goto-char (point-min))) 309 (message "Use C-c C-c to remember the data."))) 310 311;;;###autoload 312(defun remember-other-frame (&optional initial) 313 "Call `remember' in another frame." 314 (interactive 315 (list (when current-prefix-arg 316 (buffer-substring (point) (mark))))) 317 (let ((remember-in-new-frame t)) 318 (remember initial))) 319 320(defsubst remember-mail-date (&optional rfc822-p) 321 "Return a simple date. Nothing fancy." 322 (format-time-string (if rfc822-p "%a, %e %b %Y %T %z" "%a %b %e %T %Y"))) 323 324(defun remember-buffer-desc () 325 "Using the first line of the current buffer, create a short description." 326 (buffer-substring (point-min) 327 (save-excursion 328 (goto-char (point-min)) 329 (end-of-line) 330 (if (> (- (point) (point-min)) 60) 331 (goto-char (+ (point-min) 60))) 332 (point)))) 333 334;; Remembering to UNIX mailboxes 335 336(defcustom remember-mailbox "~/Mail/remember" 337 "The file in which to store remember data as mail." 338 :type 'file 339 :group 'remember) 340 341(defcustom remember-default-priority "medium" 342 "The default priority for remembered mail messages." 343 :type 'string 344 :group 'remember) 345 346(defun remember-store-in-mailbox () 347 "Store remember data as if it were incoming mail. 348In which case `remember-mailbox' should be the name of the mailbox. 349Each piece of pseudo-mail created will have an `X-Todo-Priority' 350field, for the purpose of appropriate splitting." 351 (let ((who (read-string "Who is this item related to? ")) 352 (moment (format-time-string "%s")) 353 (desc (remember-buffer-desc)) 354 (text (buffer-string))) 355 (with-temp-buffer 356 (insert (format "From %s %s 357Date: %s 358From: %s 359Message-Id: <remember-%s@%s> 360X-Todo-Priority: %s 361To: %s <%s> 362Subject: %s\n\n" 363 (user-login-name) 364 (remember-mail-date) 365 (remember-mail-date t) 366 who 367 moment (system-name) 368 remember-default-priority 369 (user-full-name) user-mail-address 370 desc)) 371 (let ((here (point))) 372 (insert text) 373 (unless (bolp) 374 (insert "\n")) 375 (insert "\n") 376 (goto-char here) 377 (while (re-search-forward "^\\(From[: ]\\)" nil t) 378 (replace-match ">\\1"))) 379 (append-to-file (point-min) (point-max) remember-mailbox) 380 t))) 381 382;; Remembering to plain files 383 384(defcustom remember-data-file (locate-user-emacs-file "notes" ".notes") 385 "The file in which to store unprocessed data. 386When set via customize, visited file of the notes buffer (if it 387exists) might be changed." 388 :version "24.4" ; added locate-user-emacs-file 389 :type 'file 390 :set (lambda (symbol value) 391 (let ((buf (find-buffer-visiting (default-value symbol)))) 392 (set-default symbol value) 393 (when (buffer-live-p buf) 394 (with-current-buffer buf 395 (set-visited-file-name 396 (expand-file-name remember-data-file)))))) 397 :initialize 'custom-initialize-default 398 :group 'remember) 399 400(defcustom remember-leader-text "** " 401 "The text used to begin each remember item." 402 :type 'string 403 :group 'remember) 404 405(defcustom remember-time-format "%a %b %d %H:%M:%S %Y" 406 "The format for time stamp, passed to `format-time-string'. 407The default emulates `current-time-string' for backward compatibility." 408 :type 'string 409 :group 'remember 410 :version "27.1") 411 412(defun remember-append-to-file () 413 "Remember, with description DESC, the given TEXT." 414 (let* ((text (buffer-string)) 415 (desc (remember-buffer-desc)) 416 (remember-text (concat "\n" remember-leader-text 417 (format-time-string remember-time-format) 418 " (" desc ")\n\n" text 419 (save-excursion (goto-char (point-max)) 420 (if (bolp) nil "\n")))) 421 (buf (find-buffer-visiting remember-data-file))) 422 (if buf 423 (with-current-buffer buf 424 (save-excursion 425 (goto-char (point-max)) 426 (insert remember-text)) 427 (if remember-save-after-remembering (save-buffer))) 428 (append-to-file remember-text nil remember-data-file)))) 429 430(defun remember-region (&optional beg end) 431 "Remember the data from BEG to END. 432It is called from within the *Remember* buffer to save the text 433that was entered. 434 435If BEG and END are nil, the entire buffer will be remembered. 436 437If you want to remember a region, supply a universal prefix to 438`remember' instead. For example: \\[universal-argument] \\[remember] RET." 439 ;; Sacha: I have no idea where remember.el gets this context information, but 440 ;; you can just use remember-annotation-functions. 441 (interactive) 442 (let ((b (or beg (min (point) (or (mark) (point-min))))) 443 (e (or end (max (point) (or (mark) (point-max)))))) 444 (save-restriction 445 (narrow-to-region b e) 446 (if remember-all-handler-functions 447 (run-hooks 'remember-handler-functions) 448 (run-hook-with-args-until-success 'remember-handler-functions)) 449 (remember-destroy)))) 450 451(defcustom remember-data-directory "~/remember" 452 "The directory in which to store remember data as files. 453Used by `remember-store-in-files'." 454 :type 'directory 455 :version "24.4" 456 :group 'remember) 457 458(defcustom remember-directory-file-name-format "%Y-%m-%d_%T-%z" 459 "Format string for the file name in which to store unprocessed data. 460This is passed to `format-time-string'. 461Used by `remember-store-in-files'." 462 :type 'string 463 :version "24.4" 464 :group 'remember) 465 466(defun remember-store-in-files () 467 "Store remember data in a file in `remember-data-directory'. 468The file is named by calling `format-time-string' using 469`remember-directory-file-name-format' as the format string." 470 (let ((name (format-time-string remember-directory-file-name-format)) 471 (text (buffer-string))) 472 (with-temp-buffer 473 (insert text) 474 (write-file (convert-standard-filename 475 (format "%s/%s" remember-data-directory name)))))) 476 477;;;###autoload 478(defun remember-clipboard () 479 "Remember the contents of the current clipboard. 480Most useful for remembering things from other applications." 481 (interactive) 482 (remember (current-kill 0))) 483 484(defun remember-finalize () 485 "Remember the contents of the current buffer." 486 (interactive) 487 (remember-region (point-min) (point-max))) 488 489;; Org needs this 490(define-obsolete-function-alias 'remember-buffer 'remember-finalize "23.1") 491 492(defun remember-destroy () 493 "Destroy the current *Remember* buffer." 494 (interactive) 495 (when (equal remember-buffer (buffer-name)) 496 (kill-buffer (current-buffer)) 497 (jump-to-register remember-register))) 498 499;;; Diary integration 500 501(defcustom remember-diary-file nil 502 "File for extracted diary entries. 503If this is nil, then `diary-file' will be used instead." 504 :type '(choice (const :tag "diary-file" nil) file) 505 :group 'remember) 506 507(defvar calendar-date-style) ; calendar.el 508 509(defun remember-diary-convert-entry (entry) 510 "Translate MSG to an entry readable by diary." 511 (save-match-data 512 (when remember-annotation 513 (setq entry (concat entry " " remember-annotation))) 514 (if (string-match "\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)" entry) 515 (progn 516 ;; For calendar-date-style. This costs us nothing because 517 ;; the call to diary-make-entry below loads diary-lib 518 ;; which requires calendar. 519 (require 'calendar) 520 (replace-match 521 (cond ((eq calendar-date-style 'european) 522 (concat (match-string 3 entry) "/" 523 (match-string 2 entry) "/" 524 (match-string 1 entry))) 525 ((eq calendar-date-style 'iso) 526 (concat (match-string 1 entry) "-" 527 (match-string 2 entry) "-" 528 (match-string 3 entry))) 529 (t (concat (match-string 2 entry) "/" 530 (match-string 3 entry) "/" 531 (match-string 1 entry)))) 532 t t entry)) 533 entry))) 534 535(autoload 'diary-make-entry "diary-lib") 536 537;;;###autoload 538(defun remember-diary-extract-entries () 539 "Extract diary entries from the region." 540 (save-excursion 541 (goto-char (point-min)) 542 (let (list) 543 (while (re-search-forward "^DIARY:\\s-*\\(.+\\)" nil t) 544 (push (remember-diary-convert-entry (match-string 1)) list)) 545 (when list 546 (diary-make-entry (mapconcat 'identity list "\n") 547 nil remember-diary-file)) 548 nil))) ;; Continue processing 549 550;;; Internal Functions: 551 552(defvar remember-mode-map 553 (let ((map (make-sparse-keymap))) 554 (define-key map "\C-x\C-s" 'remember-finalize) 555 (define-key map "\C-c\C-c" 'remember-finalize) 556 (define-key map "\C-c\C-k" 'remember-destroy) 557 map) 558 "Keymap used in `remember-mode'.") 559 560(define-derived-mode remember-mode indented-text-mode "Remember" 561 "Major mode for output from \\[remember]. 562This buffer is used to collect data that you want to remember. 563\\<remember-mode-map> 564Just hit \\[remember-finalize] when you're done entering, and it will file 565the data away for latter retrieval, and possible indexing. 566 567\\{remember-mode-map}" 568 (set-keymap-parent remember-mode-map nil)) 569 570;; Notes buffer showing the notes: 571 572(defcustom remember-notes-buffer-name "*notes*" 573 "Name of the notes buffer. 574Setting it to *scratch* will hijack the *scratch* buffer for the 575purpose of storing notes." 576 :type 'string 577 :version "24.4") 578 579(defcustom remember-notes-initial-major-mode nil 580 "Major mode to use in the notes buffer when it's created. 581If this is nil, use `initial-major-mode'." 582 :type '(choice (const :tag "Use `initial-major-mode'" nil) 583 (function :tag "Major mode" text-mode)) 584 :version "24.4") 585 586(defcustom remember-notes-bury-on-kill t 587 "Non-nil means `kill-buffer' will bury the notes buffer instead of killing." 588 :type 'boolean 589 :version "24.4") 590 591(defun remember-notes-save-and-bury-buffer () 592 "Save (if it is modified) and bury the current buffer." 593 (interactive) 594 (when (buffer-modified-p) 595 (save-buffer)) 596 (bury-buffer)) 597 598 599 600(defvar remember-notes-mode-map 601 (let ((map (make-sparse-keymap))) 602 (define-key map "\C-c\C-c" 'remember-notes-save-and-bury-buffer) 603 map) 604 "Keymap used in `remember-notes-mode'.") 605 606(define-minor-mode remember-notes-mode 607 "Minor mode for the `remember-notes' buffer. 608This sets `buffer-save-without-query' so that `save-some-buffers' will 609save the notes buffer without asking. 610 611\\{remember-notes-mode-map}" 612 nil nil nil 613 (cond 614 (remember-notes-mode 615 (add-hook 'kill-buffer-query-functions 616 #'remember-notes--kill-buffer-query nil t) 617 (setq buffer-save-without-query t)))) 618 619;;;###autoload 620(defun remember-notes (&optional switch-to) 621 "Return the notes buffer, creating it if needed, and maybe switch to it. 622This buffer is for notes that you want to preserve across Emacs sessions. 623The notes are saved in `remember-data-file'. 624 625If a buffer is already visiting that file, just return it. 626 627Otherwise, create the buffer, and rename it to `remember-notes-buffer-name', 628unless a buffer of that name already exists. Set the major mode according 629to `remember-notes-initial-major-mode', and enable `remember-notes-mode' 630minor mode. 631 632Use \\<remember-notes-mode-map>\\[remember-notes-save-and-bury-buffer] to save and bury the notes buffer. 633 634Interactively, or if SWITCH-TO is non-nil, switch to the buffer. 635Return the buffer. 636 637Set `initial-buffer-choice' to `remember-notes' to visit your notes buffer 638when Emacs starts. Set `remember-notes-buffer-name' to \"*scratch*\" 639to turn the *scratch* buffer into your notes buffer." 640 (interactive "p") 641 (let ((buf (or (find-buffer-visiting remember-data-file) 642 (with-current-buffer (find-file-noselect remember-data-file) 643 (and remember-notes-buffer-name 644 (not (get-buffer remember-notes-buffer-name)) 645 (rename-buffer remember-notes-buffer-name)) 646 (funcall (or remember-notes-initial-major-mode 647 initial-major-mode)) 648 (remember-notes-mode 1) 649 (current-buffer))))) 650 (when switch-to 651 (switch-to-buffer buf)) 652 buf)) 653 654(defun remember-notes--kill-buffer-query () 655 "Function that `remember-notes-mode' adds to `kill-buffer-query-functions'. 656Save the current buffer if modified. If `remember-notes-bury-on-kill' 657is non-nil, bury it and return nil; otherwise return t." 658 (when (buffer-modified-p) 659 (save-buffer)) 660 (if remember-notes-bury-on-kill 661 (progn 662 ;; bury-buffer always returns nil, but let's be explicit. 663 (bury-buffer) 664 nil) 665 t)) 666 667(provide 'remember) 668 669;;; remember.el ends here 670