• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/calendar/

Lines Matching +defs:entry +defs:format

65 ;;      The TODO list file has a special format and some auxiliary
112 ;; d to file the current entry, including a
114 ;; e to edit the current entry
115 ;; E to edit a multi-line entry
116 ;; f to file the current entry, including a
118 ;; i to insert a new entry, with prefix, omit category
119 ;; I to insert a new entry at current cursor position
121 ;; k to kill the current entry
122 ;; l to lower the current entry's priority
123 ;; n for the next entry
124 ;; p for the previous entry
127 ;; r to raise the current entry's priority
132 ;; When you add a new entry, you are asked for the text and then
139 ;; desired name will be added and filled with the new entry.
147 ;; diary displays each entry every day.
228 ;; o Move entry from one category to another one
230 ;; "deadline" entry which are understood by diary, indicating
280 diary. With the default value \"*/*\" the diary displays each entry
324 Not in TODO format, but diary compatible.
353 ;; Thanks for the ISO time stamp format go to Karl Eichwalder <ke@suse.de>
354 ;; My format string for the appt.el package is "%3b %2d, %y, %02I:%02M%p".
356 (defcustom todo-time-string-format
358 "*TODO mode time string format for done entries.
359 For details see the variable `time-stamp-format'."
363 (defcustom todo-entry-prefix-function 'todo-entry-timestamp-initials
364 "*Function producing text to insert at start of todo entry."
372 (defun todo-entry-timestamp-initials ()
373 "Prepend timestamp and your initials to the head of a TODO entry."
374 (let ((time-stamp-format todo-time-string-format))
442 (concat "Category: " (format "%18s" name)))
472 "Select previous entry of TODO list."
479 "Select COUNT-th next entry of TODO list."
508 "Edit current TODO list entry."
521 "Set up a buffer for editing a multiline TODO list entry."
547 (insert (format "todo-categories: %S; -*-" todo-categories))
549 (insert (format "%s%s%s\n%s\n%s %s\n"
557 "Insert NEW-ITEM in TODO list as a new entry in CATEGORY."
590 "Insert new TODO list entry.
598 "New TODO entry: "
599 (if todo-entry-prefix-function
600 (funcall todo-entry-prefix-function)))))
615 "Insert new TODO list entry under the cursor."
621 "New TODO entry: "
622 (if todo-entry-prefix-function
623 (funcall todo-entry-prefix-function))))))
627 "Ask whether entry is more important than the one at LINE."
640 "Delete current TODO list entry."
643 (let* ((todo-entry (todo-item-string-start))
645 todo-entry "'? "))))
651 (error "No TODO list entry to delete")))
655 "Raise priority of current entry."
664 (error "No TODO list entry to raise")))
668 "Lower priority of current entry."
678 (error "No TODO list entry to lower")))
682 "File the current TODO list entry away, annotated with an optional COMMENT."
685 (error "No TODO list entry to file away"))
686 (let ((time-stamp-format todo-time-string-format))
753 (setq beg (+ (line-end-position) 1)) ;Start of first entry.
831 "Return the start of this TODO list entry as a string."
856 "Delete the current entry from the TODO list."
860 "Return current TODO list entry as a string."
919 (defvar entry))
924 "Make a diary entry appear only in the current date's diary."
926 entry))