*** empty log message ***
[emacs.git] / lisp / calendar / todo-mode.el
blob884e547b2d5f78552ed6fb5972263ff91d97bba9
1 ;;; todo-mode.el --- major mode for editing TODO list files
3 ;; Copyright (C) 1997, 1999, 2001 Free Software Foundation, Inc.
5 ;; Author: Oliver Seidel <os10000@seidel-space.de>
6 ;; [Not clear the above works, July 2000]
7 ;; Created: 2 Aug 1997
8 ;; Version: $Id: todo-mode.el,v 1.49 2001/11/17 04:01:31 rms Exp $
9 ;; Keywords: calendar, todo
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;; ---------------------------------------------------------------------------
30 ;;; Commentary:
32 ;; Mode Description
34 ;; TODO is a major mode for EMACS which offers functionality to
35 ;; treat most lines in one buffer as a list of items one has to
36 ;; do. There are facilities to add new items, which are
37 ;; categorised, to edit or even delete items from the buffer.
38 ;; The buffer contents are currently compatible with the diary,
39 ;; so that the list of todo-items will show up in the FANCY diary
40 ;; mode.
42 ;; Notice: Besides the major mode, this file also exports the
43 ;; function `todo-show' which will change to the one specific
44 ;; TODO file that has been specified in the todo-file-do
45 ;; variable. If this file does not conform to the TODO mode
46 ;; conventions, the todo-show function will add the appropriate
47 ;; header and footer. I don't anticipate this to cause much
48 ;; grief, but be warned, in case you attempt to read a plain text
49 ;; file.
51 ;; Preface, Quickstart Installation
53 ;; To get this to work, make emacs execute the line
55 ;; (autoload 'todo-mode "todo-mode"
56 ;; "Major mode for editing TODO lists." t)
57 ;; (autoload 'todo-show "todo-mode"
58 ;; "Show TODO items." t)
59 ;; (autoload 'todo-insert-item "todo-mode"
60 ;; "Add TODO item." t)
62 ;; You may now enter new items by typing "M-x todo-insert-item",
63 ;; or enter your TODO list file by typing "M-x todo-show".
65 ;; The TODO list file has a special format and some auxiliary
66 ;; information, which will be added by the todo-show function if
67 ;; it attempts to visit an un-initialised file. Hence it is
68 ;; recommended to use the todo-show function for the first time,
69 ;; in order to initialise the file, but it is not necessary
70 ;; afterwards.
72 ;; As these commands are quite long to type, I would recommend
73 ;; the addition of two bindings to your to your global keymap. I
74 ;; personally have the following in my initialisation file:
76 ;; (global-set-key "\C-ct" 'todo-show) ;; switch to TODO buffer
77 ;; (global-set-key "\C-ci" 'todo-insert-item) ;; insert new item
79 ;; Note, however, that this recommendation has prompted some
80 ;; criticism, since the keys C-c LETTER are reserved for user
81 ;; functions. I believe my recommendation is acceptable, since
82 ;; the Emacs Lisp Manual *Tips* section also details that the
83 ;; mode itself should not bind any functions to those keys. The
84 ;; express aim of the above two bindings is to work outside the
85 ;; mode, which doesn't need the show function and offers a
86 ;; different binding for the insert function. They serve as
87 ;; shortcuts and are not even needed (since the TODO mode will be
88 ;; entered by visiting the TODO file, and later by switching to
89 ;; its buffer).
91 ;; If you are an advanced user of this package, please consult
92 ;; the whole source code for autoloads, because there are several
93 ;; extensions that are not explicitly listed in the above quick
94 ;; installation.
96 ;; Version
98 ;; Which version of todo-mode.el does this documentation refer to?
100 ;; $Id: todo-mode.el,v 1.49 2001/11/17 04:01:31 rms Exp $
102 ;; Pre-Requisites
104 ;; This package will require the following packages to be
105 ;; available on the load-path:
107 ;; time-stamp
108 ;; easymenu
110 ;; Operation
112 ;; You will have the following facilities available:
114 ;; M-x todo-show will enter the todo list screen, here type
116 ;; + to go to next category
117 ;; - to go to previous category
118 ;; d to file the current entry, including a
119 ;; comment and timestamp
120 ;; e to edit the current entry
121 ;; E to edit a multi-line entry
122 ;; f to file the current entry, including a
123 ;; comment and timestamp
124 ;; i to insert a new entry, with prefix, omit category
125 ;; I to insert a new entry at current cursor position
126 ;; j jump to category
127 ;; k to kill the current entry
128 ;; l to lower the current entry's priority
129 ;; n for the next entry
130 ;; p for the previous entry
131 ;; P print
132 ;; q to save the list and exit the buffer
133 ;; r to raise the current entry's priority
134 ;; s to save the list
135 ;; S to save the list of top priorities
136 ;; t show top priority items for each category
138 ;; When you add a new entry, you are asked for the text and then
139 ;; for the category. I for example have categories for things
140 ;; that I want to do in the office (like mail my mum), that I
141 ;; want to do in town (like buy cornflakes) and things I want to
142 ;; do at home (move my suitcases). The categories can be
143 ;; selected with the cursor keys and if you type in the name of a
144 ;; category which didn't exist before, an empty category of the
145 ;; desired name will be added and filled with the new entry.
147 ;; Configuration
149 ;; Variable todo-prefix
151 ;; I would like to recommend that you use the prefix "*/*" (by
152 ;; leaving the variable 'todo-prefix' untouched) so that the
153 ;; diary displays each entry every day.
155 ;; To understand what I mean, please read the documentation that
156 ;; goes with the calendar since that will tell you how you can
157 ;; set up the fancy diary display and use the #include command to
158 ;; include your todo list file as part of your diary.
160 ;; If you have the diary package set up to usually display more
161 ;; than one day's entries at once, consider using
163 ;; "&%%(equal (calendar-current-date) date)"
165 ;; as the value of `todo-prefix'. Please note that this may slow
166 ;; down the processing of your diary file some.
168 ;; Carsten Dominik <dominik@strw.LeidenUniv.nl> suggested that
170 ;; "&%%(todo-cp)"
172 ;; might be nicer and to that effect a function has been declared
173 ;; further down in the code. You may wish to auto-load this.
175 ;; Carsten also writes that that *changing* the prefix after the
176 ;; todo list is already established is not as simple as changing
177 ;; the variable - the todo files have to be changed by hand.
179 ;; Variable todo-file-do
181 ;; This variable is fairly self-explanatory. You have to store
182 ;; your TODO list somewhere. This variable tells the package
183 ;; where to go and find this file.
185 ;; Variable todo-file-done
187 ;; Even when you're done, you may wish to retain the entries.
188 ;; Given that they're timestamped and you are offered to add a
189 ;; comment, this can make a useful diary of past events. It will
190 ;; even blend in with the EMACS diary package. So anyway, this
191 ;; variable holds the name of the file for the filed todo-items.
193 ;; Variable todo-file-top
195 ;; File storing the top priorities of your TODO list when
196 ;; todo-save-top-priorities is non-nil. Nice to include in your
197 ;; diary instead of the complete TODO list.
199 ;; Variable todo-mode-hook
201 ;; Just like other modes, too, this mode offers to call your
202 ;; functions before it goes about its business. This variable
203 ;; will be inspected for any functions you may wish to have
204 ;; called once the other TODO mode preparations have been
205 ;; completed.
207 ;; Variable todo-insert-threshold
209 ;; Another nifty feature is the insertion accuracy. If you have
210 ;; 8 items in your TODO list, then you may get asked 4 questions
211 ;; by the binary insertion algorithm. However, you may not
212 ;; really have a need for such accurate priorities amongst your
213 ;; TODO items. If you now think about the binary insertion
214 ;; halfing the size of the window each time, then the threshhold
215 ;; is the window size at which it will stop. If you set the
216 ;; threshhold to zero, the upper and lower bound will coincide at
217 ;; the end of the loop and you will insert your item just before
218 ;; that point. If you set the threshhold to, e.g. 8, it will stop
219 ;; as soon as the window size drops below that amount and will
220 ;; insert the item in the approximate centre of that window. I
221 ;; got the idea for this feature after reading a very helpful
222 ;; e-mail reply from Trey Jackson <trey@cs.berkeley.edu> who
223 ;; corrected some of my awful coding and pointed me towards some
224 ;; good reading. Thanks Trey!
226 ;; Things to do
228 ;; These originally were my ideas, but now also include all the
229 ;; suggestions that I included before forgetting them:
231 ;; o Fancy fonts for todo/top-priority buffer
232 ;; o Remove todo-prefix option in todo-top-priorities
233 ;; o Rename category
234 ;; o Move entry from one category to another one
235 ;; o Entries which both have the generic */* prefix and a
236 ;; "deadline" entry which are understood by diary, indicating
237 ;; an event (unless marked by &)
238 ;; o The optional COUNT variable of todo-forward-item should be
239 ;; applied to the other functions performing similar tasks
240 ;; o Modularization could be done for repeaded elements of
241 ;; the code, like the completing-read lines of code.
242 ;; o license / version function
243 ;; o export to diary file
244 ;; o todo-report-bug
245 ;; o GNATS support
246 ;; o elide multiline (as in bbdb, or, to a lesser degree, in
247 ;; outline mode)
248 ;; o rewrite complete package to store data as lisp objects
249 ;; and have display modes for display, for diary export,
250 ;; etc. (Richard Stallman pointed out this is a bad idea)
251 ;; o so base todo-mode.el on generic-mode.el instead
253 ;; History and Gossip
255 ;; Many thanks to all the ones who have contributed to the
256 ;; evolution of this package! I hope I have listed all of you
257 ;; somewhere in the documentation or at least in the RCS history!
259 ;; Enjoy this package and express your gratitude by sending nice
260 ;; things to my parents' address!
262 ;; Oliver Seidel
263 ;; (Lessingstr. 8, 65760 Eschborn, Federal Republic of Germany)
265 ;;; Code:
267 (require 'time-stamp)
270 ;; User-configurable variables:
272 (defgroup todo nil
273 "Maintain a list of todo items."
274 :link '(emacs-commentary-link "todo-mode")
275 :version "21.1"
276 :group 'calendar)
278 (defcustom todo-prefix "*/*"
279 "*TODO mode prefix for entries.
281 This is useful in conjunction with `calendar' and `diary' if you use
283 #include \"~/.todo-do\"
285 in your diary file to include your todo list file as part of your
286 diary. With the default value \"*/*\" the diary displays each entry
287 every day and it may also be marked on every day of the calendar.
288 Using \"&%%(equal (calendar-current-date) date)\" instead will only
289 show and mark todo entreis for today, but may slow down processing of
290 the diary file somewhat."
291 :type 'string
292 :group 'todo)
293 (defcustom todo-file-do "~/.todo-do"
294 "*TODO mode list file."
295 :type 'file
296 :group 'todo)
297 (defcustom todo-file-done "~/.todo-done"
298 "*TODO mode archive file."
299 :type 'file
300 :group 'todo)
301 (defcustom todo-mode-hook nil
302 "*TODO mode hooks."
303 :type 'hook
304 :group 'todo)
305 (defcustom todo-edit-mode-hook nil
306 "*TODO Edit mode hooks."
307 :type 'hook
308 :group 'todo)
309 (defcustom todo-insert-threshold 0
310 "*TODO mode insertion accuracy.
312 If you have 8 items in your TODO list, then you may get asked 4
313 questions by the binary insertion algorithm. However, you may not
314 really have a need for such accurate priorities amongst your TODO
315 items. If you now think about the binary insertion halfing the size
316 of the window each time, then the threshhold is the window size at
317 which it will stop. If you set the threshhold to zero, the upper and
318 lower bound will coincide at the end of the loop and you will insert
319 your item just before that point. If you set the threshhold to,
320 e.g. 8, it will stop as soon as the window size drops below that
321 amount and will insert the item in the approximate centre of that
322 window."
323 :type 'integer
324 :group 'todo)
325 (defvar todo-edit-buffer " *TODO Edit*"
326 "TODO Edit buffer name.")
327 (defcustom todo-file-top "~/.todo-top"
328 "*TODO mode top priorities file.
330 Not in TODO format, but diary compatible.
331 Automatically generated when `todo-save-top-priorities' is non-nil."
332 :type 'string
333 :group 'todo)
335 (defcustom todo-print-function 'ps-print-buffer-with-faces
336 "*Function to print the current buffer."
337 :type 'symbol
338 :group 'todo)
339 (defcustom todo-show-priorities 1
340 "*Default number of priorities to show by \\[todo-top-priorities].
341 0 means show all entries."
342 :type 'integer
343 :group 'todo)
344 (defcustom todo-print-priorities 0
345 "*Default number of priorities to print by \\[todo-print].
346 0 means print all entries."
347 :type 'integer
348 :group 'todo)
349 (defcustom todo-remove-separator t
350 "*Non-nil to remove category separators in\
351 \\[todo-top-priorities] and \\[todo-print]."
352 :type 'boolean
353 :group 'todo)
354 (defcustom todo-save-top-priorities-too t
355 "*Non-nil makes `todo-save' automatically save top-priorities in `todo-file-top'."
356 :type 'boolean
357 :group 'todo)
359 ;; Thanks for the ISO time stamp format go to Karl Eichwalder <ke@suse.de>
360 ;; My format string for the appt.el package is "%3b %2d, %y, %02I:%02M%p".
362 (defcustom todo-time-string-format
363 "%:y-%02m-%02d %02H:%02M"
364 "*TODO mode time string format for done entries.
365 For details see the variable `time-stamp-format'."
366 :type 'string
367 :group 'todo)
369 (defcustom todo-entry-prefix-function 'todo-entry-timestamp-initials
370 "*Function producing text to insert at start of todo entry."
371 :type 'symbol
372 :group 'todo)
373 (defcustom todo-initials (or (getenv "INITIALS") (user-login-name))
374 "*Initials of todo item author."
375 :type 'string
376 :group 'todo)
378 (defun todo-entry-timestamp-initials ()
379 "Prepend timestamp and your initials to the head of a TODO entry."
380 (let ((time-stamp-format todo-time-string-format))
381 (concat (time-stamp-string) " " todo-initials ": ")))
383 ;; ---------------------------------------------------------------------------
385 ;; Set up some helpful context ...
387 (defvar todo-categories nil
388 "TODO categories.")
390 (defvar todo-cats nil
391 "Old variable for holding the TODO categories.
392 Use `todo-categories' instead.")
394 (defvar todo-previous-line 0
395 "Previous line asked about.")
397 (defvar todo-previous-answer 0
398 "Previous answer got.")
400 (defvar todo-mode-map
401 (let ((map (make-keymap)))
402 (suppress-keymap map t)
403 (define-key map "+" 'todo-forward-category)
404 (define-key map "-" 'todo-backward-category)
405 (define-key map "d" 'todo-file-item) ;done/delete
406 (define-key map "e" 'todo-edit-item)
407 (define-key map "E" 'todo-edit-multiline)
408 (define-key map "f" 'todo-file-item)
409 (define-key map "i" 'todo-insert-item)
410 (define-key map "I" 'todo-insert-item-here)
411 (define-key map "j" 'todo-jump-to-category)
412 (define-key map "k" 'todo-delete-item)
413 (define-key map "l" 'todo-lower-item)
414 (define-key map "n" 'todo-forward-item)
415 (define-key map "p" 'todo-backward-item)
416 (define-key map "P" 'todo-print)
417 (define-key map "q" 'todo-quit)
418 (define-key map "r" 'todo-raise-item)
419 (define-key map "s" 'todo-save)
420 (define-key map "S" 'todo-save-top-priorities)
421 (define-key map "t" 'todo-top-priorities)
422 map)
423 "TODO mode keymap.")
425 (defvar todo-category-number 0 "TODO category number.")
427 (defvar todo-tmp-buffer-name " *todo tmp*")
429 (defvar todo-category-sep (make-string 75 ?-)
430 "Category separator.")
432 (defvar todo-category-beg " --- "
433 "Category start separator to be prepended onto category name.")
435 (defvar todo-category-end "--- End"
436 "Separator after a category.")
438 (defvar todo-header "-*- mode: todo; "
439 "Header of todo files.")
441 ;; ---------------------------------------------------------------------------
443 (defun todo-category-select ()
444 "Make TODO mode display the current category correctly."
445 (let ((name (nth todo-category-number todo-categories)))
446 (setq mode-line-buffer-identification
447 ;; (concat "Category: " name))
448 (concat "Category: " (format "%18s" name)))
449 (widen)
450 (goto-char (point-min))
451 (search-forward-regexp
452 (concat "^"
453 (regexp-quote (concat todo-prefix todo-category-beg name))
454 "$"))
455 (let ((begin (1+ (line-end-position))))
456 (search-forward-regexp (concat "^" todo-category-end))
457 (narrow-to-region begin (line-beginning-position))
458 (goto-char (point-min)))))
459 (defalias 'todo-cat-slct 'todo-category-select)
461 (defun todo-forward-category ()
462 "Go forward to TODO list of next category."
463 (interactive)
464 (setq todo-category-number
465 (mod (1+ todo-category-number) (length todo-categories)))
466 (todo-category-select))
467 (defalias 'todo-cmd-forw 'todo-forward-category)
469 (defun todo-backward-category ()
470 "Go back to TODO list of previous category."
471 (interactive)
472 (setq todo-category-number
473 (mod (1- todo-category-number) (length todo-categories)))
474 (todo-category-select))
475 (defalias 'todo-cmd-back 'todo-backward-category)
477 (defun todo-backward-item ()
478 "Select previous entry of TODO list."
479 (interactive)
480 (search-backward-regexp (concat "^" (regexp-quote todo-prefix)) nil t)
481 (message ""))
482 (defalias 'todo-cmd-prev 'todo-backward-item)
484 (defun todo-forward-item (&optional count)
485 "Select COUNT-th next entry of TODO list."
486 (interactive "P")
487 (if (listp count) (setq count (car count)))
488 (end-of-line)
489 (search-forward-regexp (concat "^" (regexp-quote todo-prefix))
490 nil 'goto-end count)
491 (beginning-of-line)
492 (message ""))
493 (defalias 'todo-cmd-next 'todo-forward-item)
495 (defun todo-save ()
496 "Save the TODO list."
497 (interactive)
498 (save-excursion
499 (save-restriction
500 (save-buffer)))
501 (if todo-save-top-priorities-too (todo-save-top-priorities)))
502 (defalias 'todo-cmd-save 'todo-save)
504 (defun todo-quit ()
505 "Done with TODO list for now."
506 (interactive)
507 (widen)
508 (todo-save)
509 (message "")
510 (bury-buffer))
511 (defalias 'todo-cmd-done 'todo-quit)
513 (defun todo-edit-item ()
514 "Edit current TODO list entry."
515 (interactive)
516 (let ((item (todo-item-string)))
517 (if (todo-string-multiline-p item)
518 (todo-edit-multiline)
519 (let ((new (read-from-minibuffer "Edit: " item)))
520 (todo-remove-item)
521 (insert new "\n")
522 (todo-backward-item)
523 (message "")))))
524 (defalias 'todo-cmd-edit 'todo-edit-item)
526 (defun todo-edit-multiline ()
527 "Set up a buffer for editing a multiline TODO list entry."
528 (interactive)
529 (let ((buffer-name (generate-new-buffer-name todo-edit-buffer)))
530 (switch-to-buffer
531 (make-indirect-buffer
532 (file-name-nondirectory todo-file-do) buffer-name))
533 (message "To exit, simply kill this buffer and return to list.")
534 (todo-edit-mode)
535 (narrow-to-region (todo-item-start) (todo-item-end))))
537 ;;;###autoload
538 (defun todo-add-category (cat)
539 "Add new category CAT to the TODO list."
540 (interactive "sCategory: ")
541 (save-window-excursion
542 (setq todo-categories (cons cat todo-categories))
543 (find-file todo-file-do)
544 (widen)
545 (goto-char (point-min))
546 (let ((posn (search-forward "-*- mode: todo; " 17 t)))
547 (if (not (null posn)) (goto-char posn))
548 (if (equal posn nil)
549 (progn
550 (insert "-*- mode: todo; \n")
551 (forward-char -1))
552 (kill-line)))
553 (insert (format "todo-categories: %S; -*-" todo-categories))
554 (forward-char 1)
555 (insert (format "%s%s%s\n%s\n%s %s\n"
556 todo-prefix todo-category-beg cat
557 todo-category-end
558 todo-prefix todo-category-sep)))
561 ;;;###autoload
562 (defun todo-add-item-non-interactively (new-item category)
563 "Insert NEW-ITEM in TODO list as a new entry in CATEGORY."
564 (save-excursion
565 (todo-show))
566 (save-excursion
567 (if (string= "" category)
568 (setq category (nth todo-category-number todo-categories)))
569 (let ((cat-exists (member category todo-categories)))
570 (setq todo-category-number
571 (if cat-exists
572 (- (length todo-categories) (length cat-exists))
573 (todo-add-category category))))
574 (todo-show)
575 (setq todo-previous-line 0)
576 (let ((top 1)
577 (bottom (1+ (count-lines (point-min) (point-max)))))
578 (while (> (- bottom top) todo-insert-threshold)
579 (let* ((current (/ (+ top bottom) 2))
580 (answer (if (< current bottom)
581 (todo-more-important-p current) nil)))
582 (if answer
583 (setq bottom current)
584 (setq top (1+ current)))))
585 (setq top (/ (+ top bottom) 2))
586 ;; goto-line doesn't have the desired behavior in a narrowed buffer
587 (goto-char (point-min))
588 (forward-line (1- top)))
589 (insert new-item "\n")
590 (todo-backward-item)
591 (todo-save)
592 (message "")))
594 ;;;###autoload
595 (defun todo-insert-item (arg)
596 "Insert new TODO list entry.
597 With a prefix argument solicit the category, otherwise use the current
598 category."
599 (interactive "P")
600 (save-excursion
601 (if (not (string-equal mode-name "TODO")) (todo-show))
602 (let* ((new-item (concat todo-prefix " "
603 (read-from-minibuffer
604 "New TODO entry: "
605 (if todo-entry-prefix-function
606 (funcall todo-entry-prefix-function)))))
607 (categories todo-categories)
608 (history (cons 'categories (1+ todo-category-number)))
609 (current-category (nth todo-category-number todo-categories))
610 (category
611 (if arg
612 current-category
613 (completing-read (concat "Category [" current-category "]: ")
614 (todo-category-alist) nil nil nil
615 history current-category))))
616 (todo-add-item-non-interactively new-item category))))
618 (defalias 'todo-cmd-inst 'todo-insert-item)
620 (defun todo-insert-item-here ()
621 "Insert new TODO list entry under the cursor."
622 (interactive "")
623 (save-excursion
624 (if (not (string-equal mode-name "TODO")) (todo-show))
625 (let* ((new-item (concat todo-prefix " "
626 (read-from-minibuffer
627 "New TODO entry: "
628 (if todo-entry-prefix-function
629 (funcall todo-entry-prefix-function))))))
630 (insert (concat new-item "\n")))))
632 (defun todo-more-important-p (line)
633 "Ask whether entry is more important than the one at LINE."
634 (if (not (equal todo-previous-line line))
635 (progn
636 (setq todo-previous-line line)
637 (goto-char (point-min))
638 (forward-line (1- todo-previous-line))
639 (let ((item (todo-item-string-start)))
640 (setq todo-previous-answer
641 (y-or-n-p (concat "More important than '" item "'? "))))))
642 todo-previous-answer)
643 (defalias 'todo-ask-p 'todo-more-important-p)
645 (defun todo-delete-item ()
646 "Delete current TODO list entry."
647 (interactive)
648 (if (> (count-lines (point-min) (point-max)) 0)
649 (let* ((todo-entry (todo-item-string-start))
650 (todo-answer (y-or-n-p (concat "Permanently remove '"
651 todo-entry "'? "))))
652 (if todo-answer
653 (progn
654 (todo-remove-item)
655 (todo-backward-item)))
656 (message ""))
657 (error "No TODO list entry to delete")))
658 (defalias 'todo-cmd-kill 'todo-delete-item)
660 (defun todo-raise-item ()
661 "Raise priority of current entry."
662 (interactive)
663 (if (> (count-lines (point-min) (point)) 0)
664 (let ((item (todo-item-string)))
665 (todo-remove-item)
666 (todo-backward-item)
667 (save-excursion
668 (insert item "\n"))
669 (message ""))
670 (error "No TODO list entry to raise")))
671 (defalias 'todo-cmd-rais 'todo-raise-item)
673 (defun todo-lower-item ()
674 "Lower priority of current entry."
675 (interactive)
676 (if (> (count-lines (point) (point-max)) 1)
677 ;; Assume there is a final newline
678 (let ((item (todo-item-string)))
679 (todo-remove-item)
680 (todo-forward-item)
681 (save-excursion
682 (insert item "\n"))
683 (message ""))
684 (error "No TODO list entry to lower")))
685 (defalias 'todo-cmd-lowr 'todo-lower-item)
687 (defun todo-file-item (&optional comment)
688 "File the current TODO list entry away, annotated with an optional COMMENT."
689 (interactive "sComment: ")
690 (or (> (count-lines (point-min) (point-max)) 0)
691 (error "No TODO list entry to file away"))
692 (let ((time-stamp-format todo-time-string-format))
693 (if (and comment (> (length comment) 0))
694 (progn
695 (goto-char (todo-item-end))
696 (insert
697 (if (save-excursion (beginning-of-line)
698 (looking-at (regexp-quote todo-prefix)))
700 "\n\t")
701 "(" comment ")")))
702 (goto-char (todo-item-end))
703 (insert " [" (nth todo-category-number todo-categories) "]")
704 (goto-char (todo-item-start))
705 (let ((temp-point (point)))
706 (if (looking-at (regexp-quote todo-prefix))
707 (replace-match (time-stamp-string))
708 ;; Standard prefix -> timestamp
709 ;; Else prefix non-standard item start with timestamp
710 (insert (time-stamp-string)))
711 (append-to-file temp-point (1+ (todo-item-end)) todo-file-done)
712 (delete-region temp-point (1+ (todo-item-end))))
713 (todo-backward-item)
714 (message "")))
716 ;; ---------------------------------------------------------------------------
718 ;; Utility functions:
721 ;;;###autoload
722 (defun todo-top-priorities (&optional nof-priorities category-pr-page)
723 "List top priorities for each category.
725 Number of entries for each category is given by NOF-PRIORITIES which
726 defaults to \'todo-show-priorities\'.
728 If CATEGORY-PR-PAGE is non-nil, a page separator \'^L\' is inserted
729 between each category."
731 (interactive "P")
732 (or nof-priorities (setq nof-priorities todo-show-priorities))
733 (if (listp nof-priorities) ;universal argument
734 (setq nof-priorities (car nof-priorities)))
735 (let ((todo-print-buffer-name todo-tmp-buffer-name)
736 ;;(todo-print-category-number 0)
737 (todo-category-break (if category-pr-page "\f" ""))
738 (cat-end
739 (concat
740 (if todo-remove-separator
741 (concat todo-category-end "\n"
742 (regexp-quote todo-prefix) " " todo-category-sep "\n")
743 (concat todo-category-end "\n"))))
744 beg end)
745 (todo-show)
746 (save-excursion
747 (save-restriction
748 (widen)
749 (copy-to-buffer todo-print-buffer-name (point-min) (point-max))
750 (set-buffer todo-print-buffer-name)
751 (goto-char (point-min))
752 (when (re-search-forward (regexp-quote todo-header) nil t)
753 (beginning-of-line 1)
754 (delete-region (point) (line-end-position)))
755 (while (re-search-forward ;Find category start
756 (regexp-quote (concat todo-prefix todo-category-beg))
757 nil t)
758 (setq beg (+ (line-end-position) 1)) ;Start of first entry.
759 (re-search-forward cat-end nil t)
760 (setq end (match-beginning 0))
761 (replace-match todo-category-break)
762 (narrow-to-region beg end) ;In case we have too few entries.
763 (goto-char (point-min))
764 (if (= 0 nof-priorities) ;Traverse entries.
765 (goto-char end) ;All entries
766 (todo-forward-item nof-priorities))
767 (setq beg (point))
768 (delete-region beg end)
769 (widen))
770 (and (looking-at "\f") (replace-match "")) ;Remove trailing form-feed.
771 (goto-char (point-min)) ;Due to display buffer
773 ;; Could have used switch-to-buffer as it has a norecord argument,
774 ;; which is nice when we are called from e.g. todo-print.
775 ;; Else we could have used pop-to-buffer.
776 (display-buffer todo-print-buffer-name)
777 (message "Type C-x 1 to remove %s window. M-C-v to scroll the help."
778 todo-print-buffer-name)))
780 (defun todo-save-top-priorities (&optional nof-priorities)
781 "Save top priorities for each category in `todo-file-top'.
783 Number of entries for each category is given by NOF-PRIORITIES which
784 defaults to `todo-show-priorities'."
785 (interactive "P")
786 (save-window-excursion
787 (save-excursion
788 (save-restriction
789 (todo-top-priorities nof-priorities)
790 (set-buffer todo-tmp-buffer-name)
791 (write-file todo-file-top)
792 (kill-this-buffer)))))
794 ;;;###autoload
795 (defun todo-print (&optional category-pr-page)
796 "Print todo summary using `todo-print-function'.
797 If CATEGORY-PR-PAGE is non-nil, a page separator `^L' is inserted
798 between each category.
800 Number of entries for each category is given by `todo-print-priorities'."
801 (interactive "P")
802 (save-window-excursion
803 (save-excursion
804 (save-restriction
805 (todo-top-priorities todo-print-priorities
806 category-pr-page)
807 (set-buffer todo-tmp-buffer-name)
808 (and (funcall todo-print-function)
809 (kill-this-buffer))
810 (message "Todo printing done.")))))
812 (defun todo-jump-to-category ()
813 "Jump to a category. Default is previous category."
814 (interactive)
815 (let* ((categories todo-categories)
816 (history (cons 'categories (1+ todo-category-number)))
817 (default (nth todo-category-number todo-categories))
818 (category (completing-read
819 (concat "Category [" default "]: ")
820 (todo-category-alist) nil nil nil history default)))
821 (if (string= "" category)
822 (setq category (nth todo-category-number todo-categories)))
823 (setq todo-category-number
824 (if (member category todo-categories)
825 (- (length todo-categories)
826 (length (member category todo-categories)))
827 (todo-add-category category)))
828 (todo-show)))
830 (defun todo-line-string ()
831 "Return current line in buffer as a string."
832 (buffer-substring (line-beginning-position) (line-end-position)))
834 (defun todo-item-string-start ()
835 "Return the start of this TODO list entry as a string."
836 ;; Suitable for putting in the minibuffer when asking the user
837 (let ((item (todo-item-string)))
838 (if (> (length item) 60)
839 (setq item (concat (substring item 0 56) "...")))
840 item))
842 (defun todo-item-start ()
843 "Return point at start of current TODO list item."
844 (save-excursion
845 (beginning-of-line)
846 (if (not (looking-at (regexp-quote todo-prefix)))
847 (search-backward-regexp
848 (concat "^" (regexp-quote todo-prefix)) nil t))
849 (point)))
851 (defun todo-item-end ()
852 "Return point at end of current TODO list item."
853 (save-excursion
854 (end-of-line)
855 (search-forward-regexp
856 (concat "^" (regexp-quote todo-prefix)) nil 'goto-end)
857 (1- (line-beginning-position))))
859 (defun todo-remove-item ()
860 "Delete the current entry from the TODO list."
861 (delete-region (todo-item-start) (1+ (todo-item-end))))
863 (defun todo-item-string ()
864 "Return current TODO list entry as a string."
865 (buffer-substring (todo-item-start) (todo-item-end)))
867 (defun todo-string-count-lines (string)
868 "Return the number of lines STRING spans."
869 (length (split-string string "\n")))
871 (defun todo-string-multiline-p (string)
872 "Return non-nil if STRING spans several lines."
873 (> (todo-string-count-lines string) 1))
875 (defun todo-category-alist ()
876 "Generate an alist for use in `completing-read' from `todo-categories'."
877 (mapcar #'list todo-categories))
879 ;; ---------------------------------------------------------------------------
881 (easy-menu-define todo-menu todo-mode-map "Todo Menu"
882 '("Todo"
883 ["Next category" todo-forward-category t]
884 ["Previous category" todo-backward-category t]
885 ["Jump to category" todo-jump-to-category t]
886 ["Show top priority items" todo-top-priorities t]
887 ["Print categories" todo-print t]
888 "---"
889 ["Edit item" todo-edit-item t]
890 ["File item" todo-file-item t]
891 ["Insert new item" todo-insert-item t]
892 ["Insert item here" todo-insert-item-here t]
893 ["Kill item" todo-delete-item t]
894 "---"
895 ["Lower item priority" todo-lower-item t]
896 ["Raise item priority" todo-raise-item t]
897 "---"
898 ["Next item" todo-forward-item t]
899 ["Previous item" todo-backward-item t]
900 "---"
901 ["Save" todo-save t]
902 ["Save Top Priorities" todo-save-top-priorities t]
903 "---"
904 ["Quit" todo-quit t]
907 ;; As calendar reads .todo-do before todo-mode is loaded.
908 ;;;###autoload
909 (defun todo-mode ()
910 "Major mode for editing TODO lists.
912 \\{todo-mode-map}"
913 (interactive)
914 (setq major-mode 'todo-mode)
915 (setq mode-name "TODO")
916 (use-local-map todo-mode-map)
917 (easy-menu-add todo-menu)
918 (run-hooks 'todo-mode-hook))
920 (eval-when-compile
921 (defvar date)
922 (defvar entry))
924 ;; Read about this function in the setup instructions above!
925 ;;;###autoload
926 (defun todo-cp ()
927 "Make a diary entry appear only in the current date's diary."
928 (if (equal (calendar-current-date) date)
929 entry))
931 (define-derived-mode todo-edit-mode text-mode "TODO Edit"
932 "Major mode for editing items in the TODO list.
934 \\{todo-edit-mode-map}")
936 ;;;###autoload
937 (defun todo-show ()
938 "Show TODO list."
939 (interactive)
940 (if (file-exists-p todo-file-do)
941 (find-file todo-file-do)
942 (todo-initial-setup))
943 (if (null todo-categories)
944 (if (null todo-cats)
945 (error "Error in %s: No categories in list `todo-categories'"
946 todo-file-do)
947 (goto-char (point-min))
948 (and (search-forward "todo-cats:" nil t)
949 (replace-match "todo-categories:"))
950 (make-local-variable 'todo-categories)
951 (setq todo-categories todo-cats)))
952 (beginning-of-line)
953 (todo-category-select))
955 (defun todo-initial-setup ()
956 "Set up things to work properly in TODO mode."
957 (find-file todo-file-do)
958 (erase-buffer)
959 (todo-mode)
960 (todo-add-category "Todo"))
962 (provide 'todo-mode)
964 ;;; todo-mode.el ends here