org-agenda.el (org-agenda-limit-interactively): Enhance
[org-mode/org-tableheadings.git] / lisp / org-agenda.el
blobdafccc054558c9f73fcd7f9deeb0963593309bb2
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
3 ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the code for creating and using the Agenda for Org-mode.
29 ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
30 ;; `org-batch-store-agenda-views' are implemented as macros to provide
31 ;; a convenient way for extracting agenda information from the command
32 ;; line. The Lisp does not evaluate parameters of a macro call; thus
33 ;; it is not necessary to quote the parameters passed to one of those
34 ;; functions. E.g. you can write:
36 ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
38 ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
39 ;; have been implemented as a regular function you'd have to quote the
40 ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
41 ;; value you would have to double quote the symbol.
43 ;; This is a hack, but it works even when running Org byte-compiled.
46 ;;; Code:
48 (require 'org)
49 (require 'org-macs)
50 (eval-when-compile
51 (require 'cl))
53 (declare-function diary-add-to-list "diary-lib"
54 (date string specifier &optional marker globcolor literal))
55 (declare-function calendar-absolute-from-iso "cal-iso" (date))
56 (declare-function calendar-astro-date-string "cal-julian" (&optional date))
57 (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
58 (declare-function calendar-chinese-date-string "cal-china" (&optional date))
59 (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
60 (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
61 (declare-function calendar-french-date-string "cal-french" (&optional date))
62 (declare-function calendar-goto-date "cal-move" (date))
63 (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
64 (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
65 (declare-function calendar-iso-date-string "cal-iso" (&optional date))
66 (declare-function calendar-iso-from-absolute "cal-iso" (date))
67 (declare-function calendar-julian-date-string "cal-julian" (&optional date))
68 (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
69 (declare-function calendar-persian-date-string "cal-persia" (&optional date))
70 (declare-function calendar-check-holidays "holidays" (date))
72 (declare-function org-columns-remove-overlays "org-colview" ())
73 (declare-function org-datetree-find-date-create "org-datetree"
74 (date &optional keep-restriction))
75 (declare-function org-columns-quit "org-colview" ())
76 (declare-function diary-date-display-form "diary-lib" (&optional type))
77 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
78 (declare-function org-habit-insert-consistency-graphs
79 "org-habit" (&optional line))
80 (declare-function org-is-habit-p "org-habit" (&optional pom))
81 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
82 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
83 (declare-function org-pop-to-buffer-same-window "org-compat"
84 (&optional buffer-or-name norecord label))
85 (declare-function org-agenda-columns "org-colview" ())
86 (declare-function org-add-archive-files "org-archive" (files))
87 (declare-function org-capture "org-capture" (&optional goto keys))
89 (defvar calendar-mode-map) ; defined in calendar.el
90 (defvar org-clock-current-task nil) ; defined in org-clock.el
91 (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
92 (defvar org-habit-show-habits) ; defined in org-habit.el
93 (defvar org-habit-show-habits-only-for-today)
94 (defvar org-habit-show-all-today)
96 ;; Defined somewhere in this file, but used before definition.
97 (defvar org-agenda-buffer-name "*Org Agenda*")
98 (defvar org-agenda-overriding-header nil)
99 (defvar org-agenda-title-append nil)
100 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
101 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
102 (defvar original-date) ; dynamically scoped, calendar.el does scope this
104 (defvar org-agenda-undo-list nil
105 "List of undoable operations in the agenda since last refresh.")
106 (defvar org-agenda-pending-undo-list nil
107 "In a series of undo commands, this is the list of remaining undo items.")
109 (defcustom org-agenda-confirm-kill 1
110 "When set, remote killing from the agenda buffer needs confirmation.
111 When t, a confirmation is always needed. When a number N, confirmation is
112 only needed when the text to be killed contains more than N non-white lines."
113 :group 'org-agenda
114 :type '(choice
115 (const :tag "Never" nil)
116 (const :tag "Always" t)
117 (integer :tag "When more than N lines")))
119 (defcustom org-agenda-compact-blocks nil
120 "Non-nil means make the block agenda more compact.
121 This is done globally by leaving out lines like the agenda span
122 name and week number or the separator lines."
123 :group 'org-agenda
124 :type 'boolean)
126 (defcustom org-agenda-block-separator ?=
127 "The separator between blocks in the agenda.
128 If this is a string, it will be used as the separator, with a newline added.
129 If it is a character, it will be repeated to fill the window width.
130 If nil the separator is disabled. In `org-agenda-custom-commands' this
131 addresses the separator between the current and the previous block."
132 :group 'org-agenda
133 :type '(choice
134 (const :tag "Disabled" nil)
135 (character)
136 (string)))
138 (defgroup org-agenda-export nil
139 "Options concerning exporting agenda views in Org-mode."
140 :tag "Org Agenda Export"
141 :group 'org-agenda)
143 (defcustom org-agenda-with-colors t
144 "Non-nil means use colors in agenda views."
145 :group 'org-agenda-export
146 :type 'boolean)
148 (defcustom org-agenda-exporter-settings nil
149 "Alist of variable/value pairs that should be active during agenda export.
150 This is a good place to set options for ps-print and for htmlize.
151 Note that the way this is implemented, the values will be evaluated
152 before assigned to the variables. So make sure to quote values you do
153 *not* want evaluated, for example
155 (setq org-agenda-exporter-settings
156 '((ps-print-color-p 'black-white)))"
157 :group 'org-agenda-export
158 :type '(repeat
159 (list
160 (variable)
161 (sexp :tag "Value"))))
163 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
164 "Hook run in a temporary buffer before writing the agenda to an export file.
165 A useful function for this hook is `org-agenda-add-entry-text'."
166 :group 'org-agenda-export
167 :type 'hook
168 :options '(org-agenda-add-entry-text))
170 (defcustom org-agenda-add-entry-text-maxlines 0
171 "Maximum number of entry text lines to be added to agenda.
172 This is only relevant when `org-agenda-add-entry-text' is part of
173 `org-agenda-before-write-hook', which is the default.
174 When this is 0, nothing will happen. When it is greater than 0, it
175 specifies the maximum number of lines that will be added for each entry
176 that is listed in the agenda view.
178 Note that this variable is not used during display, only when exporting
179 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
180 and `org-agenda-entry-text-maxlines'."
181 :group 'org-agenda
182 :type 'integer)
184 (defcustom org-agenda-add-entry-text-descriptive-links t
185 "Non-nil means export org-links as descriptive links in agenda added text.
186 This variable applies to the text added to the agenda when
187 `org-agenda-add-entry-text-maxlines' is larger than 0.
188 When this variable nil, the URL will (also) be shown."
189 :group 'org-agenda
190 :type 'boolean)
192 (defcustom org-agenda-export-html-style nil
193 "The style specification for exported HTML Agenda files.
194 If this variable contains a string, it will replace the default <style>
195 section as produced by `htmlize'.
196 Since there are different ways of setting style information, this variable
197 needs to contain the full HTML structure to provide a style, including the
198 surrounding HTML tags. The style specifications should include definitions
199 the fonts used by the agenda, here is an example:
201 <style type=\"text/css\">
202 p { font-weight: normal; color: gray; }
203 .org-agenda-structure {
204 font-size: 110%;
205 color: #003399;
206 font-weight: 600;
208 .org-todo {
209 color: #cc6666;
210 font-weight: bold;
212 .org-agenda-done {
213 color: #339933;
215 .org-done {
216 color: #339933;
218 .title { text-align: center; }
219 .todo, .deadline { color: red; }
220 .done { color: green; }
221 </style>
223 or, if you want to keep the style in a file,
225 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
227 As the value of this option simply gets inserted into the HTML <head> header,
228 you can \"misuse\" it to also add other text to the header."
229 :group 'org-agenda-export
230 :group 'org-export-html
231 :type '(choice
232 (const nil)
233 (string)))
235 (defcustom org-agenda-persistent-filter nil
236 "When set, keep filters from one agenda view to the next."
237 :group 'org-agenda
238 :type 'boolean)
240 (defgroup org-agenda-custom-commands nil
241 "Options concerning agenda views in Org-mode."
242 :tag "Org Agenda Custom Commands"
243 :group 'org-agenda)
245 (defconst org-sorting-choice
246 '(choice
247 (const time-up) (const time-down)
248 (const timestamp-up) (const timestamp-down)
249 (const scheduled-up) (const scheduled-down)
250 (const deadline-up) (const deadline-down)
251 (const ts-up) (const ts-down)
252 (const tsia-up) (const tsia-down)
253 (const category-keep) (const category-up) (const category-down)
254 (const tag-down) (const tag-up)
255 (const priority-up) (const priority-down)
256 (const todo-state-up) (const todo-state-down)
257 (const effort-up) (const effort-down)
258 (const habit-up) (const habit-down)
259 (const alpha-up) (const alpha-down)
260 (const user-defined-up) (const user-defined-down))
261 "Sorting choices.")
263 ;; Keep custom values for `org-agenda-filter-preset' compatible with
264 ;; the new variable `org-agenda-tag-filter-preset'.
265 (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
266 (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
268 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
269 "List of types searched for when creating the daily/weekly agenda.
270 This variable is a list of symbols that controls the types of
271 items that appear in the daily/weekly agenda. Allowed symbols in this
272 list are are
274 :timestamp List items containing a date stamp or date range matching
275 the selected date. This includes sexp entries in angular
276 brackets.
278 :sexp List entries resulting from plain diary-like sexps.
280 :deadline List deadline due on that date. When the date is today,
281 also list any deadlines past due, or due within
282 `org-deadline-warning-days'. `:deadline' must appear before
283 `:scheduled' if the setting of
284 `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
285 any effect.
287 :deadline* Same as above, but only include the deadline if it has an
288 hour specification as [h]h:mm.
290 :scheduled List all items which are scheduled for the given date.
291 The diary for *today* also contains items which were
292 scheduled earlier and are not yet marked DONE.
294 :scheduled* Same as above, but only include the scheduled item if it
295 has an hour specification as [h]h:mm.
297 By default, all four non-starred types are turned on.
299 When :scheduled* or :deadline* are included, :schedule or :deadline
300 will be ignored.
302 Never set this variable globally using `setq', because then it
303 will apply to all future agenda commands. Instead, bind it with
304 `let' to scope it dynamically into the agenda-constructing
305 command. A good way to set it is through options in
306 `org-agenda-custom-commands'. For a more flexible (though
307 somewhat less efficient) way of determining what is included in
308 the daily/weekly agenda, see `org-agenda-skip-function'.")
310 (defconst org-agenda-custom-commands-local-options
311 `(repeat :tag "Local settings for this command. Remember to quote values"
312 (choice :tag "Setting"
313 (list :tag "Heading for this block"
314 (const org-agenda-overriding-header)
315 (string :tag "Headline"))
316 (list :tag "Files to be searched"
317 (const org-agenda-files)
318 (list
319 (const :format "" quote)
320 (repeat (file))))
321 (list :tag "Sorting strategy"
322 (const org-agenda-sorting-strategy)
323 (list
324 (const :format "" quote)
325 (repeat
326 ,org-sorting-choice)))
327 (list :tag "Prefix format"
328 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
329 (string))
330 (list :tag "Number of days in agenda"
331 (const org-agenda-span)
332 (choice (const :tag "Day" day)
333 (const :tag "Week" week)
334 (const :tag "Fortnight" fortnight)
335 (const :tag "Month" month)
336 (const :tag "Year" year)
337 (integer :tag "Custom")))
338 (list :tag "Fixed starting date"
339 (const org-agenda-start-day)
340 (string :value "2007-11-01"))
341 (list :tag "Start on day of week"
342 (const org-agenda-start-on-weekday)
343 (choice :value 1
344 (const :tag "Today" nil)
345 (integer :tag "Weekday No.")))
346 (list :tag "Include data from diary"
347 (const org-agenda-include-diary)
348 (boolean))
349 (list :tag "Deadline Warning days"
350 (const org-deadline-warning-days)
351 (integer :value 1))
352 (list :tag "Category filter preset"
353 (const org-agenda-category-filter-preset)
354 (list
355 (const :format "" quote)
356 (repeat
357 (string :tag "+category or -category"))))
358 (list :tag "Tags filter preset"
359 (const org-agenda-tag-filter-preset)
360 (list
361 (const :format "" quote)
362 (repeat
363 (string :tag "+tag or -tag"))))
364 (list :tag "Regexp filter preset"
365 (const org-agenda-regexp-filter-preset)
366 (list
367 (const :format "" quote)
368 (repeat
369 (string :tag "+regexp or -regexp"))))
370 (list :tag "Set daily/weekly entry types"
371 (const org-agenda-entry-types)
372 (list
373 (const :format "" quote)
374 (set :greedy t :value ,org-agenda-entry-types
375 (const :deadline)
376 (const :scheduled)
377 (const :deadline*)
378 (const :scheduled*)
379 (const :timestamp)
380 (const :sexp))))
381 (list :tag "Standard skipping condition"
382 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
383 (const org-agenda-skip-function)
384 (list
385 (const :format "" quote)
386 (list
387 (choice
388 :tag "Skipping range"
389 (const :tag "Skip entry" org-agenda-skip-entry-if)
390 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
391 (repeat :inline t :tag "Conditions for skipping"
392 (choice
393 :tag "Condition type"
394 (list :tag "Regexp matches" :inline t (const :format "" regexp) (regexp))
395 (list :tag "Regexp does not match" :inline t (const :format "" notregexp) (regexp))
396 (list :tag "TODO state is" :inline t
397 (const todo)
398 (choice
399 (const :tag "any not-done state" todo)
400 (const :tag "any done state" done)
401 (const :tag "any state" any)
402 (list :tag "Keyword list"
403 (const :format "" quote)
404 (repeat (string :tag "Keyword")))))
405 (list :tag "TODO state is not" :inline t
406 (const nottodo)
407 (choice
408 (const :tag "any not-done state" todo)
409 (const :tag "any done state" done)
410 (const :tag "any state" any)
411 (list :tag "Keyword list"
412 (const :format "" quote)
413 (repeat (string :tag "Keyword")))))
414 (const :tag "scheduled" scheduled)
415 (const :tag "not scheduled" notscheduled)
416 (const :tag "deadline" deadline)
417 (const :tag "no deadline" notdeadline)
418 (const :tag "timestamp" timestamp)
419 (const :tag "no timestamp" nottimestamp))))))
420 (list :tag "Non-standard skipping condition"
421 :value (org-agenda-skip-function)
422 (const org-agenda-skip-function)
423 (sexp :tag "Function or form (quoted!)"))
424 (list :tag "Any variable"
425 (variable :tag "Variable")
426 (sexp :tag "Value (sexp)"))))
427 "Selection of examples for agenda command settings.
428 This will be spliced into the custom type of
429 `org-agenda-custom-commands'.")
432 (defcustom org-agenda-custom-commands
433 '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
434 "Custom commands for the agenda.
435 These commands will be offered on the splash screen displayed by the
436 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
438 (key desc type match settings files)
440 key The key (one or more characters as a string) to be associated
441 with the command.
442 desc A description of the command, when omitted or nil, a default
443 description is built using MATCH.
444 type The command type, any of the following symbols:
445 agenda The daily/weekly agenda.
446 todo Entries with a specific TODO keyword, in all agenda files.
447 search Entries containing search words entry or headline.
448 tags Tags/Property/TODO match in all agenda files.
449 tags-todo Tags/P/T match in all agenda files, TODO entries only.
450 todo-tree Sparse tree of specific TODO keyword in *current* file.
451 tags-tree Sparse tree with all tags matches in *current* file.
452 occur-tree Occur sparse tree for *current* file.
453 ... A user-defined function.
454 match What to search for:
455 - a single keyword for TODO keyword searches
456 - a tags match expression for tags searches
457 - a word search expression for text searches.
458 - a regular expression for occur searches
459 For all other commands, this should be the empty string.
460 settings A list of option settings, similar to that in a let form, so like
461 this: ((opt1 val1) (opt2 val2) ...). The values will be
462 evaluated at the moment of execution, so quote them when needed.
463 files A list of files file to write the produced agenda buffer to
464 with the command `org-store-agenda-views'.
465 If a file name ends in \".html\", an HTML version of the buffer
466 is written out. If it ends in \".ps\", a postscript version is
467 produced. Otherwise, only the plain text is written to the file.
469 You can also define a set of commands, to create a composite agenda buffer.
470 In this case, an entry looks like this:
472 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
474 where
476 desc A description string to be displayed in the dispatcher menu.
477 cmd An agenda command, similar to the above. However, tree commands
478 are not allowed, but instead you can get agenda and global todo list.
479 So valid commands for a set are:
480 (agenda \"\" settings)
481 (alltodo \"\" settings)
482 (stuck \"\" settings)
483 (todo \"match\" settings files)
484 (search \"match\" settings files)
485 (tags \"match\" settings files)
486 (tags-todo \"match\" settings files)
488 Each command can carry a list of options, and another set of options can be
489 given for the whole set of commands. Individual command options take
490 precedence over the general options.
492 When using several characters as key to a command, the first characters
493 are prefix commands. For the dispatcher to display useful information, you
494 should provide a description for the prefix, like
496 (setq org-agenda-custom-commands
497 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
498 (\"hl\" tags \"+HOME+Lisa\")
499 (\"hp\" tags \"+HOME+Peter\")
500 (\"hk\" tags \"+HOME+Kim\")))"
501 :group 'org-agenda-custom-commands
502 :type `(repeat
503 (choice :value ("x" "Describe command here" tags "" nil)
504 (list :tag "Single command"
505 (string :tag "Access Key(s) ")
506 (option (string :tag "Description"))
507 (choice
508 (const :tag "Agenda" agenda)
509 (const :tag "TODO list" alltodo)
510 (const :tag "Search words" search)
511 (const :tag "Stuck projects" stuck)
512 (const :tag "Tags/Property match (all agenda files)" tags)
513 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
514 (const :tag "TODO keyword search (all agenda files)" todo)
515 (const :tag "Tags sparse tree (current buffer)" tags-tree)
516 (const :tag "TODO keyword tree (current buffer)" todo-tree)
517 (const :tag "Occur tree (current buffer)" occur-tree)
518 (sexp :tag "Other, user-defined function"))
519 (string :tag "Match (only for some commands)")
520 ,org-agenda-custom-commands-local-options
521 (option (repeat :tag "Export" (file :tag "Export to"))))
522 (list :tag "Command series, all agenda files"
523 (string :tag "Access Key(s)")
524 (string :tag "Description ")
525 (repeat :tag "Component"
526 (choice
527 (list :tag "Agenda"
528 (const :format "" agenda)
529 (const :tag "" :format "" "")
530 ,org-agenda-custom-commands-local-options)
531 (list :tag "TODO list (all keywords)"
532 (const :format "" alltodo)
533 (const :tag "" :format "" "")
534 ,org-agenda-custom-commands-local-options)
535 (list :tag "Search words"
536 (const :format "" search)
537 (string :tag "Match")
538 ,org-agenda-custom-commands-local-options)
539 (list :tag "Stuck projects"
540 (const :format "" stuck)
541 (const :tag "" :format "" "")
542 ,org-agenda-custom-commands-local-options)
543 (list :tag "Tags search"
544 (const :format "" tags)
545 (string :tag "Match")
546 ,org-agenda-custom-commands-local-options)
547 (list :tag "Tags search, TODO entries only"
548 (const :format "" tags-todo)
549 (string :tag "Match")
550 ,org-agenda-custom-commands-local-options)
551 (list :tag "TODO keyword search"
552 (const :format "" todo)
553 (string :tag "Match")
554 ,org-agenda-custom-commands-local-options)
555 (list :tag "Other, user-defined function"
556 (symbol :tag "function")
557 (string :tag "Match")
558 ,org-agenda-custom-commands-local-options)))
560 (repeat :tag "Settings for entire command set"
561 (list (variable :tag "Any variable")
562 (sexp :tag "Value")))
563 (option (repeat :tag "Export" (file :tag "Export to"))))
564 (cons :tag "Prefix key documentation"
565 (string :tag "Access Key(s)")
566 (string :tag "Description ")))))
568 (defcustom org-agenda-query-register ?o
569 "The register holding the current query string.
570 The purpose of this is that if you construct a query string interactively,
571 you can then use it to define a custom command."
572 :group 'org-agenda-custom-commands
573 :type 'character)
575 (defcustom org-stuck-projects
576 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
577 "How to identify stuck projects.
578 This is a list of four items:
579 1. A tags/todo/property matcher string that is used to identify a project.
580 See the manual for a description of tag and property searches.
581 The entire tree below a headline matched by this is considered one project.
582 2. A list of TODO keywords identifying non-stuck projects.
583 If the project subtree contains any headline with one of these todo
584 keywords, the project is considered to be not stuck. If you specify
585 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
586 3. A list of tags identifying non-stuck projects.
587 If the project subtree contains any headline with one of these tags,
588 the project is considered to be not stuck. If you specify \"*\" as
589 a tag, any tag will mark the project unstuck. Note that this is about
590 the explicit presence of a tag somewhere in the subtree, inherited
591 tags do not count here. If inherited tags make a project not stuck,
592 use \"-TAG\" in the tags part of the matcher under (1.) above.
593 4. An arbitrary regular expression matching non-stuck projects.
595 If the project turns out to be not stuck, search continues also in the
596 subtree to see if any of the subtasks have project status.
598 See also the variable `org-tags-match-list-sublevels' which applies
599 to projects matched by this search as well.
601 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
602 or `C-c a #' to produce the list."
603 :group 'org-agenda-custom-commands
604 :type '(list
605 (string :tag "Tags/TODO match to identify a project")
606 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
607 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
608 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
610 (defcustom org-agenda-filter-effort-default-operator "<"
611 "The default operator for effort estimate filtering.
612 If you select an effort estimate limit without first pressing an operator,
613 this one will be used."
614 :group 'org-agenda-custom-commands
615 :type '(choice (const :tag "less or equal" "<")
616 (const :tag "greater or equal"">")
617 (const :tag "equal" "=")))
619 (defgroup org-agenda-skip nil
620 "Options concerning skipping parts of agenda files."
621 :tag "Org Agenda Skip"
622 :group 'org-agenda)
624 (defcustom org-agenda-skip-function-global nil
625 "Function to be called at each match during agenda construction.
626 If this function returns nil, the current match should not be skipped.
627 If the function decided to skip an agenda match, is must return the
628 buffer position from which the search should be continued.
629 This may also be a Lisp form, which will be evaluated.
631 This variable will be applied to every agenda match, including
632 tags/property searches and TODO lists. So try to make the test function
633 do its checking as efficiently as possible. To implement a skipping
634 condition just for specific agenda commands, use the variable
635 `org-agenda-skip-function' which can be set in the options section
636 of custom agenda commands."
637 :group 'org-agenda-skip
638 :type 'sexp)
640 (defgroup org-agenda-daily/weekly nil
641 "Options concerning the daily/weekly agenda."
642 :tag "Org Agenda Daily/Weekly"
643 :group 'org-agenda)
644 (defgroup org-agenda-todo-list nil
645 "Options concerning the global todo list agenda view."
646 :tag "Org Agenda Todo List"
647 :group 'org-agenda)
648 (defgroup org-agenda-match-view nil
649 "Options concerning the general tags/property/todo match agenda view."
650 :tag "Org Agenda Match View"
651 :group 'org-agenda)
652 (defgroup org-agenda-search-view nil
653 "Options concerning the search agenda view."
654 :tag "Org Agenda Search View"
655 :group 'org-agenda)
657 (defvar org-agenda-archives-mode nil
658 "Non-nil means the agenda will include archived items.
659 If this is the symbol `trees', trees in the selected agenda scope
660 that are marked with the ARCHIVE tag will be included anyway. When this is
661 t, also all archive files associated with the current selection of agenda
662 files will be included.")
664 (defcustom org-agenda-restriction-lock-highlight-subtree t
665 "Non-nil means highlight the whole subtree when restriction is active.
666 Otherwise only highlight the headline. Highlighting the whole subtree is
667 useful to ensure no edits happen beyond the restricted region."
668 :group 'org-agenda
669 :type 'boolean)
671 (defcustom org-agenda-skip-comment-trees t
672 "Non-nil means skip trees that start with the COMMENT keyword.
673 When nil, these trees are also scanned by agenda commands."
674 :group 'org-agenda-skip
675 :type 'boolean)
677 (defcustom org-agenda-todo-list-sublevels t
678 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
679 When nil, the sublevels of a TODO entry are not checked, resulting in
680 potentially much shorter TODO lists."
681 :group 'org-agenda-skip
682 :group 'org-agenda-todo-list
683 :type 'boolean)
685 (defcustom org-agenda-todo-ignore-with-date nil
686 "Non-nil means don't show entries with a date in the global todo list.
687 You can use this if you prefer to mark mere appointments with a TODO keyword,
688 but don't want them to show up in the TODO list.
689 When this is set, it also covers deadlines and scheduled items, the settings
690 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
691 will be ignored.
692 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
693 :group 'org-agenda-skip
694 :group 'org-agenda-todo-list
695 :type 'boolean)
697 (defcustom org-agenda-todo-ignore-timestamp nil
698 "Non-nil means don't show entries with a timestamp.
699 This applies when creating the global todo list.
700 Valid values are:
702 past Don't show entries for today or in the past.
704 future Don't show entries with a timestamp in the future.
705 The idea behind this is that if it has a future
706 timestamp, you don't want to think about it until the
707 date.
709 all Don't show any entries with a timestamp in the global todo list.
710 The idea behind this is that by setting a timestamp, you
711 have already \"taken care\" of this item.
713 This variable can also have an integer as a value. If positive (N),
714 todos with a timestamp N or more days in the future will be ignored. If
715 negative (-N), todos with a timestamp N or more days in the past will be
716 ignored. If 0, todos with a timestamp either today or in the future will
717 be ignored. For example, a value of -1 will exclude todos with a
718 timestamp in the past (yesterday or earlier), while a value of 7 will
719 exclude todos with a timestamp a week or more in the future.
721 See also `org-agenda-todo-ignore-with-date'.
722 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
723 to make his option also apply to the tags-todo list."
724 :group 'org-agenda-skip
725 :group 'org-agenda-todo-list
726 :version "24.1"
727 :type '(choice
728 (const :tag "Ignore future timestamp todos" future)
729 (const :tag "Ignore past or present timestamp todos" past)
730 (const :tag "Ignore all timestamp todos" all)
731 (const :tag "Show timestamp todos" nil)
732 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
734 (defcustom org-agenda-todo-ignore-scheduled nil
735 "Non-nil means, ignore some scheduled TODO items when making TODO list.
736 This applies when creating the global todo list.
737 Valid values are:
739 past Don't show entries scheduled today or in the past.
741 future Don't show entries scheduled in the future.
742 The idea behind this is that by scheduling it, you don't want to
743 think about it until the scheduled date.
745 all Don't show any scheduled entries in the global todo list.
746 The idea behind this is that by scheduling it, you have already
747 \"taken care\" of this item.
749 t Same as `all', for backward compatibility.
751 This variable can also have an integer as a value. See
752 `org-agenda-todo-ignore-timestamp' for more details.
754 See also `org-agenda-todo-ignore-with-date'.
755 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
756 to make his option also apply to the tags-todo list."
757 :group 'org-agenda-skip
758 :group 'org-agenda-todo-list
759 :type '(choice
760 (const :tag "Ignore future-scheduled todos" future)
761 (const :tag "Ignore past- or present-scheduled todos" past)
762 (const :tag "Ignore all scheduled todos" all)
763 (const :tag "Ignore all scheduled todos (compatibility)" t)
764 (const :tag "Show scheduled todos" nil)
765 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
767 (defcustom org-agenda-todo-ignore-deadlines nil
768 "Non-nil means ignore some deadline TODO items when making TODO list.
769 There are different motivations for using different values, please think
770 carefully when configuring this variable.
772 This applies when creating the global todo list.
773 Valid values are:
775 near Don't show near deadline entries. A deadline is near when it is
776 closer than `org-deadline-warning-days' days. The idea behind this
777 is that such items will appear in the agenda anyway.
779 far Don't show TODO entries where a deadline has been defined, but
780 the deadline is not near. This is useful if you don't want to
781 use the todo list to figure out what to do now.
783 past Don't show entries with a deadline timestamp for today or in the past.
785 future Don't show entries with a deadline timestamp in the future, not even
786 when they become `near' ones. Use it with caution.
788 all Ignore all TODO entries that do have a deadline.
790 t Same as `near', for backward compatibility.
792 This variable can also have an integer as a value. See
793 `org-agenda-todo-ignore-timestamp' for more details.
795 See also `org-agenda-todo-ignore-with-date'.
796 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
797 to make his option also apply to the tags-todo list."
798 :group 'org-agenda-skip
799 :group 'org-agenda-todo-list
800 :type '(choice
801 (const :tag "Ignore near deadlines" near)
802 (const :tag "Ignore near deadlines (compatibility)" t)
803 (const :tag "Ignore far deadlines" far)
804 (const :tag "Ignore all TODOs with a deadlines" all)
805 (const :tag "Show all TODOs, even if they have a deadline" nil)
806 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
808 (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
809 "Time unit to use when possibly ignoring an agenda item.
811 See the docstring of various `org-agenda-todo-ignore-*' options.
812 The default is to compare time stamps using days. An item is thus
813 considered to be in the future if it is at least one day after today.
814 Non-nil means to compare time stamps using seconds. An item is then
815 considered future if it has a time value later than current time."
816 :group 'org-agenda-skip
817 :group 'org-agenda-todo-list
818 :version "24.4"
819 :package-version '(Org . "8.0")
820 :type '(choice
821 (const :tag "Compare time with days" nil)
822 (const :tag "Compare time with seconds" t)))
824 (defcustom org-agenda-tags-todo-honor-ignore-options nil
825 "Non-nil means honor todo-list ignores options also in tags-todo search.
826 The variables
827 `org-agenda-todo-ignore-with-date',
828 `org-agenda-todo-ignore-timestamp',
829 `org-agenda-todo-ignore-scheduled',
830 `org-agenda-todo-ignore-deadlines'
831 make the global TODO list skip entries that have time stamps of certain
832 kinds. If this option is set, the same options will also apply for the
833 tags-todo search, which is the general tags/property matcher
834 restricted to unfinished TODO entries only."
835 :group 'org-agenda-skip
836 :group 'org-agenda-todo-list
837 :group 'org-agenda-match-view
838 :type 'boolean)
840 (defcustom org-agenda-skip-scheduled-if-done nil
841 "Non-nil means don't show scheduled items in agenda when they are done.
842 This is relevant for the daily/weekly agenda, not for the TODO list. And
843 it applies only to the actual date of the scheduling. Warnings about
844 an item with a past scheduling dates are always turned off when the item
845 is DONE."
846 :group 'org-agenda-skip
847 :group 'org-agenda-daily/weekly
848 :type 'boolean)
850 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
851 "Non-nil means skip scheduling line if same entry shows because of deadline.
853 In the agenda of today, an entry can show up multiple times
854 because it is both scheduled and has a nearby deadline, and maybe
855 a plain time stamp as well.
857 When this variable is nil, the entry will be shown several times.
859 When set to t, then only the deadline is shown and the fact that
860 the entry is scheduled today or was scheduled previously is not
861 shown.
863 When set to the symbol `not-today', skip scheduled previously,
864 but not scheduled today.
866 When set to the symbol `repeated-after-deadline', skip scheduled
867 items if they are repeated beyond the current deadline."
868 :group 'org-agenda-skip
869 :group 'org-agenda-daily/weekly
870 :type '(choice
871 (const :tag "Never" nil)
872 (const :tag "Always" t)
873 (const :tag "Not when scheduled today" not-today)
874 (const :tag "When repeated past deadline" repeated-after-deadline)))
876 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
877 "Non-nil means skip timestamp line if same entry shows because of deadline.
878 In the agenda of today, an entry can show up multiple times
879 because it has both a plain timestamp and has a nearby deadline.
880 When this variable is t, then only the deadline is shown and the
881 fact that the entry has a timestamp for or including today is not
882 shown. When this variable is nil, the entry will be shown
883 several times."
884 :group 'org-agenda-skip
885 :group 'org-agenda-daily/weekly
886 :version "24.1"
887 :type '(choice
888 (const :tag "Never" nil)
889 (const :tag "Always" t)))
891 (defcustom org-agenda-skip-deadline-if-done nil
892 "Non-nil means don't show deadlines when the corresponding item is done.
893 When nil, the deadline is still shown and should give you a happy feeling.
894 This is relevant for the daily/weekly agenda. And it applied only to the
895 actually date of the deadline. Warnings about approaching and past-due
896 deadlines are always turned off when the item is DONE."
897 :group 'org-agenda-skip
898 :group 'org-agenda-daily/weekly
899 :type 'boolean)
901 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
902 "Non-nil means skip deadline prewarning when entry is also scheduled.
903 This will apply on all days where a prewarning for the deadline would
904 be shown, but not at the day when the entry is actually due. On that day,
905 the deadline will be shown anyway.
906 This variable may be set to nil, t, the symbol `pre-scheduled',
907 or a number which will then give the number of days before the actual
908 deadline when the prewarnings should resume. The symbol `pre-scheduled'
909 eliminates the deadline prewarning only prior to the scheduled date.
910 This can be used in a workflow where the first showing of the deadline will
911 trigger you to schedule it, and then you don't want to be reminded of it
912 because you will take care of it on the day when scheduled."
913 :group 'org-agenda-skip
914 :group 'org-agenda-daily/weekly
915 :version "24.1"
916 :type '(choice
917 (const :tag "Always show prewarning" nil)
918 (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
919 (const :tag "Remove prewarning if entry is scheduled" t)
920 (integer :tag "Restart prewarning N days before deadline")))
922 (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
923 "Non-nil means skip scheduled delay when entry also has a deadline.
924 This variable may be set to nil, t, the symbol `post-deadline',
925 or a number which will then give the number of days after the actual
926 scheduled date when the delay should expire. The symbol `post-deadline'
927 eliminates the schedule delay when the date is posterior to the deadline."
928 :group 'org-agenda-skip
929 :group 'org-agenda-daily/weekly
930 :version "24.4"
931 :package-version '(Org . "8.0")
932 :type '(choice
933 (const :tag "Always honor delay" nil)
934 (const :tag "Ignore delay if posterior to the deadline" post-deadline)
935 (const :tag "Ignore delay if entry has a deadline" t)
936 (integer :tag "Honor delay up until N days after the scheduled date")))
938 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
939 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
940 When non-nil, after the search for timestamps has matched once in an
941 entry, the rest of the entry will not be searched."
942 :group 'org-agenda-skip
943 :type 'boolean)
945 (defcustom org-agenda-skip-timestamp-if-done nil
946 "Non-nil means don't select item by timestamp or -range if it is DONE."
947 :group 'org-agenda-skip
948 :group 'org-agenda-daily/weekly
949 :type 'boolean)
951 (defcustom org-agenda-dim-blocked-tasks t
952 "Non-nil means dim blocked tasks in the agenda display.
953 This causes some overhead during agenda construction, but if you
954 have turned on `org-enforce-todo-dependencies',
955 `org-enforce-todo-checkbox-dependencies', or any other blocking
956 mechanism, this will create useful feedback in the agenda.
958 Instead of t, this variable can also have the value `invisible'.
959 Then blocked tasks will be invisible and only become visible when
960 they become unblocked. An exemption to this behavior is when a task is
961 blocked because of unchecked checkboxes below it. Since checkboxes do
962 not show up in the agenda views, making this task invisible you remove any
963 trace from agenda views that there is something to do. Therefore, a task
964 that is blocked because of checkboxes will never be made invisible, it
965 will only be dimmed."
966 :group 'org-agenda-daily/weekly
967 :group 'org-agenda-todo-list
968 :version "24.3"
969 :type '(choice
970 (const :tag "Do not dim" nil)
971 (const :tag "Dim to a gray face" t)
972 (const :tag "Make invisible" invisible)))
974 (defcustom org-timeline-show-empty-dates 3
975 "Non-nil means `org-timeline' also shows dates without an entry.
976 When nil, only the days which actually have entries are shown.
977 When t, all days between the first and the last date are shown.
978 When an integer, show also empty dates, but if there is a gap of more than
979 N days, just insert a special line indicating the size of the gap."
980 :group 'org-agenda-skip
981 :type '(choice
982 (const :tag "None" nil)
983 (const :tag "All" t)
984 (integer :tag "at most")))
986 (defgroup org-agenda-startup nil
987 "Options concerning initial settings in the Agenda in Org Mode."
988 :tag "Org Agenda Startup"
989 :group 'org-agenda)
991 (defcustom org-agenda-menu-show-matcher t
992 "Non-nil means show the match string in the agenda dispatcher menu.
993 When nil, the matcher string is not shown, but is put into the help-echo
994 property so than moving the mouse over the command shows it.
995 Setting it to nil is good if matcher strings are very long and/or if
996 you want to use two-columns display (see `org-agenda-menu-two-columns')."
997 :group 'org-agenda
998 :version "24.1"
999 :type 'boolean)
1001 (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
1003 (defcustom org-agenda-menu-two-columns nil
1004 "Non-nil means, use two columns to show custom commands in the dispatcher.
1005 If you use this, you probably want to set `org-agenda-menu-show-matcher'
1006 to nil."
1007 :group 'org-agenda
1008 :version "24.1"
1009 :type 'boolean)
1011 (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
1012 (defcustom org-agenda-finalize-hook nil
1013 "Hook run just before displaying an agenda buffer.
1014 The buffer is still writable when the hook is called.
1016 You can modify some of the buffer substrings but you should be
1017 extra careful not to modify the text properties of the agenda
1018 headlines as the agenda display heavily relies on them."
1019 :group 'org-agenda-startup
1020 :type 'hook)
1022 (defcustom org-agenda-mouse-1-follows-link nil
1023 "Non-nil means mouse-1 on a link will follow the link in the agenda.
1024 A longer mouse click will still set point. Does not work on XEmacs.
1025 Needs to be set before org.el is loaded."
1026 :group 'org-agenda-startup
1027 :type 'boolean)
1029 (defcustom org-agenda-start-with-follow-mode nil
1030 "The initial value of follow mode in a newly created agenda window."
1031 :group 'org-agenda-startup
1032 :type 'boolean)
1034 (defcustom org-agenda-follow-indirect nil
1035 "Non-nil means `org-agenda-follow-mode' displays only the
1036 current item's tree, in an indirect buffer."
1037 :group 'org-agenda
1038 :version "24.1"
1039 :type 'boolean)
1041 (defcustom org-agenda-show-outline-path t
1042 "Non-nil means show outline path in echo area after line motion."
1043 :group 'org-agenda-startup
1044 :type 'boolean)
1046 (defcustom org-agenda-start-with-entry-text-mode nil
1047 "The initial value of entry-text-mode in a newly created agenda window."
1048 :group 'org-agenda-startup
1049 :type 'boolean)
1051 (defcustom org-agenda-entry-text-maxlines 5
1052 "Number of text lines to be added when `E' is pressed in the agenda.
1054 Note that this variable only used during agenda display. Add add entry text
1055 when exporting the agenda, configure the variable
1056 `org-agenda-add-entry-ext-maxlines'."
1057 :group 'org-agenda
1058 :type 'integer)
1060 (defcustom org-agenda-entry-text-exclude-regexps nil
1061 "List of regular expressions to clean up entry text.
1062 The complete matches of all regular expressions in this list will be
1063 removed from entry text before it is shown in the agenda."
1064 :group 'org-agenda
1065 :type '(repeat (regexp)))
1067 (defcustom org-agenda-entry-text-leaders " > "
1068 "Text prepended to the entry text in agenda buffers."
1069 :version "24.4"
1070 :package-version '(Org . "8.0")
1071 :group 'org-agenda
1072 :type 'string)
1074 (defvar org-agenda-entry-text-cleanup-hook nil
1075 "Hook that is run after basic cleanup of entry text to be shown in agenda.
1076 This cleanup is done in a temporary buffer, so the function may inspect and
1077 change the entire buffer.
1078 Some default stuff like drawers and scheduling/deadline dates will already
1079 have been removed when this is called, as will any matches for regular
1080 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
1082 (defvar org-agenda-include-inactive-timestamps nil
1083 "Non-nil means include inactive time stamps in agenda and timeline.
1084 Dynamically scoped.")
1086 (defgroup org-agenda-windows nil
1087 "Options concerning the windows used by the Agenda in Org Mode."
1088 :tag "Org Agenda Windows"
1089 :group 'org-agenda)
1091 (defcustom org-agenda-window-setup 'reorganize-frame
1092 "How the agenda buffer should be displayed.
1093 Possible values for this option are:
1095 current-window Show agenda in the current window, keeping all other windows.
1096 other-window Use `switch-to-buffer-other-window' to display agenda.
1097 reorganize-frame Show only two windows on the current frame, the current
1098 window and the agenda.
1099 other-frame Use `switch-to-buffer-other-frame' to display agenda.
1100 Also, when exiting the agenda, kill that frame.
1101 See also the variable `org-agenda-restore-windows-after-quit'."
1102 :group 'org-agenda-windows
1103 :type '(choice
1104 (const current-window)
1105 (const other-frame)
1106 (const other-window)
1107 (const reorganize-frame)))
1109 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
1110 "The min and max height of the agenda window as a fraction of frame height.
1111 The value of the variable is a cons cell with two numbers between 0 and 1.
1112 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
1113 :group 'org-agenda-windows
1114 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
1116 (defcustom org-agenda-restore-windows-after-quit nil
1117 "Non-nil means restore window configuration upon exiting agenda.
1118 Before the window configuration is changed for displaying the agenda,
1119 the current status is recorded. When the agenda is exited with
1120 `q' or `x' and this option is set, the old state is restored. If
1121 `org-agenda-window-setup' is `other-frame', the value of this
1122 option will be ignored."
1123 :group 'org-agenda-windows
1124 :type 'boolean)
1126 (defcustom org-agenda-ndays nil
1127 "Number of days to include in overview display.
1128 Should be 1 or 7.
1129 Obsolete, see `org-agenda-span'."
1130 :group 'org-agenda-daily/weekly
1131 :type '(choice (const nil)
1132 (integer)))
1134 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
1136 (defcustom org-agenda-span 'week
1137 "Number of days to include in overview display.
1138 Can be day, week, month, year, or any number of days.
1139 Custom commands can set this variable in the options section."
1140 :group 'org-agenda-daily/weekly
1141 :type '(choice (const :tag "Day" day)
1142 (const :tag "Week" week)
1143 (const :tag "Fortnight" fortnight)
1144 (const :tag "Month" month)
1145 (const :tag "Year" year)
1146 (integer :tag "Custom")))
1148 (defcustom org-agenda-start-on-weekday 1
1149 "Non-nil means start the overview always on the specified weekday.
1150 0 denotes Sunday, 1 denotes Monday, etc.
1151 When nil, always start on the current day.
1152 Custom commands can set this variable in the options section."
1153 :group 'org-agenda-daily/weekly
1154 :type '(choice (const :tag "Today" nil)
1155 (integer :tag "Weekday No.")))
1157 (defcustom org-agenda-show-all-dates t
1158 "Non-nil means `org-agenda' shows every day in the selected range.
1159 When nil, only the days which actually have entries are shown."
1160 :group 'org-agenda-daily/weekly
1161 :type 'boolean)
1163 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1164 "Format string for displaying dates in the agenda.
1165 Used by the daily/weekly agenda and by the timeline. This should be
1166 a format string understood by `format-time-string', or a function returning
1167 the formatted date as a string. The function must take a single argument,
1168 a calendar-style date list like (month day year)."
1169 :group 'org-agenda-daily/weekly
1170 :type '(choice
1171 (string :tag "Format string")
1172 (function :tag "Function")))
1174 (defun org-agenda-format-date-aligned (date)
1175 "Format a DATE string for display in the daily/weekly agenda, or timeline.
1176 This function makes sure that dates are aligned for easy reading."
1177 (require 'cal-iso)
1178 (let* ((dayname (calendar-day-name date))
1179 (day (cadr date))
1180 (day-of-week (calendar-day-of-week date))
1181 (month (car date))
1182 (monthname (calendar-month-name month))
1183 (year (nth 2 date))
1184 (iso-week (org-days-to-iso-week
1185 (calendar-absolute-from-gregorian date)))
1186 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1187 (1- year))
1188 ((and (= month 12) (<= iso-week 1))
1189 (1+ year))
1190 (t year)))
1191 (weekstring (if (= day-of-week 1)
1192 (format " W%02d" iso-week)
1193 "")))
1194 (format "%-10s %2d %s %4d%s"
1195 dayname day monthname year weekstring)))
1197 (defcustom org-agenda-time-leading-zero nil
1198 "Non-nil means use leading zero for military times in agenda.
1199 For example, 9:30am would become 09:30 rather than 9:30."
1200 :group 'org-agenda-daily/weekly
1201 :version "24.1"
1202 :type 'boolean)
1204 (defcustom org-agenda-timegrid-use-ampm nil
1205 "When set, show AM/PM style timestamps on the timegrid."
1206 :group 'org-agenda
1207 :version "24.1"
1208 :type 'boolean)
1210 (defun org-agenda-time-of-day-to-ampm (time)
1211 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1212 (let* ((hour-number (string-to-number (substring time 0 -3)))
1213 (minute (substring time -2))
1214 (ampm "am"))
1215 (cond
1216 ((equal hour-number 12)
1217 (setq ampm "pm"))
1218 ((> hour-number 12)
1219 (setq ampm "pm")
1220 (setq hour-number (- hour-number 12))))
1221 (concat
1222 (if org-agenda-time-leading-zero
1223 (format "%02d" hour-number)
1224 (format "%02s" (number-to-string hour-number)))
1225 ":" minute ampm)))
1227 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1228 "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
1229 (if org-agenda-timegrid-use-ampm
1230 (org-agenda-time-of-day-to-ampm time)
1231 time))
1233 (defcustom org-agenda-weekend-days '(6 0)
1234 "Which days are weekend?
1235 These days get the special face `org-agenda-date-weekend' in the agenda
1236 and timeline buffers."
1237 :group 'org-agenda-daily/weekly
1238 :type '(set :greedy t
1239 (const :tag "Monday" 1)
1240 (const :tag "Tuesday" 2)
1241 (const :tag "Wednesday" 3)
1242 (const :tag "Thursday" 4)
1243 (const :tag "Friday" 5)
1244 (const :tag "Saturday" 6)
1245 (const :tag "Sunday" 0)))
1247 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1248 "Non-nil means jump to today when moving a past date forward in time.
1249 When using S-right in the agenda to move a a date forward, and the date
1250 stamp currently points to the past, the first key press will move it
1251 to today. WHen nil, just move one day forward even if the date stays
1252 in the past."
1253 :group 'org-agenda-daily/weekly
1254 :version "24.1"
1255 :type 'boolean)
1257 (defcustom org-agenda-include-diary nil
1258 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1259 Custom commands can set this variable in the options section."
1260 :group 'org-agenda-daily/weekly
1261 :type 'boolean)
1263 (defcustom org-agenda-include-deadlines t
1264 "If non-nil, include entries within their deadline warning period.
1265 Custom commands can set this variable in the options section."
1266 :group 'org-agenda-daily/weekly
1267 :version "24.1"
1268 :type 'boolean)
1270 (defcustom org-agenda-repeating-timestamp-show-all t
1271 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1272 When set to a list of strings, only show occurrences of repeating
1273 stamps for these TODO keywords. When nil, only one occurrence is
1274 shown, either today or the nearest into the future."
1275 :group 'org-agenda-daily/weekly
1276 :type '(choice
1277 (const :tag "Show repeating stamps" t)
1278 (repeat :tag "Show repeating stamps for these TODO keywords"
1279 (string :tag "TODO Keyword"))
1280 (const :tag "Don't show repeating stamps" nil)))
1282 (defcustom org-scheduled-past-days 10000
1283 "Number of days to continue listing scheduled items not marked DONE.
1284 When an item is scheduled on a date, it shows up in the agenda on this
1285 day and will be listed until it is marked done for the number of days
1286 given here."
1287 :group 'org-agenda-daily/weekly
1288 :type 'integer)
1290 (defcustom org-agenda-log-mode-items '(closed clock)
1291 "List of items that should be shown in agenda log mode.
1292 This list may contain the following symbols:
1294 closed Show entries that have been closed on that day.
1295 clock Show entries that have received clocked time on that day.
1296 state Show all logged state changes.
1297 Note that instead of changing this variable, you can also press `C-u l' in
1298 the agenda to display all available LOG items temporarily."
1299 :group 'org-agenda-daily/weekly
1300 :type '(set :greedy t (const closed) (const clock) (const state)))
1302 (defcustom org-agenda-clock-consistency-checks
1303 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1304 :gap-ok-around ("4:00")
1305 :default-face ((:background "DarkRed") (:foreground "white"))
1306 :overlap-face nil :gap-face nil :no-end-time-face nil
1307 :long-face nil :short-face nil)
1308 "This is a property list, with the following keys:
1310 :max-duration Mark clocking chunks that are longer than this time.
1311 This is a time string like \"HH:MM\", or the number
1312 of minutes as an integer.
1314 :min-duration Mark clocking chunks that are shorter that this.
1315 This is a time string like \"HH:MM\", or the number
1316 of minutes as an integer.
1318 :max-gap Mark gaps between clocking chunks that are longer than
1319 this duration. A number of minutes, or a string
1320 like \"HH:MM\".
1322 :gap-ok-around List of times during the day which are usually not working
1323 times. When a gap is detected, but the gap contains any
1324 of these times, the gap is *not* reported. For example,
1325 if this is (\"4:00\" \"13:00\") then gaps that contain
1326 4:00 in the morning (i.e. the night) and 13:00
1327 (i.e. a typical lunch time) do not cause a warning.
1328 You should have at least one time during the night in this
1329 list, or otherwise the first task each morning will trigger
1330 a warning because it follows a long gap.
1332 Furthermore, the following properties can be used to define faces for
1333 issue display.
1335 :default-face the default face, if the specific face is undefined
1336 :overlap-face face for overlapping clocks
1337 :gap-face face for gaps between clocks
1338 :no-end-time-face face for incomplete clocks
1339 :long-face face for clock intervals that are too long
1340 :short-face face for clock intervals that are too short"
1341 :group 'org-agenda-daily/weekly
1342 :group 'org-clock
1343 :version "24.1"
1344 :type 'plist)
1346 (defcustom org-agenda-log-mode-add-notes t
1347 "Non-nil means add first line of notes to log entries in agenda views.
1348 If a log item like a state change or a clock entry is associated with
1349 notes, the first line of these notes will be added to the entry in the
1350 agenda display."
1351 :group 'org-agenda-daily/weekly
1352 :type 'boolean)
1354 (defcustom org-agenda-start-with-log-mode nil
1355 "The initial value of log-mode in a newly created agenda window.
1356 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1357 explanations on the possible values."
1358 :group 'org-agenda-startup
1359 :group 'org-agenda-daily/weekly
1360 :type '(choice (const :tag "Don't show log items" nil)
1361 (const :tag "Show only log items" only)
1362 (const :tag "Show all possible log items" clockcheck)
1363 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1364 (choice (const :tag "Show closed log items" closed)
1365 (const :tag "Show clocked log items" clock)
1366 (const :tag "Show all logged state changes" state)))))
1368 (defcustom org-agenda-start-with-clockreport-mode nil
1369 "The initial value of clockreport-mode in a newly created agenda window."
1370 :group 'org-agenda-startup
1371 :group 'org-agenda-daily/weekly
1372 :type 'boolean)
1374 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1375 "Property list with parameters for the clocktable in clockreport mode.
1376 This is the display mode that shows a clock table in the daily/weekly
1377 agenda, the properties for this dynamic block can be set here.
1378 The usual clocktable parameters are allowed here, but you cannot set
1379 the properties :name, :tstart, :tend, :block, and :scope - these will
1380 be overwritten to make sure the content accurately reflects the
1381 current display in the agenda."
1382 :group 'org-agenda-daily/weekly
1383 :type 'plist)
1385 (defcustom org-agenda-search-view-always-boolean nil
1386 "Non-nil means the search string is interpreted as individual parts.
1388 The search string for search view can either be interpreted as a phrase,
1389 or as a list of snippets that define a boolean search for a number of
1390 strings.
1392 When this is non-nil, the string will be split on whitespace, and each
1393 snippet will be searched individually, and all must match in order to
1394 select an entry. A snippet is then a single string of non-white
1395 characters, or a string in double quotes, or a regexp in {} braces.
1396 If a snippet is preceded by \"-\", the snippet must *not* match.
1397 \"+\" is syntactic sugar for positive selection. Each snippet may
1398 be found as a full word or a partial word, but see the variable
1399 `org-agenda-search-view-force-full-words'.
1401 When this is nil, search will look for the entire search phrase as one,
1402 with each space character matching any amount of whitespace, including
1403 line breaks.
1405 Even when this is nil, you can still switch to Boolean search dynamically
1406 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1407 is a regexp marked with braces like \"{abc}\", this will also switch to
1408 boolean search."
1409 :group 'org-agenda-search-view
1410 :version "24.1"
1411 :type 'boolean)
1413 (org-defvaralias 'org-agenda-search-view-search-words-only
1414 'org-agenda-search-view-always-boolean)
1416 (defcustom org-agenda-search-view-force-full-words nil
1417 "Non-nil means, search words must be matches as complete words.
1418 When nil, they may also match part of a word."
1419 :group 'org-agenda-search-view
1420 :version "24.1"
1421 :type 'boolean)
1423 (defcustom org-agenda-search-view-max-outline-level 0
1424 "Maximum outline level to display in search view.
1425 E.g. when this is set to 1, the search view will only
1426 show headlines of level 1. When set to 0, the default
1427 value, don't limit agenda view by outline level."
1428 :group 'org-agenda-search-view
1429 :version "24.4"
1430 :package-version '(Org . "8.3")
1431 :type 'integer)
1433 (defgroup org-agenda-time-grid nil
1434 "Options concerning the time grid in the Org-mode Agenda."
1435 :tag "Org Agenda Time Grid"
1436 :group 'org-agenda)
1438 (defcustom org-agenda-search-headline-for-time t
1439 "Non-nil means search headline for a time-of-day.
1440 If the headline contains a time-of-day in one format or another, it will
1441 be used to sort the entry into the time sequence of items for a day.
1442 Some people have time stamps in the headline that refer to the creation
1443 time or so, and then this produces an unwanted side effect. If this is
1444 the case for your, use this variable to turn off searching the headline
1445 for a time."
1446 :group 'org-agenda-time-grid
1447 :type 'boolean)
1449 (defcustom org-agenda-use-time-grid t
1450 "Non-nil means show a time grid in the agenda schedule.
1451 A time grid is a set of lines for specific times (like every two hours between
1452 8:00 and 20:00). The items scheduled for a day at specific times are
1453 sorted in between these lines.
1454 For details about when the grid will be shown, and what it will look like, see
1455 the variable `org-agenda-time-grid'."
1456 :group 'org-agenda-time-grid
1457 :type 'boolean)
1459 (defcustom org-agenda-time-grid
1460 '((daily today require-timed)
1461 "----------------"
1462 (800 1000 1200 1400 1600 1800 2000))
1464 "The settings for time grid for agenda display.
1465 This is a list of three items. The first item is again a list. It contains
1466 symbols specifying conditions when the grid should be displayed:
1468 daily if the agenda shows a single day
1469 weekly if the agenda shows an entire week
1470 today show grid on current date, independent of daily/weekly display
1471 require-timed show grid only if at least one item has a time specification
1473 The second item is a string which will be placed behind the grid time.
1475 The third item is a list of integers, indicating the times that should have
1476 a grid line."
1477 :group 'org-agenda-time-grid
1478 :type
1479 '(list
1480 (set :greedy t :tag "Grid Display Options"
1481 (const :tag "Show grid in single day agenda display" daily)
1482 (const :tag "Show grid in weekly agenda display" weekly)
1483 (const :tag "Always show grid for today" today)
1484 (const :tag "Show grid only if any timed entries are present"
1485 require-timed)
1486 (const :tag "Skip grid times already present in an entry"
1487 remove-match))
1488 (string :tag "Grid String")
1489 (repeat :tag "Grid Times" (integer :tag "Time"))))
1491 (defcustom org-agenda-show-current-time-in-grid t
1492 "Non-nil means show the current time in the time grid."
1493 :group 'org-agenda-time-grid
1494 :version "24.1"
1495 :type 'boolean)
1497 (defcustom org-agenda-current-time-string
1498 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1499 "The string for the current time marker in the agenda."
1500 :group 'org-agenda-time-grid
1501 :version "24.1"
1502 :type 'string)
1504 (defgroup org-agenda-sorting nil
1505 "Options concerning sorting in the Org-mode Agenda."
1506 :tag "Org Agenda Sorting"
1507 :group 'org-agenda)
1509 (defcustom org-agenda-sorting-strategy
1510 '((agenda habit-down time-up priority-down category-keep)
1511 (todo priority-down category-keep)
1512 (tags priority-down category-keep)
1513 (search category-keep))
1514 "Sorting structure for the agenda items of a single day.
1515 This is a list of symbols which will be used in sequence to determine
1516 if an entry should be listed before another entry. The following
1517 symbols are recognized:
1519 time-up Put entries with time-of-day indications first, early first
1520 time-down Put entries with time-of-day indications first, late first
1521 timestamp-up Sort by any timestamp, early first
1522 timestamp-down Sort by any timestamp, late first
1523 scheduled-up Sort by scheduled timestamp, early first
1524 scheduled-down Sort by scheduled timestamp, late first
1525 deadline-up Sort by deadline timestamp, early first
1526 deadline-down Sort by deadline timestamp, late first
1527 ts-up Sort by active timestamp, early first
1528 ts-down Sort by active timestamp, late first
1529 tsia-up Sort by inactive timestamp, early first
1530 tsia-down Sort by inactive timestamp, late first
1531 category-keep Keep the default order of categories, corresponding to the
1532 sequence in `org-agenda-files'.
1533 category-up Sort alphabetically by category, A-Z.
1534 category-down Sort alphabetically by category, Z-A.
1535 tag-up Sort alphabetically by last tag, A-Z.
1536 tag-down Sort alphabetically by last tag, Z-A.
1537 priority-up Sort numerically by priority, high priority last.
1538 priority-down Sort numerically by priority, high priority first.
1539 todo-state-up Sort by todo state, tasks that are done last.
1540 todo-state-down Sort by todo state, tasks that are done first.
1541 effort-up Sort numerically by estimated effort, high effort last.
1542 effort-down Sort numerically by estimated effort, high effort first.
1543 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1544 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1545 habit-up Put entries that are habits first
1546 habit-down Put entries that are habits last
1547 alpha-up Sort headlines alphabetically
1548 alpha-down Sort headlines alphabetically, reversed
1550 The different possibilities will be tried in sequence, and testing stops
1551 if one comparison returns a \"not-equal\". For example, the default
1552 '(time-up category-keep priority-down)
1553 means: Pull out all entries having a specified time of day and sort them,
1554 in order to make a time schedule for the current day the first thing in the
1555 agenda listing for the day. Of the entries without a time indication, keep
1556 the grouped in categories, don't sort the categories, but keep them in
1557 the sequence given in `org-agenda-files'. Within each category sort by
1558 priority.
1560 Leaving out `category-keep' would mean that items will be sorted across
1561 categories by priority.
1563 Instead of a single list, this can also be a set of list for specific
1564 contents, with a context symbol in the car of the list, any of
1565 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1567 Custom commands can bind this variable in the options section."
1568 :group 'org-agenda-sorting
1569 :type `(choice
1570 (repeat :tag "General" ,org-sorting-choice)
1571 (list :tag "Individually"
1572 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1573 (repeat ,org-sorting-choice))
1574 (cons (const :tag "Strategy for TODO lists" todo)
1575 (repeat ,org-sorting-choice))
1576 (cons (const :tag "Strategy for Tags matches" tags)
1577 (repeat ,org-sorting-choice))
1578 (cons (const :tag "Strategy for search matches" search)
1579 (repeat ,org-sorting-choice)))))
1581 (defcustom org-agenda-cmp-user-defined nil
1582 "A function to define the comparison `user-defined'.
1583 This function must receive two arguments, agenda entry a and b.
1584 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1585 the user comparison, return nil.
1586 When this is defined, you can make `user-defined-up' and `user-defined-down'
1587 part of an agenda sorting strategy."
1588 :group 'org-agenda-sorting
1589 :type 'symbol)
1591 (defcustom org-sort-agenda-notime-is-late t
1592 "Non-nil means items without time are considered late.
1593 This is only relevant for sorting. When t, items which have no explicit
1594 time like 15:30 will be considered as 99:01, i.e. later than any items which
1595 do have a time. When nil, the default time is before 0:00. You can use this
1596 option to decide if the schedule for today should come before or after timeless
1597 agenda entries."
1598 :group 'org-agenda-sorting
1599 :type 'boolean)
1601 (defcustom org-sort-agenda-noeffort-is-high t
1602 "Non-nil means items without effort estimate are sorted as high effort.
1603 This also applies when filtering an agenda view with respect to the
1604 < or > effort operator. Then, tasks with no effort defined will be treated
1605 as tasks with high effort.
1606 When nil, such items are sorted as 0 minutes effort."
1607 :group 'org-agenda-sorting
1608 :type 'boolean)
1610 (defgroup org-agenda-line-format nil
1611 "Options concerning the entry prefix in the Org-mode agenda display."
1612 :tag "Org Agenda Line Format"
1613 :group 'org-agenda)
1615 (defcustom org-agenda-prefix-format
1616 '((agenda . " %i %-12:c%?-12t% s")
1617 (timeline . " % s")
1618 (todo . " %i %-12:c")
1619 (tags . " %i %-12:c")
1620 (search . " %i %-12:c"))
1621 "Format specifications for the prefix of items in the agenda views.
1622 An alist with five entries, each for the different agenda types. The
1623 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1624 The values are format strings.
1626 This format works similar to a printf format, with the following meaning:
1628 %c the category of the item, \"Diary\" for entries from the diary,
1629 or as given by the CATEGORY keyword or derived from the file name
1630 %e the effort required by the item
1631 %l the level of the item (insert X space(s) if item is of level X)
1632 %i the icon category of the item, see `org-agenda-category-icon-alist'
1633 %T the last tag of the item (ignore inherited tags, which come first)
1634 %t the HH:MM time-of-day specification if one applies to the entry
1635 %s Scheduling/Deadline information, a short string
1636 %b show breadcrumbs, i.e., the names of the higher levels
1637 %(expression) Eval EXPRESSION and replace the control string
1638 by the result
1640 All specifiers work basically like the standard `%s' of printf, but may
1641 contain two additional characters: a question mark just after the `%'
1642 and a whitespace/punctuation character just before the final letter.
1644 If the first character after `%' is a question mark, the entire field
1645 will only be included if the corresponding value applies to the current
1646 entry. This is useful for fields which should have fixed width when
1647 present, but zero width when absent. For example, \"%?-12t\" will
1648 result in a 12 character time field if a time of the day is specified,
1649 but will completely disappear in entries which do not contain a time.
1651 If there is punctuation or whitespace character just before the
1652 final format letter, this character will be appended to the field
1653 value if the value is not empty. For example, the format
1654 \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
1655 the category is empty, no additional colon is inserted.
1657 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1658 which means:
1660 - Indent the line with two space characters
1661 - Give the category a 12 chars wide field, padded with whitespace on
1662 the right (because of `-'). Append a colon if there is a category
1663 (because of `:').
1664 - If there is a time-of-day, put it into a 12 chars wide field. If no
1665 time, don't put in an empty field, just skip it (because of '?').
1666 - Finally, put the scheduling information.
1668 See also the variables `org-agenda-remove-times-when-in-prefix' and
1669 `org-agenda-remove-tags'.
1671 Custom commands can set this variable in the options section."
1672 :type '(choice
1673 (string :tag "General format")
1674 (list :greedy t :tag "View dependent"
1675 (cons (const agenda) (string :tag "Format"))
1676 (cons (const timeline) (string :tag "Format"))
1677 (cons (const todo) (string :tag "Format"))
1678 (cons (const tags) (string :tag "Format"))
1679 (cons (const search) (string :tag "Format"))))
1680 :group 'org-agenda-line-format)
1682 (defvar org-prefix-format-compiled nil
1683 "The compiled prefix format and associated variables.
1684 This is a list where first element is a list of variable bindings, and second
1685 element is the compiled format expression. See the variable
1686 `org-agenda-prefix-format'.")
1688 (defcustom org-agenda-todo-keyword-format "%-1s"
1689 "Format for the TODO keyword in agenda lines.
1690 Set this to something like \"%-12s\" if you want all TODO keywords
1691 to occupy a fixed space in the agenda display."
1692 :group 'org-agenda-line-format
1693 :type 'string)
1695 (defcustom org-agenda-diary-sexp-prefix nil
1696 "A regexp that matches part of a diary sexp entry
1697 which should be treated as scheduling/deadline information in
1698 `org-agenda'.
1700 For example, you can use this to extract the `diary-remind-message' from
1701 `diary-remind' entries."
1702 :group 'org-agenda-line-format
1703 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1705 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1706 "Text preceding timerange entries in the agenda view.
1707 This is a list with two strings. The first applies when the range
1708 is entirely on one day. The second applies if the range spans several days.
1709 The strings may have two \"%d\" format specifiers which will be filled
1710 with the sequence number of the days, and the total number of days in the
1711 range, respectively."
1712 :group 'org-agenda-line-format
1713 :type '(list
1714 (string :tag "Deadline today ")
1715 (choice :tag "Deadline relative"
1716 (string :tag "Format string")
1717 (function))))
1719 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1720 "Text preceding scheduled items in the agenda view.
1721 This is a list with two strings. The first applies when the item is
1722 scheduled on the current day. The second applies when it has been scheduled
1723 previously, it may contain a %d indicating that this is the nth time that
1724 this item is scheduled, due to automatic rescheduling of unfinished items
1725 for the following day. So this number is one larger than the number of days
1726 that passed since this item was scheduled first."
1727 :group 'org-agenda-line-format
1728 :version "24.4"
1729 :package-version '(Org . "8.0")
1730 :type '(list
1731 (string :tag "Scheduled today ")
1732 (string :tag "Scheduled previously")))
1734 (defcustom org-agenda-inactive-leader "["
1735 "Text preceding item pulled into the agenda by inactive time stamps.
1736 These entries are added to the agenda when pressing \"[\"."
1737 :group 'org-agenda-line-format
1738 :version "24.1"
1739 :type 'string)
1741 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
1742 "Text preceding deadline items in the agenda view.
1743 This is a list with three strings. The first applies when the item has its
1744 deadline on the current day. The second applies when the deadline is in the
1745 future, the third one when it is in the past. The strings may contain %d
1746 to capture the number of days."
1747 :group 'org-agenda-line-format
1748 :version "24.4"
1749 :package-version '(Org . "8.0")
1750 :type '(list
1751 (string :tag "Deadline today ")
1752 (string :tag "Deadline in the future ")
1753 (string :tag "Deadline in the past ")))
1755 (defcustom org-agenda-remove-times-when-in-prefix t
1756 "Non-nil means remove duplicate time specifications in agenda items.
1757 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1758 time-of-day specification in a headline or diary entry is extracted and
1759 placed into the prefix. If this option is non-nil, the original specification
1760 \(a timestamp or -range, or just a plain time(range) specification like
1761 11:30-4pm) will be removed for agenda display. This makes the agenda less
1762 cluttered.
1763 The option can be t or nil. It may also be the symbol `beg', indicating
1764 that the time should only be removed when it is located at the beginning of
1765 the headline/diary entry."
1766 :group 'org-agenda-line-format
1767 :type '(choice
1768 (const :tag "Always" t)
1769 (const :tag "Never" nil)
1770 (const :tag "When at beginning of entry" beg)))
1772 (defcustom org-agenda-remove-timeranges-from-blocks nil
1773 "Non-nil means remove time ranges specifications in agenda
1774 items that span on several days."
1775 :group 'org-agenda-line-format
1776 :version "24.1"
1777 :type 'boolean)
1779 (defcustom org-agenda-default-appointment-duration nil
1780 "Default duration for appointments that only have a starting time.
1781 When nil, no duration is specified in such cases.
1782 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1783 :group 'org-agenda-line-format
1784 :type '(choice
1785 (integer :tag "Minutes")
1786 (const :tag "No default duration")))
1788 (defcustom org-agenda-show-inherited-tags t
1789 "Non-nil means show inherited tags in each agenda line.
1791 When this option is set to 'always, it take precedences over
1792 `org-agenda-use-tag-inheritance' and inherited tags are shown
1793 in every agenda.
1795 When this option is set to t (the default), inherited tags are
1796 shown when they are available, i.e. when the value of
1797 `org-agenda-use-tag-inheritance' has been taken into account.
1799 This can be set to a list of agenda types in which the agenda
1800 must display the inherited tags. Available types are 'todo,
1801 'agenda, 'search and 'timeline.
1803 When set to nil, never show inherited tags in agenda lines."
1804 :group 'org-agenda-line-format
1805 :group 'org-agenda
1806 :version "24.3"
1807 :type '(choice
1808 (const :tag "Show inherited tags when available" t)
1809 (const :tag "Always show inherited tags" always)
1810 (repeat :tag "Show inherited tags only in selected agenda types"
1811 (symbol :tag "Agenda type"))))
1813 (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
1814 "List of agenda view types where to use tag inheritance.
1816 In tags/tags-todo/tags-tree agenda views, tag inheritance is
1817 controlled by `org-use-tag-inheritance'. In other agenda types,
1818 `org-use-tag-inheritance' is not used for the selection of the
1819 agenda entries. Still, you may want the agenda to be aware of
1820 the inherited tags anyway, e.g. for later tag filtering.
1822 Allowed value are 'todo, 'search, 'timeline and 'agenda.
1824 This variable has no effect if `org-agenda-show-inherited-tags'
1825 is set to 'always. In that case, the agenda is aware of those
1826 tags.
1828 The default value sets tags in every agenda type. Setting this
1829 option to nil will speed up non-tags agenda view a lot."
1830 :group 'org-agenda
1831 :version "24.3"
1832 :type '(choice
1833 (const :tag "Use tag inheritance in all agenda types" t)
1834 (repeat :tag "Use tag inheritance in selected agenda types"
1835 (symbol :tag "Agenda type"))))
1837 (defcustom org-agenda-hide-tags-regexp nil
1838 "Regular expression used to filter away specific tags in agenda views.
1839 This means that these tags will be present, but not be shown in the agenda
1840 line. Secondary filtering will still work on the hidden tags.
1841 Nil means don't hide any tags."
1842 :group 'org-agenda-line-format
1843 :type '(choice
1844 (const :tag "Hide none" nil)
1845 (string :tag "Regexp ")))
1847 (defcustom org-agenda-remove-tags nil
1848 "Non-nil means remove the tags from the headline copy in the agenda.
1849 When this is the symbol `prefix', only remove tags when
1850 `org-agenda-prefix-format' contains a `%T' specifier."
1851 :group 'org-agenda-line-format
1852 :type '(choice
1853 (const :tag "Always" t)
1854 (const :tag "Never" nil)
1855 (const :tag "When prefix format contains %T" prefix)))
1857 (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
1858 'org-agenda-remove-tags)
1860 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1861 "Shift tags in agenda items to this column.
1862 If this number is positive, it specifies the column. If it is negative,
1863 it means that the tags should be flushright to that column. For example,
1864 -80 works well for a normal 80 character screen."
1865 :group 'org-agenda-line-format
1866 :type 'integer)
1868 (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
1870 (defcustom org-agenda-fontify-priorities 'cookies
1871 "Non-nil means highlight low and high priorities in agenda.
1872 When t, the highest priority entries are bold, lowest priority italic.
1873 However, settings in `org-priority-faces' will overrule these faces.
1874 When this variable is the symbol `cookies', only fontify the
1875 cookies, not the entire task.
1876 This may also be an association list of priority faces, whose
1877 keys are the character values of `org-highest-priority',
1878 `org-default-priority', and `org-lowest-priority' (the default values
1879 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1880 color as a string, or a list like `(:background \"Red\")'.
1881 If it is a color, the variable `org-faces-easy-properties'
1882 determines if it is a foreground or a background color."
1883 :group 'org-agenda-line-format
1884 :type '(choice
1885 (const :tag "Never" nil)
1886 (const :tag "Defaults" t)
1887 (const :tag "Cookies only" cookies)
1888 (repeat :tag "Specify"
1889 (list (character :tag "Priority" :value ?A)
1890 (choice :tag "Face "
1891 (string :tag "Color")
1892 (sexp :tag "Face"))))))
1894 (defcustom org-agenda-day-face-function nil
1895 "Function called to determine what face should be used to display a day.
1896 The only argument passed to that function is the day. It should
1897 returns a face, or nil if does not want to specify a face and let
1898 the normal rules apply."
1899 :group 'org-agenda-line-format
1900 :version "24.1"
1901 :type '(choice (const nil) (function)))
1903 (defcustom org-agenda-category-icon-alist nil
1904 "Alist of category icon to be displayed in agenda views.
1906 Each entry should have the following format:
1908 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1910 Where CATEGORY-REGEXP is a regexp matching the categories where
1911 the icon should be displayed.
1912 FILE-OR-DATA either a file path or a string containing image data.
1914 The other fields can be omitted safely if not needed:
1915 TYPE indicates the image type.
1916 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1917 image data.
1918 PROPS are additional image attributes to assign to the image,
1919 like, e.g. `:ascent center'.
1921 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1923 If you want to set the display properties yourself, just put a
1924 list as second element:
1926 (CATEGORY-REGEXP (MY PROPERTY LIST))
1928 For example, to display a 16px horizontal space for Emacs
1929 category, you can use:
1931 (\"Emacs\" '(space . (:width (16))))"
1932 :group 'org-agenda-line-format
1933 :version "24.1"
1934 :type '(alist :key-type (string :tag "Regexp matching category")
1935 :value-type (choice (list :tag "Icon"
1936 (string :tag "File or data")
1937 (symbol :tag "Type")
1938 (boolean :tag "Data?")
1939 (repeat :tag "Extra image properties" :inline t symbol))
1940 (list :tag "Display properties" sexp))))
1942 (defgroup org-agenda-column-view nil
1943 "Options concerning column view in the agenda."
1944 :tag "Org Agenda Column View"
1945 :group 'org-agenda)
1947 (defcustom org-agenda-columns-show-summaries t
1948 "Non-nil means show summaries for columns displayed in the agenda view."
1949 :group 'org-agenda-column-view
1950 :type 'boolean)
1952 (defcustom org-agenda-columns-compute-summary-properties t
1953 "Non-nil means recompute all summary properties before column view.
1954 When column view in the agenda is listing properties that have a summary
1955 operator, it can go to all relevant buffers and recompute the summaries
1956 there. This can mean overhead for the agenda column view, but is necessary
1957 to have thing up to date.
1958 As a special case, a CLOCKSUM property also makes sure that the clock
1959 computations are current."
1960 :group 'org-agenda-column-view
1961 :type 'boolean)
1963 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1964 "Non-nil means the duration of an appointment will add to day effort.
1965 The property to which appointment durations will be added is the one given
1966 in the option `org-effort-property'. If an appointment does not have
1967 an end time, `org-agenda-default-appointment-duration' will be used. If that
1968 is not set, an appointment without end time will not contribute to the time
1969 estimate."
1970 :group 'org-agenda-column-view
1971 :type 'boolean)
1973 (defcustom org-agenda-auto-exclude-function nil
1974 "A function called with a tag to decide if it is filtered on '/ RET'.
1975 The sole argument to the function, which is called once for each
1976 possible tag, is a string giving the name of the tag. The
1977 function should return either nil if the tag should be included
1978 as normal, or \"-<TAG>\" to exclude the tag.
1979 Note that for the purpose of tag filtering, only the lower-case version of
1980 all tags will be considered, so that this function will only ever see
1981 the lower-case version of all tags."
1982 :group 'org-agenda
1983 :type '(choice (const nil) (function)))
1985 (defcustom org-agenda-bulk-custom-functions nil
1986 "Alist of characters and custom functions for bulk actions.
1987 For example, this value makes those two functions available:
1989 '((?R set-category)
1990 (?C bulk-cut))
1992 With selected entries in an agenda buffer, `B R' will call
1993 the custom function `set-category' on the selected entries.
1994 Note that functions in this alist don't need to be quoted."
1995 :type 'alist
1996 :version "24.1"
1997 :group 'org-agenda)
1999 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
2000 "Execute BODY with point at location given by `org-hd-marker' property.
2001 If STRING is non-nil, the text property will be fetched from position 0
2002 in that string. If STRING is nil, it will be fetched from the beginning
2003 of the current line."
2004 (org-with-gensyms (marker)
2005 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
2006 'org-hd-marker ,string)))
2007 (with-current-buffer (marker-buffer ,marker)
2008 (save-excursion
2009 (goto-char ,marker)
2010 ,@body)))))
2011 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
2013 (defun org-add-agenda-custom-command (entry)
2014 "Replace or add a command in `org-agenda-custom-commands'.
2015 This is mostly for hacking and trying a new command - once the command
2016 works you probably want to add it to `org-agenda-custom-commands' for good."
2017 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
2018 (if ass
2019 (setcdr ass (cdr entry))
2020 (push entry org-agenda-custom-commands))))
2022 ;;; Define the org-agenda-mode
2024 (defvar org-agenda-mode-map (make-sparse-keymap)
2025 "Keymap for `org-agenda-mode'.")
2026 (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
2028 (defvar org-agenda-menu) ; defined later in this file.
2029 (defvar org-agenda-restrict nil) ; defined later in this file.
2030 (defvar org-agenda-follow-mode nil)
2031 (defvar org-agenda-entry-text-mode nil)
2032 (defvar org-agenda-clockreport-mode nil)
2033 (defvar org-agenda-show-log nil)
2034 (defvar org-agenda-redo-command nil)
2035 (defvar org-agenda-query-string nil)
2036 (defvar org-agenda-mode-hook nil
2037 "Hook run after `org-agenda-mode' is turned on.
2038 The buffer is still writable when this hook is called.")
2039 (defvar org-agenda-type nil)
2040 (defvar org-agenda-force-single-file nil)
2041 (defvar org-agenda-bulk-marked-entries nil
2042 "List of markers that refer to marked entries in the agenda.")
2044 ;;; Multiple agenda buffers support
2046 (defcustom org-agenda-sticky nil
2047 "Non-nil means agenda q key will bury agenda buffers.
2048 Agenda commands will then show existing buffer instead of generating new ones.
2049 When nil, `q' will kill the single agenda buffer."
2050 :group 'org-agenda
2051 :version "24.3"
2052 :type 'boolean)
2055 ;;;###autoload
2056 (defun org-toggle-sticky-agenda (&optional arg)
2057 "Toggle `org-agenda-sticky'."
2058 (interactive "P")
2059 (let ((new-value (if arg
2060 (> (prefix-numeric-value arg) 0)
2061 (not org-agenda-sticky))))
2062 (if (equal new-value org-agenda-sticky)
2063 (and (org-called-interactively-p 'interactive)
2064 (message "Sticky agenda was already %s"
2065 (if org-agenda-sticky "enabled" "disabled")))
2066 (setq org-agenda-sticky new-value)
2067 (org-agenda-kill-all-agenda-buffers)
2068 (and (org-called-interactively-p 'interactive)
2069 (message "Sticky agenda was %s"
2070 (if org-agenda-sticky "enabled" "disabled"))))))
2072 (defvar org-agenda-buffer nil
2073 "Agenda buffer currently being generated.")
2075 (defvar org-agenda-last-prefix-arg nil)
2076 (defvar org-agenda-this-buffer-name nil)
2077 (defvar org-agenda-doing-sticky-redo nil)
2078 (defvar org-agenda-this-buffer-is-sticky nil)
2080 (defconst org-agenda-local-vars
2081 '(org-agenda-this-buffer-name
2082 org-agenda-undo-list
2083 org-agenda-pending-undo-list
2084 org-agenda-follow-mode
2085 org-agenda-entry-text-mode
2086 org-agenda-clockreport-mode
2087 org-agenda-show-log
2088 org-agenda-redo-command
2089 org-agenda-query-string
2090 org-agenda-type
2091 org-agenda-bulk-marked-entries
2092 org-agenda-undo-has-started-in
2093 org-agenda-info
2094 org-agenda-pre-window-conf
2095 org-agenda-columns-active
2096 org-agenda-tag-filter
2097 org-agenda-category-filter
2098 org-agenda-top-headline-filter
2099 org-agenda-regexp-filter
2100 org-agenda-markers
2101 org-agenda-last-search-view-search-was-boolean
2102 org-agenda-filtered-by-category
2103 org-agenda-filter-form
2104 org-agenda-cycle-counter
2105 org-agenda-last-prefix-arg)
2106 "Variables that must be local in agenda buffers to allow multiple buffers.")
2108 (defun org-agenda-mode ()
2109 "Mode for time-sorted view on action items in Org-mode files.
2111 The following commands are available:
2113 \\{org-agenda-mode-map}"
2114 (interactive)
2115 (cond (org-agenda-doing-sticky-redo
2116 ;; Refreshing sticky agenda-buffer
2118 ;; Preserve the value of `org-agenda-local-vars' variables,
2119 ;; while letting `kill-all-local-variables' kill the rest
2120 (let ((save (buffer-local-variables)))
2121 (kill-all-local-variables)
2122 (mapc 'make-local-variable org-agenda-local-vars)
2123 (dolist (elem save)
2124 (let ((var (car elem))
2125 (val (cdr elem)))
2126 (when (and val
2127 (member var org-agenda-local-vars))
2128 (set var val)))))
2129 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2130 (org-agenda-sticky
2131 ;; Creating a sticky Agenda buffer for the first time
2132 (kill-all-local-variables)
2133 (mapc 'make-local-variable org-agenda-local-vars)
2134 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2136 ;; Creating a non-sticky agenda buffer
2137 (kill-all-local-variables)
2138 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
2139 (setq org-agenda-undo-list nil
2140 org-agenda-pending-undo-list nil
2141 org-agenda-bulk-marked-entries nil)
2142 (setq major-mode 'org-agenda-mode)
2143 ;; Keep global-font-lock-mode from turning on font-lock-mode
2144 (org-set-local 'font-lock-global-modes (list 'not major-mode))
2145 (setq mode-name "Org-Agenda")
2146 (setq indent-tabs-mode nil)
2147 (use-local-map org-agenda-mode-map)
2148 (easy-menu-add org-agenda-menu)
2149 (if org-startup-truncated (setq truncate-lines t))
2150 (org-set-local 'line-move-visual nil)
2151 (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
2152 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
2153 ;; Make sure properties are removed when copying text
2154 (org-add-hook 'filter-buffer-substring-functions
2155 (lambda (fun start end delete)
2156 (substring-no-properties (funcall fun start end delete)))
2157 nil t)
2158 (unless org-agenda-keep-modes
2159 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
2160 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
2161 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
2162 org-agenda-show-log org-agenda-start-with-log-mode))
2163 (add-to-invisibility-spec '(org-filtered))
2164 (add-to-invisibility-spec '(org-link))
2165 (easy-menu-change
2166 '("Agenda") "Agenda Files"
2167 (append
2168 (list
2169 (vector
2170 (if (get 'org-agenda-files 'org-restrict)
2171 "Restricted to single file"
2172 "Edit File List")
2173 '(org-edit-agenda-file-list)
2174 (not (get 'org-agenda-files 'org-restrict)))
2175 "--")
2176 (mapcar 'org-file-menu-entry (org-agenda-files))))
2177 (org-agenda-set-mode-name)
2178 (apply
2179 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
2180 (list 'org-agenda-mode-hook)))
2182 (substitute-key-definition 'undo 'org-agenda-undo
2183 org-agenda-mode-map global-map)
2184 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
2185 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
2186 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
2187 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
2188 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2189 (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
2190 (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
2191 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2192 (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
2193 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2194 (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
2195 (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
2196 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2197 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2198 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2199 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2200 (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
2201 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2202 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2203 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2204 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2205 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2206 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2207 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2208 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2209 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2210 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2211 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2212 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2213 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2214 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2215 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2216 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2217 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2218 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2219 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2220 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2221 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2222 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2223 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2224 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2225 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2226 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2227 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2228 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2229 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2230 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2231 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2232 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2233 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2235 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2236 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2237 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2238 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2239 (while l (org-defkey org-agenda-mode-map
2240 (int-to-string (pop l)) 'digit-argument)))
2242 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2243 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2244 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2245 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2246 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2247 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2248 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2249 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2250 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2251 (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
2252 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2253 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2254 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2255 'org-clock-modify-effort-estimate)
2256 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2257 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2258 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2259 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2260 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2261 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2262 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2263 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2264 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2265 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2266 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2267 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2268 (substitute-key-definition 'next-line 'org-agenda-next-line
2269 org-agenda-mode-map global-map)
2270 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2271 org-agenda-mode-map global-map)
2272 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2273 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2274 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2275 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
2276 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2277 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2278 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2279 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2280 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2281 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2282 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2283 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2284 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2285 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2286 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2287 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2288 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2289 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2290 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2291 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2292 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2293 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2294 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2295 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2296 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2297 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2298 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2299 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2300 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2301 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2303 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2304 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2305 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2306 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2307 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2308 (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
2309 (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
2310 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
2311 (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
2312 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2313 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
2314 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2315 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2316 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2317 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2319 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2320 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2322 (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
2323 (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
2325 (when org-agenda-mouse-1-follows-link
2326 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2327 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2328 '("Agenda"
2329 ("Agenda Files")
2330 "--"
2331 ("Agenda Dates"
2332 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
2333 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2334 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2335 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2336 "--"
2337 ("View"
2338 ["Day View" org-agenda-day-view
2339 :active (org-agenda-check-type nil 'agenda)
2340 :style radio :selected (eq org-agenda-current-span 'day)
2341 :keys "v d (or just d)"]
2342 ["Week View" org-agenda-week-view
2343 :active (org-agenda-check-type nil 'agenda)
2344 :style radio :selected (eq org-agenda-current-span 'week)
2345 :keys "v w"]
2346 ["Fortnight View" org-agenda-fortnight-view
2347 :active (org-agenda-check-type nil 'agenda)
2348 :style radio :selected (eq org-agenda-current-span 'fortnight)
2349 :keys "v f"]
2350 ["Month View" org-agenda-month-view
2351 :active (org-agenda-check-type nil 'agenda)
2352 :style radio :selected (eq org-agenda-current-span 'month)
2353 :keys "v m"]
2354 ["Year View" org-agenda-year-view
2355 :active (org-agenda-check-type nil 'agenda)
2356 :style radio :selected (eq org-agenda-current-span 'year)
2357 :keys "v y"]
2358 "--"
2359 ["Include Diary" org-agenda-toggle-diary
2360 :style toggle :selected org-agenda-include-diary
2361 :active (org-agenda-check-type nil 'agenda)]
2362 ["Include Deadlines" org-agenda-toggle-deadlines
2363 :style toggle :selected org-agenda-include-deadlines
2364 :active (org-agenda-check-type nil 'agenda)]
2365 ["Use Time Grid" org-agenda-toggle-time-grid
2366 :style toggle :selected org-agenda-use-time-grid
2367 :active (org-agenda-check-type nil 'agenda)]
2368 "--"
2369 ["Show clock report" org-agenda-clockreport-mode
2370 :style toggle :selected org-agenda-clockreport-mode
2371 :active (org-agenda-check-type nil 'agenda)]
2372 ["Show some entry text" org-agenda-entry-text-mode
2373 :style toggle :selected org-agenda-entry-text-mode
2374 :active t]
2375 "--"
2376 ["Show Logbook entries" org-agenda-log-mode
2377 :style toggle :selected org-agenda-show-log
2378 :active (org-agenda-check-type nil 'agenda 'timeline)
2379 :keys "v l (or just l)"]
2380 ["Include archived trees" org-agenda-archives-mode
2381 :style toggle :selected org-agenda-archives-mode :active t
2382 :keys "v a"]
2383 ["Include archive files" (org-agenda-archives-mode t)
2384 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2385 :keys "v A"]
2386 "--"
2387 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2388 ["Write view to file" org-agenda-write t]
2389 ["Rebuild buffer" org-agenda-redo t]
2390 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2391 "--"
2392 ["Show original entry" org-agenda-show t]
2393 ["Go To (other window)" org-agenda-goto t]
2394 ["Go To (this window)" org-agenda-switch-to t]
2395 ["Capture with cursor date" org-agenda-capture t]
2396 ["Follow Mode" org-agenda-follow-mode
2397 :style toggle :selected org-agenda-follow-mode :active t]
2398 ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2399 "--"
2400 ("TODO"
2401 ["Cycle TODO" org-agenda-todo t]
2402 ["Next TODO set" org-agenda-todo-nextset t]
2403 ["Previous TODO set" org-agenda-todo-previousset t]
2404 ["Add note" org-agenda-add-note t])
2405 ("Archive/Refile/Delete"
2406 ["Archive default" org-agenda-archive-default t]
2407 ["Archive default" org-agenda-archive-default-with-confirmation t]
2408 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2409 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2410 ["Archive subtree" org-agenda-archive t]
2411 "--"
2412 ["Refile" org-agenda-refile t]
2413 "--"
2414 ["Delete subtree" org-agenda-kill t])
2415 ("Bulk action"
2416 ["Mark entry" org-agenda-bulk-mark t]
2417 ["Mark all" org-agenda-bulk-mark-all t]
2418 ["Unmark entry" org-agenda-bulk-unmark t]
2419 ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
2420 ["Toggle mark" org-agenda-bulk-toggle t]
2421 ["Toggle all" org-agenda-bulk-toggle-all t]
2422 ["Mark regexp" org-agenda-bulk-mark-regexp t])
2423 ["Act on all marked" org-agenda-bulk-action t]
2424 "--"
2425 ("Tags and Properties"
2426 ["Show all Tags" org-agenda-show-tags t]
2427 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2428 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2429 "--"
2430 ["Column View" org-columns t])
2431 ("Deadline/Schedule"
2432 ["Schedule" org-agenda-schedule t]
2433 ["Set Deadline" org-agenda-deadline t]
2434 "--"
2435 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2436 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2437 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2438 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2439 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2440 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2441 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2442 ("Clock and Effort"
2443 ["Clock in" org-agenda-clock-in t]
2444 ["Clock out" org-agenda-clock-out t]
2445 ["Clock cancel" org-agenda-clock-cancel t]
2446 ["Goto running clock" org-clock-goto t]
2447 "--"
2448 ["Set Effort" org-agenda-set-effort t]
2449 ["Change clocked effort" org-clock-modify-effort-estimate
2450 (org-clock-is-active)])
2451 ("Priority"
2452 ["Set Priority" org-agenda-priority t]
2453 ["Increase Priority" org-agenda-priority-up t]
2454 ["Decrease Priority" org-agenda-priority-down t]
2455 ["Show Priority" org-show-priority t])
2456 ("Calendar/Diary"
2457 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2458 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2459 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2460 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2461 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2462 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2463 "--"
2464 ["Create iCalendar File" org-icalendar-combine-agenda-files t])
2465 "--"
2466 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2467 "--"
2468 ("MobileOrg"
2469 ["Push Files and Views" org-mobile-push t]
2470 ["Get Captured and Flagged" org-mobile-pull t]
2471 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2472 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2473 "--"
2474 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2475 "--"
2476 ["Quit" org-agenda-quit t]
2477 ["Exit and Release Buffers" org-agenda-exit t]
2480 ;;; Agenda undo
2482 (defvar org-agenda-allow-remote-undo t
2483 "Non-nil means allow remote undo from the agenda buffer.")
2484 (defvar org-agenda-undo-has-started-in nil
2485 "Buffers that have already seen `undo-start' in the current undo sequence.")
2487 (defun org-agenda-undo ()
2488 "Undo a remote editing step in the agenda.
2489 This undoes changes both in the agenda buffer and in the remote buffer
2490 that have been changed along."
2491 (interactive)
2492 (or org-agenda-allow-remote-undo
2493 (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2494 (if (not (eq this-command last-command))
2495 (setq org-agenda-undo-has-started-in nil
2496 org-agenda-pending-undo-list org-agenda-undo-list))
2497 (if (not org-agenda-pending-undo-list)
2498 (user-error "No further undo information"))
2499 (let* ((entry (pop org-agenda-pending-undo-list))
2500 buf line cmd rembuf)
2501 (setq cmd (pop entry) line (pop entry))
2502 (setq rembuf (nth 2 entry))
2503 (org-with-remote-undo rembuf
2504 (while (bufferp (setq buf (pop entry)))
2505 (if (pop entry)
2506 (with-current-buffer buf
2507 (let ((last-undo-buffer buf)
2508 (inhibit-read-only t))
2509 (unless (memq buf org-agenda-undo-has-started-in)
2510 (push buf org-agenda-undo-has-started-in)
2511 (make-local-variable 'pending-undo-list)
2512 (undo-start))
2513 (while (and pending-undo-list
2514 (listp pending-undo-list)
2515 (not (car pending-undo-list)))
2516 (pop pending-undo-list))
2517 (undo-more 1))))))
2518 (org-goto-line line)
2519 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2521 (defun org-verify-change-for-undo (l1 l2)
2522 "Verify that a real change occurred between the undo lists L1 and L2."
2523 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2524 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2525 (not (eq l1 l2)))
2527 ;;; Agenda dispatch
2529 (defvar org-agenda-restrict-begin (make-marker))
2530 (defvar org-agenda-restrict-end (make-marker))
2531 (defvar org-agenda-last-dispatch-buffer nil)
2532 (defvar org-agenda-overriding-restriction nil)
2534 (defcustom org-agenda-custom-commands-contexts nil
2535 "Alist of custom agenda keys and contextual rules.
2537 For example, if you have a custom agenda command \"p\" and you
2538 want this command to be accessible only from plain text files,
2539 use this:
2541 '((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
2543 Here are the available contexts definitions:
2545 in-file: command displayed only in matching files
2546 in-mode: command displayed only in matching modes
2547 not-in-file: command not displayed in matching files
2548 not-in-mode: command not displayed in matching modes
2549 in-buffer: command displayed only in matching buffers
2550 not-in-buffer: command not displayed in matching buffers
2551 [function]: a custom function taking no argument
2553 If you define several checks, the agenda command will be
2554 accessible if there is at least one valid check.
2556 You can also bind a key to another agenda custom command
2557 depending on contextual rules.
2559 '((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
2561 Here it means: in .txt files, use \"p\" as the key for the
2562 agenda command otherwise associated with \"q\". (The command
2563 originally associated with \"q\" is not displayed to avoid
2564 duplicates.)"
2565 :version "24.3"
2566 :group 'org-agenda-custom-commands
2567 :type '(repeat (list :tag "Rule"
2568 (string :tag " Agenda key")
2569 (string :tag "Replace by command")
2570 (repeat :tag "Available when"
2571 (choice
2572 (cons :tag "Condition"
2573 (choice
2574 (const :tag "In file" in-file)
2575 (const :tag "Not in file" not-in-file)
2576 (const :tag "In buffer" in-buffer)
2577 (const :tag "Not in buffer" not-in-buffer)
2578 (const :tag "In mode" in-mode)
2579 (const :tag "Not in mode" not-in-mode))
2580 (regexp))
2581 (function :tag "Custom function"))))))
2583 (defcustom org-agenda-max-entries nil
2584 "Maximum number of entries to display in an agenda.
2585 This can be nil (no limit) or an integer or an alist of agenda
2586 types with an associated number of entries to display in this
2587 type."
2588 :version "24.4"
2589 :package-version '(Org . "8.0")
2590 :group 'org-agenda-custom-commands
2591 :type '(choice (symbol :tag "No limit" nil)
2592 (integer :tag "Max number of entries")
2593 (repeat
2594 (cons (choice :tag "Agenda type"
2595 (const agenda)
2596 (const todo)
2597 (const tags)
2598 (const search)
2599 (const timeline))
2600 (integer :tag "Max number of entries")))))
2602 (defcustom org-agenda-max-todos nil
2603 "Maximum number of TODOs to display in an agenda.
2604 This can be nil (no limit) or an integer or an alist of agenda
2605 types with an associated number of entries to display in this
2606 type."
2607 :version "24.4"
2608 :package-version '(Org . "8.0")
2609 :group 'org-agenda-custom-commands
2610 :type '(choice (symbol :tag "No limit" nil)
2611 (integer :tag "Max number of TODOs")
2612 (repeat
2613 (cons (choice :tag "Agenda type"
2614 (const agenda)
2615 (const todo)
2616 (const tags)
2617 (const search)
2618 (const timeline))
2619 (integer :tag "Max number of TODOs")))))
2621 (defcustom org-agenda-max-tags nil
2622 "Maximum number of tagged entries to display in an agenda.
2623 This can be nil (no limit) or an integer or an alist of agenda
2624 types with an associated number of entries to display in this
2625 type."
2626 :version "24.4"
2627 :package-version '(Org . "8.0")
2628 :group 'org-agenda-custom-commands
2629 :type '(choice (symbol :tag "No limit" nil)
2630 (integer :tag "Max number of tagged entries")
2631 (repeat
2632 (cons (choice :tag "Agenda type"
2633 (const agenda)
2634 (const todo)
2635 (const tags)
2636 (const search)
2637 (const timeline))
2638 (integer :tag "Max number of tagged entries")))))
2640 (defcustom org-agenda-max-effort nil
2641 "Maximum cumulated effort duration for the agenda.
2642 This can be nil (no limit) or a number of minutes (as an integer)
2643 or an alist of agenda types with an associated number of minutes
2644 to limit entries to in this type."
2645 :version "24.4"
2646 :package-version '(Org . "8.0")
2647 :group 'org-agenda-custom-commands
2648 :type '(choice (symbol :tag "No limit" nil)
2649 (integer :tag "Max number of minutes")
2650 (repeat
2651 (cons (choice :tag "Agenda type"
2652 (const agenda)
2653 (const todo)
2654 (const tags)
2655 (const search)
2656 (const timeline))
2657 (integer :tag "Max number of minutes")))))
2659 (defvar org-keys nil)
2660 (defvar org-match nil)
2661 ;;;###autoload
2662 (defun org-agenda (&optional arg org-keys restriction)
2663 "Dispatch agenda commands to collect entries to the agenda buffer.
2664 Prompts for a command to execute. Any prefix arg will be passed
2665 on to the selected command. The default selections are:
2667 a Call `org-agenda-list' to display the agenda for current day or week.
2668 t Call `org-todo-list' to display the global todo list.
2669 T Call `org-todo-list' to display the global todo list, select only
2670 entries with a specific TODO keyword (the user gets a prompt).
2671 m Call `org-tags-view' to display headlines with tags matching
2672 a condition (the user is prompted for the condition).
2673 M Like `m', but select only TODO entries, no ordinary headlines.
2674 L Create a timeline for the current buffer.
2675 e Export views to associated files.
2676 s Search entries for keywords.
2677 S Search entries for keywords, only with TODO keywords.
2678 / Multi occur across all agenda files and also files listed
2679 in `org-agenda-text-search-extra-files'.
2680 < Restrict agenda commands to buffer, subtree, or region.
2681 Press several times to get the desired effect.
2682 > Remove a previous restriction.
2683 # List \"stuck\" projects.
2684 ! Configure what \"stuck\" means.
2685 C Configure custom agenda commands.
2687 More commands can be added by configuring the variable
2688 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2689 searches can be pre-defined in this way.
2691 If the current buffer is in Org-mode and visiting a file, you can also
2692 first press `<' once to indicate that the agenda should be temporarily
2693 \(until the next use of \\[org-agenda]) restricted to the current file.
2694 Pressing `<' twice means to restrict to the current subtree or region
2695 \(if active)."
2696 (interactive "P")
2697 (catch 'exit
2698 (let* ((prefix-descriptions nil)
2699 (org-agenda-buffer-name org-agenda-buffer-name)
2700 (org-agenda-window-setup (if (equal (buffer-name)
2701 org-agenda-buffer-name)
2702 'current-window
2703 org-agenda-window-setup))
2704 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2705 (org-agenda-custom-commands
2706 ;; normalize different versions
2707 (delq nil
2708 (mapcar
2709 (lambda (x)
2710 (cond ((stringp (cdr x))
2711 (push x prefix-descriptions)
2712 nil)
2713 ((stringp (nth 1 x)) x)
2714 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2715 (t (cons (car x) (cons "" (cdr x))))))
2716 org-agenda-custom-commands)))
2717 (org-agenda-custom-commands
2718 (org-contextualize-keys
2719 org-agenda-custom-commands org-agenda-custom-commands-contexts))
2720 (buf (current-buffer))
2721 (bfn (buffer-file-name (buffer-base-buffer)))
2722 entry key type org-match lprops ans)
2723 ;; Turn off restriction unless there is an overriding one,
2724 (unless org-agenda-overriding-restriction
2725 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2726 ;; There is a request to keep the file list in place
2727 (put 'org-agenda-files 'org-restrict nil))
2728 (setq org-agenda-restrict nil)
2729 (move-marker org-agenda-restrict-begin nil)
2730 (move-marker org-agenda-restrict-end nil))
2731 ;; Delete old local properties
2732 (put 'org-agenda-redo-command 'org-lprops nil)
2733 ;; Delete previously set last-arguments
2734 (put 'org-agenda-redo-command 'last-args nil)
2735 ;; Remember where this call originated
2736 (setq org-agenda-last-dispatch-buffer (current-buffer))
2737 (unless org-keys
2738 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2739 org-keys (car ans)
2740 restriction (cdr ans)))
2741 ;; If we have sticky agenda buffers, set a name for the buffer,
2742 ;; depending on the invoking keys. The user may still set this
2743 ;; as a command option, which will overwrite what we do here.
2744 (if org-agenda-sticky
2745 (setq org-agenda-buffer-name
2746 (format "*Org Agenda(%s)*" org-keys)))
2747 ;; Establish the restriction, if any
2748 (when (and (not org-agenda-overriding-restriction) restriction)
2749 (put 'org-agenda-files 'org-restrict (list bfn))
2750 (cond
2751 ((eq restriction 'region)
2752 (setq org-agenda-restrict (current-buffer))
2753 (move-marker org-agenda-restrict-begin (region-beginning))
2754 (move-marker org-agenda-restrict-end (region-end)))
2755 ((eq restriction 'subtree)
2756 (save-excursion
2757 (setq org-agenda-restrict (current-buffer))
2758 (org-back-to-heading t)
2759 (move-marker org-agenda-restrict-begin (point))
2760 (move-marker org-agenda-restrict-end
2761 (progn (org-end-of-subtree t)))))))
2763 ;; For example the todo list should not need it (but does...)
2764 (cond
2765 ((setq entry (assoc org-keys org-agenda-custom-commands))
2766 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2767 (progn
2768 (setq type (nth 2 entry) org-match (eval (nth 3 entry))
2769 lprops (nth 4 entry))
2770 (if org-agenda-sticky
2771 (setq org-agenda-buffer-name
2772 (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
2773 (format "*Org Agenda(%s)*" org-keys))))
2774 (put 'org-agenda-redo-command 'org-lprops lprops)
2775 (cond
2776 ((eq type 'agenda)
2777 (org-let lprops '(org-agenda-list current-prefix-arg)))
2778 ((eq type 'agenda*)
2779 (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
2780 ((eq type 'alltodo)
2781 (org-let lprops '(org-todo-list current-prefix-arg)))
2782 ((eq type 'search)
2783 (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
2784 ((eq type 'stuck)
2785 (org-let lprops '(org-agenda-list-stuck-projects
2786 current-prefix-arg)))
2787 ((eq type 'tags)
2788 (org-let lprops '(org-tags-view current-prefix-arg org-match)))
2789 ((eq type 'tags-todo)
2790 (org-let lprops '(org-tags-view '(4) org-match)))
2791 ((eq type 'todo)
2792 (org-let lprops '(org-todo-list org-match)))
2793 ((eq type 'tags-tree)
2794 (org-check-for-org-mode)
2795 (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
2796 ((eq type 'todo-tree)
2797 (org-check-for-org-mode)
2798 (org-let lprops
2799 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2800 (regexp-quote org-match) "\\>"))))
2801 ((eq type 'occur-tree)
2802 (org-check-for-org-mode)
2803 (org-let lprops '(org-occur org-match)))
2804 ((functionp type)
2805 (org-let lprops '(funcall type org-match)))
2806 ((fboundp type)
2807 (org-let lprops '(funcall type org-match)))
2808 (t (user-error "Invalid custom agenda command type %s" type))))
2809 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2810 ((equal org-keys "C")
2811 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2812 (customize-variable 'org-agenda-custom-commands))
2813 ((equal org-keys "a") (call-interactively 'org-agenda-list))
2814 ((equal org-keys "s") (call-interactively 'org-search-view))
2815 ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
2816 ((equal org-keys "t") (call-interactively 'org-todo-list))
2817 ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2818 ((equal org-keys "m") (call-interactively 'org-tags-view))
2819 ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2820 ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
2821 ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
2822 (org-add-hook
2823 'post-command-hook
2824 (lambda ()
2825 (unless (current-message)
2826 (let* ((m (org-agenda-get-any-marker))
2827 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2828 (when note
2829 (message (concat
2830 "FLAGGING-NOTE ([?] for more info): "
2831 (org-add-props
2832 (replace-regexp-in-string
2833 "\\\\n" "//"
2834 (copy-sequence note))
2835 nil 'face 'org-warning)))))))
2836 t t))
2837 ((equal org-keys "L")
2838 (unless (derived-mode-p 'org-mode)
2839 (user-error "This is not an Org-mode file"))
2840 (unless restriction
2841 (put 'org-agenda-files 'org-restrict (list bfn))
2842 (org-call-with-arg 'org-timeline arg)))
2843 ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2844 ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
2845 ((equal org-keys "!") (customize-variable 'org-stuck-projects))
2846 (t (user-error "Invalid agenda key"))))))
2848 (defvar org-agenda-multi)
2850 (defun org-agenda-append-agenda ()
2851 "Append another agenda view to the current one.
2852 This function allows interactive building of block agendas.
2853 Agenda views are separated by `org-agenda-block-separator'."
2854 (interactive)
2855 (unless (derived-mode-p 'org-agenda-mode)
2856 (user-error "Can only append from within agenda buffer"))
2857 (let ((org-agenda-multi t))
2858 (org-agenda)
2859 (widen)
2860 (org-agenda-finalize)
2861 (setq buffer-read-only t)
2862 (org-agenda-fit-window-to-buffer)))
2864 (defun org-agenda-normalize-custom-commands (cmds)
2865 "Normalize custom commands CMDS."
2866 (delq nil
2867 (mapcar
2868 (lambda (x)
2869 (cond ((stringp (cdr x)) nil)
2870 ((stringp (nth 1 x)) x)
2871 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2872 (t (cons (car x) (cons "" (cdr x))))))
2873 cmds)))
2875 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2876 "The user interface for selecting an agenda command."
2877 (catch 'exit
2878 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2879 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2880 (region-p (org-region-active-p))
2881 (custom org-agenda-custom-commands)
2882 (selstring "")
2883 restriction second-time
2884 c entry key type match prefixes rmheader header-end custom1 desc
2885 line lines left right n n1)
2886 (save-window-excursion
2887 (delete-other-windows)
2888 (org-switch-to-buffer-other-window " *Agenda Commands*")
2889 (erase-buffer)
2890 (insert (eval-when-compile
2891 (let ((header
2892 "Press key for an agenda command: < Buffer, subtree/region restriction
2893 -------------------------------- > Remove restriction
2894 a Agenda for current week or day e Export agenda views
2895 t List of all TODO entries T Entries with special TODO kwd
2896 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2897 s Search for keywords S Like s, but only TODO entries
2898 L Timeline for current buffer # List stuck projects (!=configure)
2899 / Multi-occur C Configure custom agenda commands
2900 ? Find :FLAGGED: entries * Toggle sticky agenda views
2902 (start 0))
2903 (while (string-match
2904 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2905 header start)
2906 (setq start (match-end 0))
2907 (add-text-properties (match-beginning 2) (match-end 2)
2908 '(face bold) header))
2909 header)))
2910 (setq header-end (point-marker))
2911 (while t
2912 (setq custom1 custom)
2913 (when (eq rmheader t)
2914 (org-goto-line 1)
2915 (re-search-forward ":" nil t)
2916 (delete-region (match-end 0) (point-at-eol))
2917 (forward-char 1)
2918 (looking-at "-+")
2919 (delete-region (match-end 0) (point-at-eol))
2920 (move-marker header-end (match-end 0)))
2921 (goto-char header-end)
2922 (delete-region (point) (point-max))
2924 ;; Produce all the lines that describe custom commands and prefixes
2925 (setq lines nil)
2926 (while (setq entry (pop custom1))
2927 (setq key (car entry) desc (nth 1 entry)
2928 type (nth 2 entry)
2929 match (nth 3 entry))
2930 (if (> (length key) 1)
2931 (add-to-list 'prefixes (string-to-char key))
2932 (setq line
2933 (format
2934 "%-4s%-14s"
2935 (org-add-props (copy-sequence key)
2936 '(face bold))
2937 (cond
2938 ((string-match "\\S-" desc) desc)
2939 ((eq type 'agenda) "Agenda for current week or day")
2940 ((eq type 'agenda*) "Appointments for current week or day")
2941 ((eq type 'alltodo) "List of all TODO entries")
2942 ((eq type 'search) "Word search")
2943 ((eq type 'stuck) "List of stuck projects")
2944 ((eq type 'todo) "TODO keyword")
2945 ((eq type 'tags) "Tags query")
2946 ((eq type 'tags-todo) "Tags (TODO)")
2947 ((eq type 'tags-tree) "Tags tree")
2948 ((eq type 'todo-tree) "TODO kwd tree")
2949 ((eq type 'occur-tree) "Occur tree")
2950 ((functionp type) (if (symbolp type)
2951 (symbol-name type)
2952 "Lambda expression"))
2953 (t "???"))))
2954 (if org-agenda-menu-show-matcher
2955 (setq line
2956 (concat line ": "
2957 (cond
2958 ((stringp match)
2959 (setq match (copy-sequence match))
2960 (org-add-props match nil 'face 'org-warning))
2961 ((listp type)
2962 (format "set of %d commands" (length type))))))
2963 (if (org-string-nw-p match)
2964 (add-text-properties
2965 0 (length line) (list 'help-echo
2966 (concat "Matcher: " match)) line)))
2967 (push line lines)))
2968 (setq lines (nreverse lines))
2969 (when prefixes
2970 (mapc (lambda (x)
2971 (push
2972 (format "%s %s"
2973 (org-add-props (char-to-string x)
2974 nil 'face 'bold)
2975 (or (cdr (assoc (concat selstring
2976 (char-to-string x))
2977 prefix-descriptions))
2978 "Prefix key"))
2979 lines))
2980 prefixes))
2982 ;; Check if we should display in two columns
2983 (if org-agenda-menu-two-columns
2984 (progn
2985 (setq n (length lines)
2986 n1 (+ (/ n 2) (mod n 2))
2987 right (nthcdr n1 lines)
2988 left (copy-sequence lines))
2989 (setcdr (nthcdr (1- n1) left) nil))
2990 (setq left lines right nil))
2991 (while left
2992 (insert "\n" (pop left))
2993 (when right
2994 (if (< (current-column) 40)
2995 (move-to-column 40 t)
2996 (insert " "))
2997 (insert (pop right))))
2999 ;; Make the window the right size
3000 (goto-char (point-min))
3001 (if second-time
3002 (if (not (pos-visible-in-window-p (point-max)))
3003 (org-fit-window-to-buffer))
3004 (setq second-time t)
3005 (org-fit-window-to-buffer))
3007 ;; Ask for selection
3008 (message "Press key for agenda command%s:"
3009 (if (or restrict-ok org-agenda-overriding-restriction)
3010 (if org-agenda-overriding-restriction
3011 " (restriction lock active)"
3012 (if restriction
3013 (format " (restricted to %s)" restriction)
3014 " (unrestricted)"))
3015 ""))
3016 (setq c (read-char-exclusive))
3017 (message "")
3018 (cond
3019 ((assoc (char-to-string c) custom)
3020 (setq selstring (concat selstring (char-to-string c)))
3021 (throw 'exit (cons selstring restriction)))
3022 ((memq c prefixes)
3023 (setq selstring (concat selstring (char-to-string c))
3024 prefixes nil
3025 rmheader (or rmheader t)
3026 custom (delq nil (mapcar
3027 (lambda (x)
3028 (if (or (= (length (car x)) 1)
3029 (/= (string-to-char (car x)) c))
3031 (cons (substring (car x) 1) (cdr x))))
3032 custom))))
3033 ((eq c ?*)
3034 (call-interactively 'org-toggle-sticky-agenda)
3035 (sit-for 2))
3036 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
3037 (message "Restriction is only possible in Org-mode buffers")
3038 (ding) (sit-for 1))
3039 ((eq c ?1)
3040 (org-agenda-remove-restriction-lock 'noupdate)
3041 (setq restriction 'buffer))
3042 ((eq c ?0)
3043 (org-agenda-remove-restriction-lock 'noupdate)
3044 (setq restriction (if region-p 'region 'subtree)))
3045 ((eq c ?<)
3046 (org-agenda-remove-restriction-lock 'noupdate)
3047 (setq restriction
3048 (cond
3049 ((eq restriction 'buffer)
3050 (if region-p 'region 'subtree))
3051 ((memq restriction '(subtree region))
3052 nil)
3053 (t 'buffer))))
3054 ((eq c ?>)
3055 (org-agenda-remove-restriction-lock 'noupdate)
3056 (setq restriction nil))
3057 ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
3058 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
3059 ((and (> (length selstring) 0) (eq c ?\d))
3060 (delete-window)
3061 (org-agenda-get-restriction-and-command prefix-descriptions))
3063 ((equal c ?q) (error "Abort"))
3064 (t (user-error "Invalid key %c" c))))))))
3066 (defun org-agenda-fit-window-to-buffer ()
3067 "Fit the window to the buffer size."
3068 (and (memq org-agenda-window-setup '(reorganize-frame))
3069 (fboundp 'fit-window-to-buffer)
3070 (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
3071 (= (car org-agenda-window-frame-fractions) 1.0))
3072 (delete-other-windows)
3073 (org-fit-window-to-buffer
3075 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3076 (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
3078 (defvar org-cmd nil)
3079 (defvar org-agenda-overriding-cmd nil)
3080 (defvar org-agenda-overriding-arguments nil)
3081 (defvar org-agenda-overriding-cmd-arguments nil)
3082 (defun org-agenda-run-series (name series)
3083 "Run agenda NAME as a SERIES of agenda commands."
3084 (org-let (nth 1 series) '(org-agenda-prepare name))
3085 ;; We need to reset agenda markers here, because when constructing a
3086 ;; block agenda, the individual blocks do not do that.
3087 (org-agenda-reset-markers)
3088 (let* ((org-agenda-multi t)
3089 (redo (list 'org-agenda-run-series name (list 'quote series)))
3090 (cmds (car series))
3091 (gprops (nth 1 series))
3092 match ;; The byte compiler incorrectly complains about this. Keep it!
3093 org-cmd type lprops)
3094 (while (setq org-cmd (pop cmds))
3095 (setq type (car org-cmd)
3096 match (eval (nth 1 org-cmd))
3097 lprops (nth 2 org-cmd))
3098 (let ((org-agenda-overriding-arguments
3099 (if (eq org-agenda-overriding-cmd org-cmd)
3100 (or org-agenda-overriding-arguments
3101 org-agenda-overriding-cmd-arguments))))
3102 (cond
3103 ((eq type 'agenda)
3104 (org-let2 gprops lprops
3105 '(call-interactively 'org-agenda-list)))
3106 ((eq type 'agenda*)
3107 (org-let2 gprops lprops
3108 '(funcall 'org-agenda-list nil nil t)))
3109 ((eq type 'alltodo)
3110 (org-let2 gprops lprops
3111 '(call-interactively 'org-todo-list)))
3112 ((eq type 'search)
3113 (org-let2 gprops lprops
3114 '(org-search-view current-prefix-arg match nil)))
3115 ((eq type 'stuck)
3116 (org-let2 gprops lprops
3117 '(call-interactively 'org-agenda-list-stuck-projects)))
3118 ((eq type 'tags)
3119 (org-let2 gprops lprops
3120 '(org-tags-view current-prefix-arg match)))
3121 ((eq type 'tags-todo)
3122 (org-let2 gprops lprops
3123 '(org-tags-view '(4) match)))
3124 ((eq type 'todo)
3125 (org-let2 gprops lprops
3126 '(org-todo-list match)))
3127 ((fboundp type)
3128 (org-let2 gprops lprops
3129 '(funcall type match)))
3130 (t (error "Invalid type in command series")))))
3131 (widen)
3132 (let ((inhibit-read-only t))
3133 (add-text-properties (point-min) (point-max)
3134 `(org-series t org-series-redo-cmd ,redo)))
3135 (setq org-agenda-redo-command redo)
3136 (goto-char (point-min)))
3137 (org-agenda-fit-window-to-buffer)
3138 (org-let (nth 1 series) '(org-agenda-finalize)))
3140 ;;;###autoload
3141 (defmacro org-batch-agenda (cmd-key &rest parameters)
3142 "Run an agenda command in batch mode and send the result to STDOUT.
3143 If CMD-KEY is a string of length 1, it is used as a key in
3144 `org-agenda-custom-commands' and triggers this command. If it is a
3145 longer string it is used as a tags/todo match string.
3146 Parameters are alternating variable names and values that will be bound
3147 before running the agenda command."
3148 (org-eval-in-environment (org-make-parameter-alist parameters)
3149 (let (org-agenda-sticky)
3150 (if (> (length cmd-key) 2)
3151 (org-tags-view nil cmd-key)
3152 (org-agenda nil cmd-key))))
3153 (set-buffer org-agenda-buffer-name)
3154 (princ (buffer-string)))
3156 (defvar org-agenda-info nil)
3158 ;;;###autoload
3159 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
3160 "Run an agenda command in batch mode and send the result to STDOUT.
3161 If CMD-KEY is a string of length 1, it is used as a key in
3162 `org-agenda-custom-commands' and triggers this command. If it is a
3163 longer string it is used as a tags/todo match string.
3164 Parameters are alternating variable names and values that will be bound
3165 before running the agenda command.
3167 The output gives a line for each selected agenda item. Each
3168 item is a list of comma-separated values, like this:
3170 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
3172 category The category of the item
3173 head The headline, without TODO kwd, TAGS and PRIORITY
3174 type The type of the agenda entry, can be
3175 todo selected in TODO match
3176 tagsmatch selected in tags match
3177 diary imported from diary
3178 deadline a deadline on given date
3179 scheduled scheduled on given date
3180 timestamp entry has timestamp on given date
3181 closed entry was closed on given date
3182 upcoming-deadline warning about deadline
3183 past-scheduled forwarded scheduled item
3184 block entry has date block including g. date
3185 todo The todo keyword, if any
3186 tags All tags including inherited ones, separated by colons
3187 date The relevant date, like 2007-2-14
3188 time The time, like 15:00-16:50
3189 extra Sting with extra planning info
3190 priority-l The priority letter if any was given
3191 priority-n The computed numerical priority
3192 agenda-day The day in the agenda where this is listed"
3193 (org-eval-in-environment (append '((org-agenda-remove-tags t))
3194 (org-make-parameter-alist parameters))
3195 (if (> (length cmd-key) 2)
3196 (org-tags-view nil cmd-key)
3197 (org-agenda nil cmd-key)))
3198 (set-buffer org-agenda-buffer-name)
3199 (let* ((lines (org-split-string (buffer-string) "\n"))
3200 line)
3201 (while (setq line (pop lines))
3202 (catch 'next
3203 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
3204 (setq org-agenda-info
3205 (org-fix-agenda-info (text-properties-at 0 line)))
3206 (princ
3207 (mapconcat 'org-agenda-export-csv-mapper
3208 '(org-category txt type todo tags date time extra
3209 priority-letter priority agenda-day)
3210 ","))
3211 (princ "\n")))))
3213 (defun org-fix-agenda-info (props)
3214 "Make sure all properties on an agenda item have a canonical form.
3215 This ensures the export commands can easily use it."
3216 (let (tmp re)
3217 (when (setq tmp (plist-get props 'tags))
3218 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
3219 (when (setq tmp (plist-get props 'date))
3220 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3221 (let ((calendar-date-display-form '(year "-" month "-" day)))
3222 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
3224 (setq tmp (calendar-date-string tmp)))
3225 (setq props (plist-put props 'date tmp)))
3226 (when (setq tmp (plist-get props 'day))
3227 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3228 (let ((calendar-date-display-form '(year "-" month "-" day)))
3229 (setq tmp (calendar-date-string tmp)))
3230 (setq props (plist-put props 'day tmp))
3231 (setq props (plist-put props 'agenda-day tmp)))
3232 (when (setq tmp (plist-get props 'txt))
3233 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
3234 (plist-put props 'priority-letter (match-string 1 tmp))
3235 (setq tmp (replace-match "" t t tmp)))
3236 (when (and (setq re (plist-get props 'org-todo-regexp))
3237 (setq re (concat "\\`\\.*" re " ?"))
3238 (string-match re tmp))
3239 (plist-put props 'todo (match-string 1 tmp))
3240 (setq tmp (replace-match "" t t tmp)))
3241 (plist-put props 'txt tmp)))
3242 props)
3244 (defun org-agenda-export-csv-mapper (prop)
3245 (let ((res (plist-get org-agenda-info prop)))
3246 (setq res
3247 (cond
3248 ((not res) "")
3249 ((stringp res) res)
3250 (t (prin1-to-string res))))
3251 (while (string-match "," res)
3252 (setq res (replace-match ";" t t res)))
3253 (org-trim res)))
3255 ;;;###autoload
3256 (defun org-store-agenda-views (&rest parameters)
3257 "Store agenda views."
3258 (interactive)
3259 (eval (list 'org-batch-store-agenda-views)))
3261 ;;;###autoload
3262 (defmacro org-batch-store-agenda-views (&rest parameters)
3263 "Run all custom agenda commands that have a file argument."
3264 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
3265 (pop-up-frames nil)
3266 (dir default-directory)
3267 (pars (org-make-parameter-alist parameters))
3268 cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
3269 (save-window-excursion
3270 (while cmds
3271 (setq cmd (pop cmds)
3272 thiscmdkey (car cmd)
3273 thiscmdcmd (cdr cmd)
3274 match (nth 2 thiscmdcmd)
3275 bufname (if org-agenda-sticky
3276 (or (and (stringp match)
3277 (format "*Org Agenda(%s:%s)*" thiscmdkey match))
3278 (format "*Org Agenda(%s)*" thiscmdkey))
3279 org-agenda-buffer-name)
3280 cmd-or-set (nth 2 cmd)
3281 opts (nth (if (listp cmd-or-set) 3 4) cmd)
3282 files (nth (if (listp cmd-or-set) 4 5) cmd))
3283 (if (stringp files) (setq files (list files)))
3284 (when files
3285 (org-eval-in-environment (append org-agenda-exporter-settings
3286 opts pars)
3287 (org-agenda nil thiscmdkey))
3288 (set-buffer bufname)
3289 (while files
3290 (org-eval-in-environment (append org-agenda-exporter-settings
3291 opts pars)
3292 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
3293 (and (get-buffer bufname)
3294 (kill-buffer bufname)))))))
3296 (defvar org-agenda-current-span nil
3297 "The current span used in the agenda view.") ; local variable in the agenda buffer
3298 (defun org-agenda-mark-header-line (pos)
3299 "Mark the line at POS as an agenda structure header."
3300 (save-excursion
3301 (goto-char pos)
3302 (put-text-property (point-at-bol) (point-at-eol)
3303 'org-agenda-structural-header t)
3304 (when org-agenda-title-append
3305 (put-text-property (point-at-bol) (point-at-eol)
3306 'org-agenda-title-append org-agenda-title-append))))
3308 (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
3309 (defvar org-agenda-write-buffer-name "Agenda View")
3310 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
3311 "Write the current buffer (an agenda view) as a file.
3312 Depending on the extension of the file name, plain text (.txt),
3313 HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
3314 If the extension is .ics, run icalendar export over all files used
3315 to construct the agenda and limit the export to entries listed in the
3316 agenda now.
3317 If the extension is .org, collect all subtrees corresponding to the
3318 agenda entries and add them in an .org file.
3319 With prefix argument OPEN, open the new file immediately.
3320 If NOSETTINGS is given, do not scope the settings of
3321 `org-agenda-exporter-settings' into the export commands. This is used when
3322 the settings have already been scoped and we do not wish to overrule other,
3323 higher priority settings.
3324 If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
3325 (interactive "FWrite agenda to file: \nP")
3326 (if (or (not (file-writable-p file))
3327 (and (file-exists-p file)
3328 (if (org-called-interactively-p 'any)
3329 (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
3330 (user-error "Cannot write agenda to file %s" file))
3331 (org-let (if nosettings nil org-agenda-exporter-settings)
3332 '(save-excursion
3333 (save-window-excursion
3334 (let ((bs (copy-sequence (buffer-string))) beg content)
3335 (with-temp-buffer
3336 (rename-buffer org-agenda-write-buffer-name t)
3337 (set-buffer-modified-p nil)
3338 (insert bs)
3339 (org-agenda-remove-marked-text 'org-filtered)
3340 (run-hooks 'org-agenda-before-write-hook)
3341 (cond
3342 ((org-bound-and-true-p org-mobile-creating-agendas)
3343 (org-mobile-write-agenda-for-mobile file))
3344 ((string-match "\\.org\\'" file)
3345 (let (content p m message-log-max)
3346 (goto-char (point-min))
3347 (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
3348 (goto-char p)
3349 (setq m (get-text-property (point) 'org-hd-marker))
3350 (when m
3351 (push (save-excursion
3352 (set-buffer (marker-buffer m))
3353 (goto-char m)
3354 (org-copy-subtree 1 nil t t)
3355 org-subtree-clip)
3356 content)))
3357 (find-file file)
3358 (erase-buffer)
3359 (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
3360 (write-file file)
3361 (kill-buffer (current-buffer))
3362 (message "Org file written to %s" file)))
3363 ((string-match "\\.html?\\'" file)
3364 (require 'htmlize)
3365 (set-buffer (htmlize-buffer (current-buffer)))
3366 (when org-agenda-export-html-style
3367 ;; replace <style> section with org-agenda-export-html-style
3368 (goto-char (point-min))
3369 (kill-region (- (search-forward "<style") 6)
3370 (search-forward "</style>"))
3371 (insert org-agenda-export-html-style))
3372 (write-file file)
3373 (kill-buffer (current-buffer))
3374 (message "HTML written to %s" file))
3375 ((string-match "\\.ps\\'" file)
3376 (require 'ps-print)
3377 (ps-print-buffer-with-faces file)
3378 (message "Postscript written to %s" file))
3379 ((string-match "\\.pdf\\'" file)
3380 (require 'ps-print)
3381 (ps-print-buffer-with-faces
3382 (concat (file-name-sans-extension file) ".ps"))
3383 (call-process "ps2pdf" nil nil nil
3384 (expand-file-name
3385 (concat (file-name-sans-extension file) ".ps"))
3386 (expand-file-name file))
3387 (delete-file (concat (file-name-sans-extension file) ".ps"))
3388 (message "PDF written to %s" file))
3389 ((string-match "\\.ics\\'" file)
3390 (require 'ox-icalendar)
3391 (org-icalendar-export-current-agenda (expand-file-name file)))
3393 (let ((bs (buffer-string)))
3394 (find-file file)
3395 (erase-buffer)
3396 (insert bs)
3397 (save-buffer 0)
3398 (kill-buffer (current-buffer))
3399 (message "Plain text written to %s" file))))))))
3400 (set-buffer (or agenda-bufname
3401 (and (org-called-interactively-p 'any) (buffer-name))
3402 org-agenda-buffer-name)))
3403 (when open (org-open-file file)))
3405 (defun org-agenda-remove-marked-text (property &optional value)
3406 "Delete all text marked with VALUE of PROPERTY.
3407 VALUE defaults to t."
3408 (let (beg)
3409 (setq value (or value t))
3410 (while (setq beg (text-property-any (point-min) (point-max)
3411 property value))
3412 (delete-region
3413 beg (or (next-single-property-change beg property)
3414 (point-max))))))
3416 (defun org-agenda-add-entry-text ()
3417 "Add entry text to agenda lines.
3418 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3419 entry text following headings shown in the agenda.
3420 Drawers will be excluded, also the line with scheduling/deadline info."
3421 (when (and (> org-agenda-add-entry-text-maxlines 0)
3422 (not (org-bound-and-true-p org-mobile-creating-agendas)))
3423 (let (m txt)
3424 (goto-char (point-min))
3425 (while (not (eobp))
3426 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3427 (beginning-of-line 2)
3428 (setq txt (org-agenda-get-some-entry-text
3429 m org-agenda-add-entry-text-maxlines " > "))
3430 (end-of-line 1)
3431 (if (string-match "\\S-" txt)
3432 (insert "\n" txt)
3433 (or (eobp) (forward-char 1))))))))
3435 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3436 &rest keep)
3437 "Extract entry text from MARKER, at most N-LINES lines.
3438 This will ignore drawers etc, just get the text.
3439 If INDENT is given, prefix every line with this string. If KEEP is
3440 given, it is a list of symbols, defining stuff that should not be
3441 removed from the entry content. Currently only `planning' is allowed here."
3442 (let (txt drawer-re kwd-time-re ind)
3443 (save-excursion
3444 (with-current-buffer (marker-buffer marker)
3445 (if (not (derived-mode-p 'org-mode))
3446 (setq txt "")
3447 (save-excursion
3448 (save-restriction
3449 (widen)
3450 (goto-char marker)
3451 (end-of-line 1)
3452 (setq txt (buffer-substring
3453 (min (1+ (point)) (point-max))
3454 (progn (outline-next-heading) (point)))
3455 drawer-re org-drawer-regexp
3456 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3457 ".*\n?"))
3458 (with-temp-buffer
3459 (insert txt)
3460 (when org-agenda-add-entry-text-descriptive-links
3461 (goto-char (point-min))
3462 (while (org-activate-bracket-links (point-max))
3463 (add-text-properties (match-beginning 0) (match-end 0)
3464 '(face org-link))))
3465 (goto-char (point-min))
3466 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3467 (set-text-properties (match-beginning 0) (match-end 0)
3468 nil))
3469 (goto-char (point-min))
3470 (while (re-search-forward drawer-re nil t)
3471 (delete-region
3472 (match-beginning 0)
3473 (progn (re-search-forward
3474 "^[ \t]*:END:.*\n?" nil 'move)
3475 (point))))
3476 (unless (member 'planning keep)
3477 (goto-char (point-min))
3478 (while (re-search-forward kwd-time-re nil t)
3479 (replace-match "")))
3480 (goto-char (point-min))
3481 (when org-agenda-entry-text-exclude-regexps
3482 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3483 (while (setq re (pop re-list))
3484 (goto-char (point-min))
3485 (while (re-search-forward re nil t)
3486 (replace-match "")))))
3487 (goto-char (point-max))
3488 (skip-chars-backward " \t\n")
3489 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3491 ;; find and remove min common indentation
3492 (goto-char (point-min))
3493 (untabify (point-min) (point-max))
3494 (setq ind (org-get-indentation))
3495 (while (not (eobp))
3496 (unless (looking-at "[ \t]*$")
3497 (setq ind (min ind (org-get-indentation))))
3498 (beginning-of-line 2))
3499 (goto-char (point-min))
3500 (while (not (eobp))
3501 (unless (looking-at "[ \t]*$")
3502 (move-to-column ind)
3503 (delete-region (point-at-bol) (point)))
3504 (beginning-of-line 2))
3506 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3508 (goto-char (point-min))
3509 (when indent
3510 (while (and (not (eobp)) (re-search-forward "^" nil t))
3511 (replace-match indent t t)))
3512 (goto-char (point-min))
3513 (while (looking-at "[ \t]*\n") (replace-match ""))
3514 (goto-char (point-max))
3515 (when (> (org-current-line)
3516 n-lines)
3517 (org-goto-line (1+ n-lines))
3518 (backward-char 1))
3519 (setq txt (buffer-substring (point-min) (point)))))))))
3520 txt))
3522 (defun org-check-for-org-mode ()
3523 "Make sure current buffer is in org-mode. Error if not."
3524 (or (derived-mode-p 'org-mode)
3525 (error "Cannot execute org-mode agenda command on buffer in %s"
3526 major-mode)))
3528 ;;; Agenda prepare and finalize
3530 (defvar org-agenda-multi nil) ; dynamically scoped
3531 (defvar org-agenda-pre-window-conf nil)
3532 (defvar org-agenda-columns-active nil)
3533 (defvar org-agenda-name nil)
3534 (defvar org-agenda-tag-filter nil)
3535 (defvar org-agenda-category-filter nil)
3536 (defvar org-agenda-regexp-filter nil)
3537 (defvar org-agenda-top-headline-filter nil)
3538 (defvar org-agenda-tag-filter-while-redo nil)
3539 (defvar org-agenda-tag-filter-preset nil
3540 "A preset of the tags filter used for secondary agenda filtering.
3541 This must be a list of strings, each string must be a single tag preceded
3542 by \"+\" or \"-\".
3543 This variable should not be set directly, but agenda custom commands can
3544 bind it in the options section. The preset filter is a global property of
3545 the entire agenda view. In a block agenda, it will not work reliably to
3546 define a filter for one of the individual blocks. You need to set it in
3547 the global options and expect it to be applied to the entire view.")
3549 (defvar org-agenda-category-filter-preset nil
3550 "A preset of the category filter used for secondary agenda filtering.
3551 This must be a list of strings, each string must be a single category
3552 preceded by \"+\" or \"-\".
3553 This variable should not be set directly, but agenda custom commands can
3554 bind it in the options section. The preset filter is a global property of
3555 the entire agenda view. In a block agenda, it will not work reliably to
3556 define a filter for one of the individual blocks. You need to set it in
3557 the global options and expect it to be applied to the entire view.")
3559 (defvar org-agenda-regexp-filter-preset nil
3560 "A preset of the regexp filter used for secondary agenda filtering.
3561 This must be a list of strings, each string must be a single regexp
3562 preceded by \"+\" or \"-\".
3563 This variable should not be set directly, but agenda custom commands can
3564 bind it in the options section. The preset filter is a global property of
3565 the entire agenda view. In a block agenda, it will not work reliably to
3566 define a filter for one of the individual blocks. You need to set it in
3567 the global options and expect it to be applied to the entire view.")
3569 (defun org-agenda-use-sticky-p ()
3570 "Return non-nil if an agenda buffer named
3571 `org-agenda-buffer-name' exists and should be shown instead of
3572 generating a new one."
3573 (and
3574 ;; turned off by user
3575 org-agenda-sticky
3576 ;; For multi-agenda buffer already exists
3577 (not org-agenda-multi)
3578 ;; buffer found
3579 (get-buffer org-agenda-buffer-name)
3580 ;; C-u parameter is same as last call
3581 (with-current-buffer (get-buffer org-agenda-buffer-name)
3582 (and
3583 (equal current-prefix-arg
3584 org-agenda-last-prefix-arg)
3585 ;; In case user turned stickiness on, while having existing
3586 ;; Agenda buffer active, don't reuse that buffer, because it
3587 ;; does not have org variables local
3588 org-agenda-this-buffer-is-sticky))))
3590 (defun org-agenda-prepare-window (abuf filter-alist)
3591 "Setup agenda buffer in the window.
3592 ABUF is the buffer for the agenda window.
3593 FILTER-ALIST is an alist of filters we need to apply when
3594 `org-agenda-persistent-filter' is non-nil."
3595 (let* ((awin (get-buffer-window abuf)) wconf)
3596 (cond
3597 ((equal (current-buffer) abuf) nil)
3598 (awin (select-window awin))
3599 ((not (setq wconf (current-window-configuration))))
3600 ((equal org-agenda-window-setup 'current-window)
3601 (org-pop-to-buffer-same-window abuf))
3602 ((equal org-agenda-window-setup 'other-window)
3603 (org-switch-to-buffer-other-window abuf))
3604 ((equal org-agenda-window-setup 'other-frame)
3605 (switch-to-buffer-other-frame abuf))
3606 ((equal org-agenda-window-setup 'reorganize-frame)
3607 (delete-other-windows)
3608 (org-switch-to-buffer-other-window abuf)))
3609 (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
3610 (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
3611 (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
3612 ;; Additional test in case agenda is invoked from within agenda
3613 ;; buffer via elisp link.
3614 (unless (equal (current-buffer) abuf)
3615 (org-pop-to-buffer-same-window abuf))
3616 (setq org-agenda-pre-window-conf
3617 (or org-agenda-pre-window-conf wconf))))
3619 (defun org-agenda-prepare (&optional name)
3620 (let ((filter-alist (if org-agenda-persistent-filter
3621 (list `(tag . ,org-agenda-tag-filter)
3622 `(re . ,org-agenda-regexp-filter)
3623 `(car . ,org-agenda-category-filter)))))
3624 (if (org-agenda-use-sticky-p)
3625 (progn
3626 ;; Popup existing buffer
3627 (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
3628 filter-alist)
3629 (message "Sticky Agenda buffer, use `r' to refresh")
3630 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
3631 (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
3632 (setq org-todo-keywords-for-agenda nil)
3633 (put 'org-agenda-tag-filter :preset-filter
3634 org-agenda-tag-filter-preset)
3635 (put 'org-agenda-category-filter :preset-filter
3636 org-agenda-category-filter-preset)
3637 (put 'org-agenda-regexp-filter :preset-filter
3638 org-agenda-regexp-filter-preset)
3639 (if org-agenda-multi
3640 (progn
3641 (setq buffer-read-only nil)
3642 (goto-char (point-max))
3643 (unless (or (bobp) org-agenda-compact-blocks
3644 (not org-agenda-block-separator))
3645 (insert "\n"
3646 (if (stringp org-agenda-block-separator)
3647 org-agenda-block-separator
3648 (make-string (window-width) org-agenda-block-separator))
3649 "\n"))
3650 (narrow-to-region (point) (point-max)))
3651 (setq org-done-keywords-for-agenda nil)
3652 ;; Setting any org variables that are in org-agenda-local-vars
3653 ;; list need to be done after the prepare call
3654 (org-agenda-prepare-window
3655 (get-buffer-create org-agenda-buffer-name) filter-alist)
3656 (setq buffer-read-only nil)
3657 (org-agenda-reset-markers)
3658 (let ((inhibit-read-only t)) (erase-buffer))
3659 (org-agenda-mode)
3660 (setq org-agenda-buffer (current-buffer))
3661 (setq org-agenda-contributing-files nil)
3662 (setq org-agenda-columns-active nil)
3663 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
3664 (setq org-todo-keywords-for-agenda
3665 (org-uniquify org-todo-keywords-for-agenda))
3666 (setq org-done-keywords-for-agenda
3667 (org-uniquify org-done-keywords-for-agenda))
3668 (setq org-agenda-last-prefix-arg current-prefix-arg)
3669 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3670 (and name (not org-agenda-name)
3671 (org-set-local 'org-agenda-name name)))
3672 (setq buffer-read-only nil))))
3674 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3675 (defun org-agenda-finalize ()
3676 "Finishing touch for the agenda buffer, called just before displaying it."
3677 (unless org-agenda-multi
3678 (save-excursion
3679 (let ((inhibit-read-only t))
3680 (goto-char (point-min))
3681 (save-excursion
3682 (while (org-activate-bracket-links (point-max))
3683 (add-text-properties (match-beginning 0) (match-end 0)
3684 '(face org-link))))
3685 (save-excursion
3686 (while (org-activate-plain-links (point-max))
3687 (add-text-properties (match-beginning 0) (match-end 0)
3688 '(face org-link))))
3689 (unless (eq org-agenda-remove-tags t)
3690 (org-agenda-align-tags))
3691 (unless org-agenda-with-colors
3692 (remove-text-properties (point-min) (point-max) '(face nil)))
3693 (if (and (boundp 'org-agenda-overriding-columns-format)
3694 org-agenda-overriding-columns-format)
3695 (org-set-local 'org-agenda-overriding-columns-format
3696 org-agenda-overriding-columns-format))
3697 (if (and (boundp 'org-agenda-view-columns-initially)
3698 org-agenda-view-columns-initially)
3699 (org-agenda-columns))
3700 (when org-agenda-fontify-priorities
3701 (org-agenda-fontify-priorities))
3702 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3703 (org-agenda-dim-blocked-tasks))
3704 (org-agenda-mark-clocking-task)
3705 (when org-agenda-entry-text-mode
3706 (org-agenda-entry-text-hide)
3707 (org-agenda-entry-text-show))
3708 (if (and (functionp 'org-habit-insert-consistency-graphs)
3709 (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
3710 (org-habit-insert-consistency-graphs))
3711 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3712 (unless (or (eq org-agenda-show-inherited-tags 'always)
3713 (and (listp org-agenda-show-inherited-tags)
3714 (memq org-agenda-type org-agenda-show-inherited-tags))
3715 (and (eq org-agenda-show-inherited-tags t)
3716 (or (eq org-agenda-use-tag-inheritance t)
3717 (and (listp org-agenda-use-tag-inheritance)
3718 (not (memq org-agenda-type
3719 org-agenda-use-tag-inheritance))))))
3720 (let (mrk)
3721 (save-excursion
3722 (goto-char (point-min))
3723 (while (equal (forward-line) 0)
3724 (when (setq mrk (or (get-text-property (point) 'org-hd-marker)
3725 (get-text-property (point) 'org-hd-marker)))
3726 (put-text-property (point-at-bol) (point-at-eol)
3727 'tags (org-with-point-at mrk
3728 (delete-dups
3729 (mapcar 'downcase (org-get-tags-at))))))))))
3730 (run-hooks 'org-agenda-finalize-hook)
3731 (when org-agenda-top-headline-filter
3732 (org-agenda-filter-top-headline-apply
3733 org-agenda-top-headline-filter))
3734 (when org-agenda-tag-filter
3735 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
3736 (when (get 'org-agenda-tag-filter :preset-filter)
3737 (org-agenda-filter-apply
3738 (get 'org-agenda-tag-filter :preset-filter) 'tag))
3739 (when org-agenda-category-filter
3740 (org-agenda-filter-apply org-agenda-category-filter 'category))
3741 (when (get 'org-agenda-category-filter :preset-filter)
3742 (org-agenda-filter-apply
3743 (get 'org-agenda-category-filter :preset-filter) 'category))
3744 (when org-agenda-regexp-filter
3745 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
3746 (when (get 'org-agenda-regexp-filter :preset-filter)
3747 (org-agenda-filter-apply
3748 (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
3749 (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
3751 (defun org-agenda-mark-clocking-task ()
3752 "Mark the current clock entry in the agenda if it is present."
3753 ;; We need to widen when `org-agenda-finalize' is called from
3754 ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
3755 (when org-clock-current-task
3756 (save-restriction
3757 (widen)
3758 (org-agenda-unmark-clocking-task)
3759 (when (marker-buffer org-clock-hd-marker)
3760 (save-excursion
3761 (goto-char (point-min))
3762 (let (s ov)
3763 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3764 (goto-char s)
3765 (when (equal (org-get-at-bol 'org-hd-marker)
3766 org-clock-hd-marker)
3767 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3768 (overlay-put ov 'type 'org-agenda-clocking)
3769 (overlay-put ov 'face 'org-agenda-clocking)
3770 (overlay-put ov 'help-echo
3771 "The clock is running in this item")))))))))
3773 (defun org-agenda-unmark-clocking-task ()
3774 "Unmark the current clocking task."
3775 (mapc (lambda (o)
3776 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3777 (delete-overlay o)))
3778 (overlays-in (point-min) (point-max))))
3780 (defun org-agenda-fontify-priorities ()
3781 "Make highest priority lines bold, and lowest italic."
3782 (interactive)
3783 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3784 (delete-overlay o)))
3785 (overlays-in (point-min) (point-max)))
3786 (save-excursion
3787 (let (b e p ov h l)
3788 (goto-char (point-min))
3789 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3790 (setq h (or (get-char-property (point) 'org-highest-priority)
3791 org-highest-priority)
3792 l (or (get-char-property (point) 'org-lowest-priority)
3793 org-lowest-priority)
3794 p (string-to-char (match-string 1))
3795 b (match-beginning 0)
3796 e (if (eq org-agenda-fontify-priorities 'cookies)
3797 (match-end 0)
3798 (point-at-eol))
3799 ov (make-overlay b e))
3800 (overlay-put
3801 ov 'face
3802 (cons (cond ((org-face-from-face-or-color
3803 'priority nil
3804 (cdr (assoc p org-priority-faces))))
3805 ((and (listp org-agenda-fontify-priorities)
3806 (org-face-from-face-or-color
3807 'priority nil
3808 (cdr (assoc p org-agenda-fontify-priorities)))))
3809 ((equal p l) 'italic)
3810 ((equal p h) 'bold))
3811 'org-priority))
3812 (overlay-put ov 'org-type 'org-priority)))))
3814 (defvar org-depend-tag-blocked)
3816 (defun org-agenda-dim-blocked-tasks (&optional invisible)
3817 "Dim currently blocked TODO's in the agenda display.
3818 When INVISIBLE is non-nil, hide currently blocked TODO instead of
3819 dimming them."
3820 (interactive "P")
3821 (when (org-called-interactively-p 'interactive)
3822 (message "Dim or hide blocked tasks..."))
3823 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
3824 (delete-overlay o)))
3825 (overlays-in (point-min) (point-max)))
3826 (save-excursion
3827 (let ((inhibit-read-only t)
3828 (org-depend-tag-blocked nil)
3829 (invis (or (not (null invisible))
3830 (eq org-agenda-dim-blocked-tasks 'invisible)))
3831 org-blocked-by-checkboxes
3832 invis1 b e p ov h l)
3833 (goto-char (point-min))
3834 (while (let ((pos (next-single-property-change (point) 'todo-state)))
3835 (and pos (goto-char (1+ pos))))
3836 (setq org-blocked-by-checkboxes nil invis1 invis)
3837 (let ((marker (org-get-at-bol 'org-hd-marker)))
3838 (when (and marker
3839 (with-current-buffer (marker-buffer marker)
3840 (save-excursion (goto-char marker)
3841 (org-entry-blocked-p))))
3842 (if org-blocked-by-checkboxes (setq invis1 nil))
3843 (setq b (if invis1
3844 (max (point-min) (1- (point-at-bol)))
3845 (point-at-bol))
3846 e (point-at-eol)
3847 ov (make-overlay b e))
3848 (if invis1
3849 (progn (overlay-put ov 'invisible t)
3850 (overlay-put ov 'intangible t))
3851 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3852 (overlay-put ov 'org-type 'org-blocked-todo))))))
3853 (when (org-called-interactively-p 'interactive)
3854 (message "Dim or hide blocked tasks...done")))
3856 (defvar org-agenda-skip-function nil
3857 "Function to be called at each match during agenda construction.
3858 If this function returns nil, the current match should not be skipped.
3859 Otherwise, the function must return a position from where the search
3860 should be continued.
3861 This may also be a Lisp form, it will be evaluated.
3862 Never set this variable using `setq' or so, because then it will apply
3863 to all future agenda commands. If you do want a global skipping condition,
3864 use the option `org-agenda-skip-function-global' instead.
3865 The correct usage for `org-agenda-skip-function' is to bind it with
3866 `let' to scope it dynamically into the agenda-constructing command.
3867 A good way to set it is through options in `org-agenda-custom-commands'.")
3869 (defun org-agenda-skip ()
3870 "Throw to `:skip' in places that should be skipped.
3871 Also moves point to the end of the skipped region, so that search can
3872 continue from there."
3873 (let ((p (point-at-bol)) to)
3874 (when (or
3875 (save-excursion (goto-char p) (looking-at comment-start-skip))
3876 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3877 (get-text-property p :org-archived)
3878 (org-end-of-subtree t))
3879 (and org-agenda-skip-comment-trees
3880 (get-text-property p :org-comment)
3881 (org-end-of-subtree t))
3882 (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3883 (org-agenda-skip-eval org-agenda-skip-function)))
3884 (goto-char to))
3885 (org-in-src-block-p t))
3886 (throw :skip t))))
3888 (defun org-agenda-skip-eval (form)
3889 "If FORM is a function or a list, call (or eval) it and return the result.
3890 `save-excursion' and `save-match-data' are wrapped around the call, so point
3891 and match data are returned to the previous state no matter what these
3892 functions do."
3893 (let (fp)
3894 (and form
3895 (or (setq fp (functionp form))
3896 (consp form))
3897 (save-excursion
3898 (save-match-data
3899 (if fp
3900 (funcall form)
3901 (eval form)))))))
3903 (defvar org-agenda-markers nil
3904 "List of all currently active markers created by `org-agenda'.")
3905 (defvar org-agenda-last-marker-time (org-float-time)
3906 "Creation time of the last agenda marker.")
3908 (defun org-agenda-new-marker (&optional pos)
3909 "Return a new agenda marker.
3910 Org-mode keeps a list of these markers and resets them when they are
3911 no longer in use."
3912 (let ((m (copy-marker (or pos (point)))))
3913 (setq org-agenda-last-marker-time (org-float-time))
3914 (if org-agenda-buffer
3915 (with-current-buffer org-agenda-buffer
3916 (push m org-agenda-markers))
3917 (push m org-agenda-markers))
3920 (defun org-agenda-reset-markers ()
3921 "Reset markers created by `org-agenda'."
3922 (while org-agenda-markers
3923 (move-marker (pop org-agenda-markers) nil)))
3925 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3926 "Save relative positions of markers in region.
3927 This check for agenda markers in all agenda buffers currently active."
3928 (dolist (buf (buffer-list))
3929 (with-current-buffer buf
3930 (when (eq major-mode 'org-agenda-mode)
3931 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3932 org-agenda-markers)))))
3934 ;;; Entry text mode
3936 (defun org-agenda-entry-text-show-here ()
3937 "Add some text from the entry as context to the current line."
3938 (let (m txt o)
3939 (setq m (org-get-at-bol 'org-hd-marker))
3940 (unless (marker-buffer m)
3941 (error "No marker points to an entry here"))
3942 (setq txt (concat "\n" (org-no-properties
3943 (org-agenda-get-some-entry-text
3944 m org-agenda-entry-text-maxlines
3945 org-agenda-entry-text-leaders))))
3946 (when (string-match "\\S-" txt)
3947 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3948 (overlay-put o 'evaporate t)
3949 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3950 (overlay-put o 'after-string txt))))
3952 (defun org-agenda-entry-text-show ()
3953 "Add entry context for all agenda lines."
3954 (interactive)
3955 (save-excursion
3956 (goto-char (point-max))
3957 (beginning-of-line 1)
3958 (while (not (bobp))
3959 (when (org-get-at-bol 'org-hd-marker)
3960 (org-agenda-entry-text-show-here))
3961 (beginning-of-line 0))))
3963 (defun org-agenda-entry-text-hide ()
3964 "Remove any shown entry context."
3965 (delq nil
3966 (mapcar (lambda (o)
3967 (if (eq (overlay-get o 'org-overlay-type)
3968 'agenda-entry-content)
3969 (progn (delete-overlay o) t)))
3970 (overlays-in (point-min) (point-max)))))
3972 (defun org-agenda-get-day-face (date)
3973 "Return the face DATE should be displayed with."
3974 (or (and (functionp org-agenda-day-face-function)
3975 (funcall org-agenda-day-face-function date))
3976 (cond ((org-agenda-todayp date)
3977 'org-agenda-date-today)
3978 ((member (calendar-day-of-week date) org-agenda-weekend-days)
3979 'org-agenda-date-weekend)
3980 (t 'org-agenda-date))))
3982 ;;; Agenda timeline
3984 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
3985 (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
3987 (defun org-timeline (&optional dotodo)
3988 "Show a time-sorted view of the entries in the current org file.
3989 Only entries with a time stamp of today or later will be listed. With
3990 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
3991 under the current date.
3992 If the buffer contains an active region, only check the region for
3993 dates."
3994 (interactive "P")
3995 (let* ((dopast t)
3996 (org-agenda-show-log-scoped org-agenda-show-log)
3997 (org-agenda-show-log org-agenda-show-log-scoped)
3998 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
3999 (current-buffer))))
4000 (date (calendar-current-date))
4001 (beg (if (org-region-active-p) (region-beginning) (point-min)))
4002 (end (if (org-region-active-p) (region-end) (point-max)))
4003 (day-numbers (org-get-all-dates
4004 beg end 'no-ranges
4005 t org-agenda-show-log-scoped ; always include today
4006 org-timeline-show-empty-dates))
4007 (org-deadline-warning-days 0)
4008 (org-agenda-only-exact-dates t)
4009 (today (org-today))
4010 (past t)
4011 args
4012 s e rtn d emptyp)
4013 (setq org-agenda-redo-command
4014 (list 'let
4015 (list (list 'org-agenda-show-log 'org-agenda-show-log))
4016 (list 'org-switch-to-buffer-other-window (current-buffer))
4017 (list 'org-timeline (list 'quote dotodo))))
4018 (put 'org-agenda-redo-command 'org-lprops nil)
4019 (if (not dopast)
4020 ;; Remove past dates from the list of dates.
4021 (setq day-numbers (delq nil (mapcar (lambda(x)
4022 (if (>= x today) x nil))
4023 day-numbers))))
4024 (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
4025 (org-compile-prefix-format 'timeline)
4026 (org-set-sorting-strategy 'timeline)
4027 (if org-agenda-show-log-scoped (push :closed args))
4028 (push :timestamp args)
4029 (push :deadline args)
4030 (push :scheduled args)
4031 (push :sexp args)
4032 (if dotodo (push :todo args))
4033 (insert "Timeline of file " entry "\n")
4034 (add-text-properties (point-min) (point)
4035 (list 'face 'org-agenda-structure))
4036 (org-agenda-mark-header-line (point-min))
4037 (while (setq d (pop day-numbers))
4038 (if (and (listp d) (eq (car d) :omitted))
4039 (progn
4040 (setq s (point))
4041 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
4042 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
4043 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
4044 (if (and (>= d today)
4045 dopast
4046 past)
4047 (progn
4048 (setq past nil)
4049 (insert (make-string 79 ?-) "\n")))
4050 (setq date (calendar-gregorian-from-absolute d))
4051 (setq s (point))
4052 (setq rtn (and (not emptyp)
4053 (apply 'org-agenda-get-day-entries entry
4054 date args)))
4055 (if (or rtn (equal d today) org-timeline-show-empty-dates)
4056 (progn
4057 (insert
4058 (if (stringp org-agenda-format-date)
4059 (format-time-string org-agenda-format-date
4060 (org-time-from-absolute date))
4061 (funcall org-agenda-format-date date))
4062 "\n")
4063 (put-text-property s (1- (point)) 'face
4064 (org-agenda-get-day-face date))
4065 (put-text-property s (1- (point)) 'org-date-line t)
4066 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4067 (if (equal d today)
4068 (put-text-property s (1- (point)) 'org-today t))
4069 (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
4070 (put-text-property s (1- (point)) 'day d)))))
4071 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
4072 (point-min)))
4073 (add-text-properties
4074 (point-min) (point-max)
4075 `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
4076 (org-agenda-finalize)
4077 (setq buffer-read-only t)))
4079 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
4080 "Return a list of all relevant day numbers from BEG to END buffer positions.
4081 If NO-RANGES is non-nil, include only the start and end dates of a range,
4082 not every single day in the range. If FORCE-TODAY is non-nil, make
4083 sure that TODAY is included in the list. If INACTIVE is non-nil, also
4084 inactive time stamps (those in square brackets) are included.
4085 When EMPTY is non-nil, also include days without any entries."
4086 (let ((re (concat
4087 (if pre-re pre-re "")
4088 (if inactive org-ts-regexp-both org-ts-regexp)))
4089 dates dates1 date day day1 day2 ts1 ts2 pos)
4090 (if force-today
4091 (setq dates (list (org-today))))
4092 (save-excursion
4093 (goto-char beg)
4094 (while (re-search-forward re end t)
4095 (setq day (time-to-days (org-time-string-to-time
4096 (substring (match-string 1) 0 10)
4097 (current-buffer) (match-beginning 0))))
4098 (or (memq day dates) (push day dates)))
4099 (unless no-ranges
4100 (goto-char beg)
4101 (while (re-search-forward org-tr-regexp end t)
4102 (setq pos (match-beginning 0))
4103 (setq ts1 (substring (match-string 1) 0 10)
4104 ts2 (substring (match-string 2) 0 10)
4105 day1 (time-to-days (org-time-string-to-time
4106 ts1 (current-buffer) pos))
4107 day2 (time-to-days (org-time-string-to-time
4108 ts2 (current-buffer) pos)))
4109 (while (< (setq day1 (1+ day1)) day2)
4110 (or (memq day1 dates) (push day1 dates)))))
4111 (setq dates (sort dates '<))
4112 (when empty
4113 (while (setq day (pop dates))
4114 (setq day2 (car dates))
4115 (push day dates1)
4116 (when (and day2 empty)
4117 (if (or (eq empty t)
4118 (and (numberp empty) (<= (- day2 day) empty)))
4119 (while (< (setq day (1+ day)) day2)
4120 (push (list day) dates1))
4121 (push (cons :omitted (- day2 day)) dates1))))
4122 (setq dates (nreverse dates1)))
4123 dates)))
4125 ;;; Agenda Daily/Weekly
4127 (defvar org-agenda-start-day nil ; dynamically scoped parameter
4128 "Start day for the agenda view.
4129 Custom commands can set this variable in the options section.
4130 This is usually a string like \"2007-11-01\", \"+2d\" or any other
4131 input allowed when reading a date through the Org calendar.
4132 See the docstring of `org-read-date' for details.")
4133 (defvar org-starting-day nil) ; local variable in the agenda buffer
4134 (defvar org-arg-loc nil) ; local variable
4136 (defvar org-agenda-buffer-tmp-name nil)
4137 ;;;###autoload
4138 (defun org-agenda-list (&optional arg start-day span with-hour)
4139 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
4140 The view will be for the current day or week, but from the overview buffer
4141 you will be able to go to other days/weeks.
4143 With a numeric prefix argument in an interactive call, the agenda will
4144 span ARG days. Lisp programs should instead specify SPAN to change
4145 the number of days. SPAN defaults to `org-agenda-span'.
4147 START-DAY defaults to TODAY, or to the most recent match for the weekday
4148 given in `org-agenda-start-on-weekday'.
4150 When WITH-HOUR is non-nil, only include scheduled and deadline
4151 items if they have an hour specification like [h]h:mm."
4152 (interactive "P")
4153 (if org-agenda-overriding-arguments
4154 (setq arg (car org-agenda-overriding-arguments)
4155 start-day (nth 1 org-agenda-overriding-arguments)
4156 span (nth 2 org-agenda-overriding-arguments)))
4157 (if (and (integerp arg) (> arg 0))
4158 (setq span arg arg nil))
4159 (catch 'exit
4160 (setq org-agenda-buffer-name
4161 (or org-agenda-buffer-tmp-name
4162 (if org-agenda-sticky
4163 (cond ((and org-keys (stringp org-match))
4164 (format "*Org Agenda(%s:%s)*" org-keys org-match))
4165 (org-keys
4166 (format "*Org Agenda(%s)*" org-keys))
4167 (t "*Org Agenda(a)*")))
4168 org-agenda-buffer-name))
4169 (org-agenda-prepare "Day/Week")
4170 (setq start-day (or start-day org-agenda-start-day))
4171 (if (stringp start-day)
4172 ;; Convert to an absolute day number
4173 (setq start-day (time-to-days (org-read-date nil t start-day))))
4174 (org-compile-prefix-format 'agenda)
4175 (org-set-sorting-strategy 'agenda)
4176 (let* ((span (org-agenda-ndays-to-span
4177 (or span org-agenda-ndays org-agenda-span)))
4178 (today (org-today))
4179 (sd (or start-day today))
4180 (ndays (org-agenda-span-to-ndays span sd))
4181 (org-agenda-start-on-weekday
4182 (if (or (eq ndays 7) (eq ndays 14))
4183 org-agenda-start-on-weekday))
4184 (thefiles (org-agenda-files nil 'ifmode))
4185 (files thefiles)
4186 (start (if (or (null org-agenda-start-on-weekday)
4187 (< ndays 7))
4189 (let* ((nt (calendar-day-of-week
4190 (calendar-gregorian-from-absolute sd)))
4191 (n1 org-agenda-start-on-weekday)
4192 (d (- nt n1)))
4193 (- sd (+ (if (< d 0) 7 0) d)))))
4194 (day-numbers (list start))
4195 (day-cnt 0)
4196 (inhibit-redisplay (not debug-on-error))
4197 (org-agenda-show-log-scoped org-agenda-show-log)
4198 s e rtn rtnall file date d start-pos end-pos todayp
4199 clocktable-start clocktable-end filter)
4200 (setq org-agenda-redo-command
4201 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
4202 (dotimes (n (1- ndays))
4203 (push (1+ (car day-numbers)) day-numbers))
4204 (setq day-numbers (nreverse day-numbers))
4205 (setq clocktable-start (car day-numbers)
4206 clocktable-end (1+ (or (org-last day-numbers) 0)))
4207 (org-set-local 'org-starting-day (car day-numbers))
4208 (org-set-local 'org-arg-loc arg)
4209 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
4210 (unless org-agenda-compact-blocks
4211 (let* ((d1 (car day-numbers))
4212 (d2 (org-last day-numbers))
4213 (w1 (org-days-to-iso-week d1))
4214 (w2 (org-days-to-iso-week d2)))
4215 (setq s (point))
4216 (if org-agenda-overriding-header
4217 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4218 nil 'face 'org-agenda-structure) "\n")
4219 (insert (org-agenda-span-name span)
4220 "-agenda"
4221 (if (< (- d2 d1) 350)
4222 (if (= w1 w2)
4223 (format " (W%02d)" w1)
4224 (format " (W%02d-W%02d)" w1 w2))
4226 ":\n")))
4227 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
4228 'org-date-line t))
4229 (org-agenda-mark-header-line s))
4230 (while (setq d (pop day-numbers))
4231 (setq date (calendar-gregorian-from-absolute d)
4232 s (point))
4233 (if (or (setq todayp (= d today))
4234 (and (not start-pos) (= d sd)))
4235 (setq start-pos (point))
4236 (if (and start-pos (not end-pos))
4237 (setq end-pos (point))))
4238 (setq files thefiles
4239 rtnall nil)
4240 (while (setq file (pop files))
4241 (catch 'nextfile
4242 (org-check-agenda-file file)
4243 (let ((org-agenda-entry-types org-agenda-entry-types))
4244 ;; Starred types override non-starred equivalents
4245 (when (member :deadline* org-agenda-entry-types)
4246 (setq org-agenda-entry-types
4247 (delq :deadline org-agenda-entry-types)))
4248 (when (member :scheduled* org-agenda-entry-types)
4249 (setq org-agenda-entry-types
4250 (delq :scheduled org-agenda-entry-types)))
4251 ;; Honor with-hour
4252 (when with-hour
4253 (when (member :deadline org-agenda-entry-types)
4254 (setq org-agenda-entry-types
4255 (delq :deadline org-agenda-entry-types))
4256 (push :deadline* org-agenda-entry-types))
4257 (when (member :scheduled org-agenda-entry-types)
4258 (setq org-agenda-entry-types
4259 (delq :scheduled org-agenda-entry-types))
4260 (push :scheduled* org-agenda-entry-types)))
4261 (unless org-agenda-include-deadlines
4262 (setq org-agenda-entry-types
4263 (delq :deadline* (delq :deadline org-agenda-entry-types))))
4264 (cond
4265 ((memq org-agenda-show-log-scoped '(only clockcheck))
4266 (setq rtn (org-agenda-get-day-entries
4267 file date :closed)))
4268 (org-agenda-show-log-scoped
4269 (setq rtn (apply 'org-agenda-get-day-entries
4270 file date
4271 (append '(:closed) org-agenda-entry-types))))
4273 (setq rtn (apply 'org-agenda-get-day-entries
4274 file date
4275 org-agenda-entry-types)))))
4276 (setq rtnall (append rtnall rtn)))) ;; all entries
4277 (if org-agenda-include-diary
4278 (let ((org-agenda-search-headline-for-time t))
4279 (require 'diary-lib)
4280 (setq rtn (org-get-entries-from-diary date))
4281 (setq rtnall (append rtnall rtn))))
4282 (if (or rtnall org-agenda-show-all-dates)
4283 (progn
4284 (setq day-cnt (1+ day-cnt))
4285 (insert
4286 (if (stringp org-agenda-format-date)
4287 (format-time-string org-agenda-format-date
4288 (org-time-from-absolute date))
4289 (funcall org-agenda-format-date date))
4290 "\n")
4291 (put-text-property s (1- (point)) 'face
4292 (org-agenda-get-day-face date))
4293 (put-text-property s (1- (point)) 'org-date-line t)
4294 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4295 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
4296 (when todayp
4297 (put-text-property s (1- (point)) 'org-today t))
4298 (setq rtnall
4299 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
4300 (if rtnall (insert ;; all entries
4301 (org-agenda-finalize-entries rtnall 'agenda)
4302 "\n"))
4303 (put-text-property s (1- (point)) 'day d)
4304 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
4305 (when (and org-agenda-clockreport-mode clocktable-start)
4306 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
4307 ;; the above line is to ensure the restricted range!
4308 (p (copy-sequence org-agenda-clockreport-parameter-plist))
4309 tbl)
4310 (setq p (org-plist-delete p :block))
4311 (setq p (plist-put p :tstart clocktable-start))
4312 (setq p (plist-put p :tend clocktable-end))
4313 (setq p (plist-put p :scope 'agenda))
4314 (when (and (eq org-agenda-clockreport-mode 'with-filter)
4315 (setq filter (or org-agenda-tag-filter-while-redo
4316 (get 'org-agenda-tag-filter :preset-filter))))
4317 (setq p (plist-put p :tags (mapconcat (lambda (x)
4318 (if (string-match "[<>=]" x)
4321 filter ""))))
4322 (setq tbl (apply 'org-clock-get-clocktable p))
4323 (insert tbl)))
4324 (goto-char (point-min))
4325 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4326 (unless (and (pos-visible-in-window-p (point-min))
4327 (pos-visible-in-window-p (point-max)))
4328 (goto-char (1- (point-max)))
4329 (recenter -1)
4330 (if (not (pos-visible-in-window-p (or start-pos 1)))
4331 (progn
4332 (goto-char (or start-pos 1))
4333 (recenter 1))))
4334 (goto-char (or start-pos 1))
4335 (add-text-properties (point-min) (point-max)
4336 `(org-agenda-type agenda
4337 org-last-args (,arg ,start-day ,span)
4338 org-redo-cmd ,org-agenda-redo-command
4339 org-series-cmd ,org-cmd))
4340 (if (eq org-agenda-show-log-scoped 'clockcheck)
4341 (org-agenda-show-clocking-issues))
4342 (org-agenda-finalize)
4343 (setq buffer-read-only t)
4344 (message ""))))
4346 (defun org-agenda-ndays-to-span (n)
4347 "Return a span symbol for a span of N days, or N if none matches."
4348 (cond ((symbolp n) n)
4349 ((= n 1) 'day)
4350 ((= n 7) 'week)
4351 ((= n 14) 'fortnight)
4352 (t n)))
4354 (defun org-agenda-span-to-ndays (span &optional start-day)
4355 "Return ndays from SPAN, possibly starting at START-DAY.
4356 START-DAY is an absolute time value."
4357 (cond ((numberp span) span)
4358 ((eq span 'day) 1)
4359 ((eq span 'week) 7)
4360 ((eq span 'fortnight) 14)
4361 ((eq span 'month)
4362 (let ((date (calendar-gregorian-from-absolute start-day)))
4363 (calendar-last-day-of-month (car date) (caddr date))))
4364 ((eq span 'year)
4365 (let ((date (calendar-gregorian-from-absolute start-day)))
4366 (if (calendar-leap-year-p (caddr date)) 366 365)))))
4368 (defun org-agenda-span-name (span)
4369 "Return a SPAN name."
4370 (if (null span)
4372 (if (symbolp span)
4373 (capitalize (symbol-name span))
4374 (format "%d days" span))))
4376 ;;; Agenda word search
4378 (defvar org-agenda-search-history nil)
4380 (defvar org-search-syntax-table nil
4381 "Special syntax table for org-mode search.
4382 In this table, we have single quotes not as word constituents, to
4383 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
4385 (defvar org-mode-syntax-table) ; From org.el
4386 (defun org-search-syntax-table ()
4387 (unless org-search-syntax-table
4388 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
4389 (modify-syntax-entry ?' "." org-search-syntax-table)
4390 (modify-syntax-entry ?` "." org-search-syntax-table))
4391 org-search-syntax-table)
4393 (defvar org-agenda-last-search-view-search-was-boolean nil)
4395 ;;;###autoload
4396 (defun org-search-view (&optional todo-only string edit-at)
4397 "Show all entries that contain a phrase or words or regular expressions.
4399 With optional prefix argument TODO-ONLY, only consider entries that are
4400 TODO entries. The argument STRING can be used to pass a default search
4401 string into this function. If EDIT-AT is non-nil, it means that the
4402 user should get a chance to edit this string, with cursor at position
4403 EDIT-AT.
4405 The search string can be viewed either as a phrase that should be found as
4406 is, or it can be broken into a number of snippets, each of which must match
4407 in a Boolean way to select an entry. The default depends on the variable
4408 `org-agenda-search-view-always-boolean'.
4409 Even if this is turned off (the default) you can always switch to
4410 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4412 The default is a direct search of the whole phrase, where each space in
4413 the search string can expand to an arbitrary amount of whitespace,
4414 including newlines.
4416 If using a Boolean search, the search string is split on whitespace and
4417 each snippet is searched separately, with logical AND to select an entry.
4418 Words prefixed with a minus must *not* occur in the entry. Words without
4419 a prefix or prefixed with a plus must occur in the entry. Matching is
4420 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4421 match whole words, not parts of a word) if
4422 `org-agenda-search-view-force-full-words' is set (default is nil).
4424 Boolean search snippets enclosed by curly braces are interpreted as
4425 regular expressions that must or (when preceded with \"-\") must not
4426 match in the entry. Snippets enclosed into double quotes will be taken
4427 as a whole, to include whitespace.
4429 - If the search string starts with an asterisk, search only in headlines.
4430 - If (possibly after the leading star) the search string starts with an
4431 exclamation mark, this also means to look at TODO entries only, an effect
4432 that can also be achieved with a prefix argument.
4433 - If (possibly after star and exclamation mark) the search string starts
4434 with a colon, this will mean that the (non-regexp) snippets of the
4435 Boolean search must match as full words.
4437 This command searches the agenda files, and in addition the files listed
4438 in `org-agenda-text-search-extra-files'."
4439 (interactive "P")
4440 (if org-agenda-overriding-arguments
4441 (setq todo-only (car org-agenda-overriding-arguments)
4442 string (nth 1 org-agenda-overriding-arguments)
4443 edit-at (nth 2 org-agenda-overriding-arguments)))
4444 (let* ((props (list 'face nil
4445 'done-face 'org-agenda-done
4446 'org-not-done-regexp org-not-done-regexp
4447 'org-todo-regexp org-todo-regexp
4448 'org-complex-heading-regexp org-complex-heading-regexp
4449 'mouse-face 'highlight
4450 'help-echo (format "mouse-2 or RET jump to location")))
4451 (full-words org-agenda-search-view-force-full-words)
4452 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4453 regexp rtn rtnall files file pos inherited-tags
4454 marker category level tags c neg re boolean
4455 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4456 (unless (and (not edit-at)
4457 (stringp string)
4458 (string-match "\\S-" string))
4459 (setq string (read-string
4460 (if org-agenda-search-view-always-boolean
4461 "[+-]Word/{Regexp} ...: "
4462 "Phrase or [+-]Word/{Regexp} ...: ")
4463 (cond
4464 ((integerp edit-at) (cons string edit-at))
4465 (edit-at string))
4466 'org-agenda-search-history)))
4467 (catch 'exit
4468 (if org-agenda-sticky
4469 (setq org-agenda-buffer-name
4470 (if (stringp string)
4471 (format "*Org Agenda(%s:%s)*"
4472 (or org-keys (or (and todo-only "S") "s")) string)
4473 (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
4474 (org-agenda-prepare "SEARCH")
4475 (org-compile-prefix-format 'search)
4476 (org-set-sorting-strategy 'search)
4477 (setq org-agenda-redo-command
4478 (list 'org-search-view (if todo-only t nil)
4479 (list 'if 'current-prefix-arg nil string)))
4480 (setq org-agenda-query-string string)
4481 (if (equal (string-to-char string) ?*)
4482 (setq hdl-only t
4483 words (substring string 1))
4484 (setq words string))
4485 (when (equal (string-to-char words) ?!)
4486 (setq todo-only t
4487 words (substring words 1)))
4488 (when (equal (string-to-char words) ?:)
4489 (setq full-words t
4490 words (substring words 1)))
4491 (if (or org-agenda-search-view-always-boolean
4492 (member (string-to-char words) '(?- ?+ ?\{)))
4493 (setq boolean t))
4494 (setq words (org-split-string words))
4495 (let (www w)
4496 (while (setq w (pop words))
4497 (while (and (string-match "\\\\\\'" w) words)
4498 (setq w (concat (substring w 0 -1) " " (pop words))))
4499 (push w www))
4500 (setq words (nreverse www) www nil)
4501 (while (setq w (pop words))
4502 (when (and (string-match "\\`[-+]?{" w)
4503 (not (string-match "}\\'" w)))
4504 (while (and words (not (string-match "}\\'" (car words))))
4505 (setq w (concat w " " (pop words))))
4506 (setq w (concat w " " (pop words))))
4507 (push w www))
4508 (setq words (nreverse www)))
4509 (setq org-agenda-last-search-view-search-was-boolean boolean)
4510 (when boolean
4511 (let (wds w)
4512 (while (setq w (pop words))
4513 (if (or (equal (substring w 0 1) "\"")
4514 (and (> (length w) 1)
4515 (member (substring w 0 1) '("+" "-"))
4516 (equal (substring w 1 2) "\"")))
4517 (while (and words (not (equal (substring w -1) "\"")))
4518 (setq w (concat w " " (pop words)))))
4519 (and (string-match "\\`\\([-+]?\\)\"" w)
4520 (setq w (replace-match "\\1" nil nil w)))
4521 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4522 (push w wds))
4523 (setq words (nreverse wds))))
4524 (if boolean
4525 (mapc (lambda (w)
4526 (setq c (string-to-char w))
4527 (if (equal c ?-)
4528 (setq neg t w (substring w 1))
4529 (if (equal c ?+)
4530 (setq neg nil w (substring w 1))
4531 (setq neg nil)))
4532 (if (string-match "\\`{.*}\\'" w)
4533 (setq re (substring w 1 -1))
4534 (if full-words
4535 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4536 (setq re (regexp-quote (downcase w)))))
4537 (if neg (push re regexps-) (push re regexps+)))
4538 words)
4539 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4540 regexps+))
4541 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4542 (if (not regexps+)
4543 (setq regexp org-outline-regexp-bol)
4544 (setq regexp (pop regexps+))
4545 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4546 regexp))))
4547 (setq files (org-agenda-files nil 'ifmode))
4548 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4549 (pop org-agenda-text-search-extra-files)
4550 (setq files (org-add-archive-files files)))
4551 (setq files (append files org-agenda-text-search-extra-files)
4552 rtnall nil)
4553 (while (setq file (pop files))
4554 (setq ee nil)
4555 (catch 'nextfile
4556 (org-check-agenda-file file)
4557 (setq buffer (if (file-exists-p file)
4558 (org-get-agenda-file-buffer file)
4559 (error "No such file %s" file)))
4560 (if (not buffer)
4561 ;; If file does not exist, make sure an error message is sent
4562 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4563 file))))
4564 (with-current-buffer buffer
4565 (with-syntax-table (org-search-syntax-table)
4566 (unless (derived-mode-p 'org-mode)
4567 (error "Agenda file %s is not in `org-mode'" file))
4568 (let ((case-fold-search t))
4569 (save-excursion
4570 (save-restriction
4571 (if (eq buffer org-agenda-restrict)
4572 (narrow-to-region org-agenda-restrict-begin
4573 org-agenda-restrict-end)
4574 (widen))
4575 (goto-char (point-min))
4576 (unless (or (org-at-heading-p)
4577 (outline-next-heading))
4578 (throw 'nextfile t))
4579 (goto-char (max (point-min) (1- (point))))
4580 (while (re-search-forward regexp nil t)
4581 (org-back-to-heading t)
4582 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4583 (> (org-reduced-level (org-outline-level))
4584 org-agenda-search-view-max-outline-level)
4585 (forward-line -1)
4586 (outline-back-to-heading t)))
4587 (skip-chars-forward "* ")
4588 (setq beg (point-at-bol)
4589 beg1 (point)
4590 end (progn
4591 (outline-next-heading)
4592 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4593 (> (org-reduced-level (org-outline-level))
4594 org-agenda-search-view-max-outline-level)
4595 (forward-line 1)
4596 (outline-next-heading)))
4597 (point)))
4599 (catch :skip
4600 (goto-char beg)
4601 (org-agenda-skip)
4602 (setq str (buffer-substring-no-properties
4603 (point-at-bol)
4604 (if hdl-only (point-at-eol) end)))
4605 (mapc (lambda (wr) (when (string-match wr str)
4606 (goto-char (1- end))
4607 (throw :skip t)))
4608 regexps-)
4609 (mapc (lambda (wr) (unless (string-match wr str)
4610 (goto-char (1- end))
4611 (throw :skip t)))
4612 (if todo-only
4613 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
4614 regexps+)
4615 regexps+))
4616 (goto-char beg)
4617 (setq marker (org-agenda-new-marker (point))
4618 category (org-get-category)
4619 level (make-string (org-reduced-level (org-outline-level)) ? )
4620 inherited-tags
4621 (or (eq org-agenda-show-inherited-tags 'always)
4622 (and (listp org-agenda-show-inherited-tags)
4623 (memq 'todo org-agenda-show-inherited-tags))
4624 (and (eq org-agenda-show-inherited-tags t)
4625 (or (eq org-agenda-use-tag-inheritance t)
4626 (memq 'todo org-agenda-use-tag-inheritance))))
4627 tags (org-get-tags-at nil (not inherited-tags))
4628 txt (org-agenda-format-item
4630 (buffer-substring-no-properties
4631 beg1 (point-at-eol))
4632 level category tags t))
4633 (org-add-props txt props
4634 'org-marker marker 'org-hd-marker marker
4635 'org-todo-regexp org-todo-regexp
4636 'level level
4637 'org-complex-heading-regexp org-complex-heading-regexp
4638 'priority 1000
4639 'type "search")
4640 (push txt ee)
4641 (goto-char (1- end))))))))))
4642 (setq rtn (nreverse ee))
4643 (setq rtnall (append rtnall rtn)))
4644 (if org-agenda-overriding-header
4645 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4646 nil 'face 'org-agenda-structure) "\n")
4647 (insert "Search words: ")
4648 (add-text-properties (point-min) (1- (point))
4649 (list 'face 'org-agenda-structure))
4650 (setq pos (point))
4651 (insert string "\n")
4652 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4653 (setq pos (point))
4654 (unless org-agenda-multi
4655 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
4656 (add-text-properties pos (1- (point))
4657 (list 'face 'org-agenda-structure))))
4658 (org-agenda-mark-header-line (point-min))
4659 (when rtnall
4660 (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
4661 (goto-char (point-min))
4662 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4663 (add-text-properties (point-min) (point-max)
4664 `(org-agenda-type search
4665 org-last-args (,todo-only ,string ,edit-at)
4666 org-redo-cmd ,org-agenda-redo-command
4667 org-series-cmd ,org-cmd))
4668 (org-agenda-finalize)
4669 (setq buffer-read-only t))))
4671 ;;; Agenda TODO list
4673 (defun org-agenda-propertize-selected-todo-keywords (keywords)
4674 "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
4675 (concat
4676 (if (or (equal keywords "ALL") (not keywords))
4677 (propertize "ALL" 'face 'warning)
4678 (mapconcat
4679 (lambda (kw)
4680 (propertize kw 'face (org-get-todo-face kw)))
4681 (org-split-string keywords "|")
4682 "|"))
4683 "\n"))
4685 (defvar org-select-this-todo-keyword nil)
4686 (defvar org-last-arg nil)
4688 ;;;###autoload
4689 (defun org-todo-list (&optional arg)
4690 "Show all (not done) TODO entries from all agenda file in a single list.
4691 The prefix arg can be used to select a specific TODO keyword and limit
4692 the list to these. When using \\[universal-argument], you will be prompted
4693 for a keyword. A numeric prefix directly selects the Nth keyword in
4694 `org-todo-keywords-1'."
4695 (interactive "P")
4696 (if org-agenda-overriding-arguments
4697 (setq arg org-agenda-overriding-arguments))
4698 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4699 (let* ((today (org-today))
4700 (date (calendar-gregorian-from-absolute today))
4701 (kwds org-todo-keywords-for-agenda)
4702 (completion-ignore-case t)
4703 (org-select-this-todo-keyword
4704 (if (stringp arg) arg
4705 (and arg (integerp arg) (> arg 0)
4706 (nth (1- arg) kwds))))
4707 rtn rtnall files file pos)
4708 (when (equal arg '(4))
4709 (setq org-select-this-todo-keyword
4710 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4711 (mapcar 'list kwds) nil nil)))
4712 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4713 (catch 'exit
4714 (if org-agenda-sticky
4715 (setq org-agenda-buffer-name
4716 (if (stringp org-select-this-todo-keyword)
4717 (format "*Org Agenda(%s:%s)*" (or org-keys "t")
4718 org-select-this-todo-keyword)
4719 (format "*Org Agenda(%s)*" (or org-keys "t")))))
4720 (org-agenda-prepare "TODO")
4721 (org-compile-prefix-format 'todo)
4722 (org-set-sorting-strategy 'todo)
4723 (setq org-agenda-redo-command
4724 `(org-todo-list (or (and (numberp current-prefix-arg)
4725 current-prefix-arg)
4726 ,org-select-this-todo-keyword
4727 current-prefix-arg ,arg)))
4728 (setq files (org-agenda-files nil 'ifmode)
4729 rtnall nil)
4730 (while (setq file (pop files))
4731 (catch 'nextfile
4732 (org-check-agenda-file file)
4733 (setq rtn (org-agenda-get-day-entries file date :todo))
4734 (setq rtnall (append rtnall rtn))))
4735 (if org-agenda-overriding-header
4736 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4737 nil 'face 'org-agenda-structure) "\n")
4738 (insert "Global list of TODO items of type: ")
4739 (add-text-properties (point-min) (1- (point))
4740 (list 'face 'org-agenda-structure
4741 'short-heading
4742 (concat "ToDo: "
4743 (or org-select-this-todo-keyword "ALL"))))
4744 (org-agenda-mark-header-line (point-min))
4745 (insert (org-agenda-propertize-selected-todo-keywords
4746 org-select-this-todo-keyword))
4747 (setq pos (point))
4748 (unless org-agenda-multi
4749 (insert "Available with `N r': (0)[ALL]")
4750 (let ((n 0) s)
4751 (mapc (lambda (x)
4752 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4753 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4754 (insert "\n "))
4755 (insert " " s))
4756 kwds))
4757 (insert "\n"))
4758 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4759 (org-agenda-mark-header-line (point-min))
4760 (when rtnall
4761 (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
4762 (goto-char (point-min))
4763 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4764 (add-text-properties (point-min) (point-max)
4765 `(org-agenda-type todo
4766 org-last-args ,arg
4767 org-redo-cmd ,org-agenda-redo-command
4768 org-series-cmd ,org-cmd))
4769 (org-agenda-finalize)
4770 (setq buffer-read-only t))))
4772 ;;; Agenda tags match
4774 ;;;###autoload
4775 (defun org-tags-view (&optional todo-only match)
4776 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4777 The prefix arg TODO-ONLY limits the search to TODO entries."
4778 (interactive "P")
4779 (if org-agenda-overriding-arguments
4780 (setq todo-only (car org-agenda-overriding-arguments)
4781 match (nth 1 org-agenda-overriding-arguments)))
4782 (let* ((org-tags-match-list-sublevels
4783 org-tags-match-list-sublevels)
4784 (completion-ignore-case t)
4785 rtn rtnall files file pos matcher
4786 buffer)
4787 (when (and (stringp match) (not (string-match "\\S-" match)))
4788 (setq match nil))
4789 (catch 'exit
4790 (if org-agenda-sticky
4791 (setq org-agenda-buffer-name
4792 (if (stringp match)
4793 (format "*Org Agenda(%s:%s)*"
4794 (or org-keys (or (and todo-only "M") "m")) match)
4795 (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
4796 ;; Prepare agendas (and `org-tag-alist-for-agenda') before
4797 ;; expanding tags within `org-make-tags-matcher'
4798 (org-agenda-prepare (concat "TAGS " match))
4799 (setq matcher (org-make-tags-matcher match)
4800 match (car matcher) matcher (cdr matcher))
4801 (org-compile-prefix-format 'tags)
4802 (org-set-sorting-strategy 'tags)
4803 (setq org-agenda-query-string match)
4804 (setq org-agenda-redo-command
4805 (list 'org-tags-view `(quote ,todo-only)
4806 (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
4807 (setq files (org-agenda-files nil 'ifmode)
4808 rtnall nil)
4809 (while (setq file (pop files))
4810 (catch 'nextfile
4811 (org-check-agenda-file file)
4812 (setq buffer (if (file-exists-p file)
4813 (org-get-agenda-file-buffer file)
4814 (error "No such file %s" file)))
4815 (if (not buffer)
4816 ;; If file does not exist, error message to agenda
4817 (setq rtn (list
4818 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4819 rtnall (append rtnall rtn))
4820 (with-current-buffer buffer
4821 (unless (derived-mode-p 'org-mode)
4822 (error "Agenda file %s is not in `org-mode'" file))
4823 (save-excursion
4824 (save-restriction
4825 (if (eq buffer org-agenda-restrict)
4826 (narrow-to-region org-agenda-restrict-begin
4827 org-agenda-restrict-end)
4828 (widen))
4829 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4830 (setq rtnall (append rtnall rtn))))))))
4831 (if org-agenda-overriding-header
4832 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4833 nil 'face 'org-agenda-structure) "\n")
4834 (insert "Headlines with TAGS match: ")
4835 (add-text-properties (point-min) (1- (point))
4836 (list 'face 'org-agenda-structure
4837 'short-heading
4838 (concat "Match: " match)))
4839 (setq pos (point))
4840 (insert match "\n")
4841 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4842 (setq pos (point))
4843 (unless org-agenda-multi
4844 (insert "Press `C-u r' to search again with new search string\n"))
4845 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4846 (org-agenda-mark-header-line (point-min))
4847 (when rtnall
4848 (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
4849 (goto-char (point-min))
4850 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4851 (add-text-properties (point-min) (point-max)
4852 `(org-agenda-type tags
4853 org-last-args (,todo-only ,match)
4854 org-redo-cmd ,org-agenda-redo-command
4855 org-series-cmd ,org-cmd))
4856 (org-agenda-finalize)
4857 (setq buffer-read-only t))))
4859 ;;; Agenda Finding stuck projects
4861 (defvar org-agenda-skip-regexp nil
4862 "Regular expression used in skipping subtrees for the agenda.
4863 This is basically a temporary global variable that can be set and then
4864 used by user-defined selections using `org-agenda-skip-function'.")
4866 (defvar org-agenda-overriding-header nil
4867 "When set during agenda, todo and tags searches it replaces the header.
4868 This variable should not be set directly, but custom commands can bind it
4869 in the options section.")
4871 (defun org-agenda-skip-entry-when-regexp-matches ()
4872 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4873 If yes, it returns the end position of this entry, causing agenda commands
4874 to skip the entry but continuing the search in the subtree. This is a
4875 function that can be put into `org-agenda-skip-function' for the duration
4876 of a command."
4877 (let ((end (save-excursion (org-end-of-subtree t)))
4878 skip)
4879 (save-excursion
4880 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4881 (and skip end)))
4883 (defun org-agenda-skip-subtree-when-regexp-matches ()
4884 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4885 If yes, it returns the end position of this tree, causing agenda commands
4886 to skip this subtree. This is a function that can be put into
4887 `org-agenda-skip-function' for the duration of a command."
4888 (let ((end (save-excursion (org-end-of-subtree t)))
4889 skip)
4890 (save-excursion
4891 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4892 (and skip end)))
4894 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4895 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4896 If yes, it returns the end position of the current entry (NOT the tree),
4897 causing agenda commands to skip the entry but continuing the search in
4898 the subtree. This is a function that can be put into
4899 `org-agenda-skip-function' for the duration of a command. An important
4900 use of this function is for the stuck project list."
4901 (let ((end (save-excursion (org-end-of-subtree t)))
4902 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4903 skip)
4904 (save-excursion
4905 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4906 (and skip entry-end)))
4908 (defun org-agenda-skip-entry-if (&rest conditions)
4909 "Skip entry if any of CONDITIONS is true.
4910 See `org-agenda-skip-if' for details."
4911 (org-agenda-skip-if nil conditions))
4913 (defun org-agenda-skip-subtree-if (&rest conditions)
4914 "Skip subtree if any of CONDITIONS is true.
4915 See `org-agenda-skip-if' for details."
4916 (org-agenda-skip-if t conditions))
4918 (defun org-agenda-skip-if (subtree conditions)
4919 "Checks current entity for CONDITIONS.
4920 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4921 the entry (i.e. the text before the next heading) is checked.
4923 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4924 from different tests. Valid conditions are:
4926 scheduled Check if there is a scheduled cookie
4927 notscheduled Check if there is no scheduled cookie
4928 deadline Check if there is a deadline
4929 notdeadline Check if there is no deadline
4930 timestamp Check if there is a timestamp (also deadline or scheduled)
4931 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4932 regexp Check if regexp matches
4933 notregexp Check if regexp does not match.
4934 todo Check if TODO keyword matches
4935 nottodo Check if TODO keyword does not match
4937 The regexp is taken from the conditions list, it must come right after
4938 the `regexp' or `notregexp' element.
4940 `todo' and `nottodo' accept as an argument a list of todo
4941 keywords, which may include \"*\" to match any todo keyword.
4943 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4945 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4947 Instead of a list, a keyword class may be given. For example:
4949 (org-agenda-skip-entry-if 'nottodo 'done)
4951 would skip entries that haven't been marked with any of \"DONE\"
4952 keywords. Possible classes are: `todo', `done', `any'.
4954 If any of these conditions is met, this function returns the end point of
4955 the entity, causing the search to continue from there. This is a function
4956 that can be put into `org-agenda-skip-function' for the duration of a command."
4957 (let (beg end m)
4958 (org-back-to-heading t)
4959 (setq beg (point)
4960 end (if subtree
4961 (progn (org-end-of-subtree t) (point))
4962 (progn (outline-next-heading) (1- (point)))))
4963 (goto-char beg)
4964 (and
4966 (and (memq 'scheduled conditions)
4967 (re-search-forward org-scheduled-time-regexp end t))
4968 (and (memq 'notscheduled conditions)
4969 (not (re-search-forward org-scheduled-time-regexp end t)))
4970 (and (memq 'deadline conditions)
4971 (re-search-forward org-deadline-time-regexp end t))
4972 (and (memq 'notdeadline conditions)
4973 (not (re-search-forward org-deadline-time-regexp end t)))
4974 (and (memq 'timestamp conditions)
4975 (re-search-forward org-ts-regexp end t))
4976 (and (memq 'nottimestamp conditions)
4977 (not (re-search-forward org-ts-regexp end t)))
4978 (and (setq m (memq 'regexp conditions))
4979 (stringp (nth 1 m))
4980 (re-search-forward (nth 1 m) end t))
4981 (and (setq m (memq 'notregexp conditions))
4982 (stringp (nth 1 m))
4983 (not (re-search-forward (nth 1 m) end t)))
4984 (and (or
4985 (setq m (memq 'nottodo conditions))
4986 (setq m (memq 'todo-unblocked conditions))
4987 (setq m (memq 'nottodo-unblocked conditions))
4988 (setq m (memq 'todo conditions)))
4989 (org-agenda-skip-if-todo m end)))
4990 end)))
4992 (defun org-agenda-skip-if-todo (args end)
4993 "Helper function for `org-agenda-skip-if', do not use it directly.
4994 ARGS is a list with first element either `todo', `nottodo',
4995 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
4996 a list of TODO keywords, or a state symbol `todo' or `done' or
4997 `any'."
4998 (let ((kw (car args))
4999 (arg (cadr args))
5000 todo-wds todo-re)
5001 (setq todo-wds
5002 (org-uniquify
5003 (cond
5004 ((listp arg) ;; list of keywords
5005 (if (member "*" arg)
5006 (mapcar 'substring-no-properties org-todo-keywords-1)
5007 arg))
5008 ((symbolp arg) ;; keyword class name
5009 (cond
5010 ((eq arg 'todo)
5011 (org-delete-all org-done-keywords
5012 (mapcar 'substring-no-properties
5013 org-todo-keywords-1)))
5014 ((eq arg 'done) org-done-keywords)
5015 ((eq arg 'any)
5016 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
5017 (setq todo-re
5018 (concat "^\\*+[ \t]+\\<\\("
5019 (mapconcat 'identity todo-wds "\\|")
5020 "\\)\\>"))
5021 (cond
5022 ((eq kw 'todo) (re-search-forward todo-re end t))
5023 ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
5024 ((eq kw 'todo-unblocked)
5025 (catch 'unblocked
5026 (while (re-search-forward todo-re end t)
5027 (or (org-entry-blocked-p) (throw 'unblocked t)))
5028 nil))
5029 ((eq kw 'nottodo-unblocked)
5030 (catch 'unblocked
5031 (while (re-search-forward todo-re end t)
5032 (or (org-entry-blocked-p) (throw 'unblocked nil)))
5036 ;;;###autoload
5037 (defun org-agenda-list-stuck-projects (&rest ignore)
5038 "Create agenda view for projects that are stuck.
5039 Stuck projects are project that have no next actions. For the definitions
5040 of what a project is and how to check if it stuck, customize the variable
5041 `org-stuck-projects'."
5042 (interactive)
5043 (let* ((org-agenda-skip-function
5044 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
5045 ;; We could have used org-agenda-skip-if here.
5046 (org-agenda-overriding-header
5047 (or org-agenda-overriding-header "List of stuck projects: "))
5048 (matcher (nth 0 org-stuck-projects))
5049 (todo (nth 1 org-stuck-projects))
5050 (todo-wds (if (member "*" todo)
5051 (progn
5052 (org-agenda-prepare-buffers (org-agenda-files
5053 nil 'ifmode))
5054 (org-delete-all
5055 org-done-keywords-for-agenda
5056 (copy-sequence org-todo-keywords-for-agenda)))
5057 todo))
5058 (todo-re (concat "^\\*+[ \t]+\\("
5059 (mapconcat 'identity todo-wds "\\|")
5060 "\\)\\>"))
5061 (tags (nth 2 org-stuck-projects))
5062 (tags-re (if (member "*" tags)
5063 (concat org-outline-regexp-bol
5064 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
5065 (if tags
5066 (concat org-outline-regexp-bol
5067 ".*:\\("
5068 (mapconcat 'identity tags "\\|")
5069 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
5070 (gen-re (nth 3 org-stuck-projects))
5071 (re-list
5072 (delq nil
5073 (list
5074 (if todo todo-re)
5075 (if tags tags-re)
5076 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
5077 gen-re)))))
5078 (setq org-agenda-skip-regexp
5079 (if re-list
5080 (mapconcat 'identity re-list "\\|")
5081 (error "No information how to identify unstuck projects")))
5082 (org-tags-view nil matcher)
5083 (setq org-agenda-buffer-name (buffer-name))
5084 (with-current-buffer org-agenda-buffer-name
5085 (setq org-agenda-redo-command
5086 `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
5088 ;;; Diary integration
5090 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
5091 (defvar diary-list-entries-hook)
5092 (defvar diary-time-regexp)
5093 (defun org-get-entries-from-diary (date)
5094 "Get the (Emacs Calendar) diary entries for DATE."
5095 (require 'diary-lib)
5096 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
5097 (diary-display-hook '(fancy-diary-display))
5098 (diary-display-function 'fancy-diary-display)
5099 (pop-up-frames nil)
5100 (diary-list-entries-hook
5101 (cons 'org-diary-default-entry diary-list-entries-hook))
5102 (diary-file-name-prefix nil) ; turn this feature off
5103 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
5104 entries
5105 (org-disable-agenda-to-diary t))
5106 (save-excursion
5107 (save-window-excursion
5108 (funcall (if (fboundp 'diary-list-entries)
5109 'diary-list-entries 'list-diary-entries)
5110 date 1)))
5111 (if (not (get-buffer diary-fancy-buffer))
5112 (setq entries nil)
5113 (with-current-buffer diary-fancy-buffer
5114 (setq buffer-read-only nil)
5115 (if (zerop (buffer-size))
5116 ;; No entries
5117 (setq entries nil)
5118 ;; Omit the date and other unnecessary stuff
5119 (org-agenda-cleanup-fancy-diary)
5120 ;; Add prefix to each line and extend the text properties
5121 (if (zerop (buffer-size))
5122 (setq entries nil)
5123 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
5124 (setq entries
5125 (with-temp-buffer
5126 (insert entries) (goto-char (point-min))
5127 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
5128 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
5129 (replace-match (concat "; " (match-string 1)))))
5130 (buffer-string)))))
5131 (set-buffer-modified-p nil)
5132 (kill-buffer diary-fancy-buffer)))
5133 (when entries
5134 (setq entries (org-split-string entries "\n"))
5135 (setq entries
5136 (mapcar
5137 (lambda (x)
5138 (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
5139 ;; Extend the text properties to the beginning of the line
5140 (org-add-props x (text-properties-at (1- (length x)) x)
5141 'type "diary" 'date date 'face 'org-agenda-diary))
5142 entries)))))
5144 (defvar org-agenda-cleanup-fancy-diary-hook nil
5145 "Hook run when the fancy diary buffer is cleaned up.")
5147 (defun org-agenda-cleanup-fancy-diary ()
5148 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
5149 This gets rid of the date, the underline under the date, and
5150 the dummy entry installed by `org-mode' to ensure non-empty diary for each
5151 date. It also removes lines that contain only whitespace."
5152 (goto-char (point-min))
5153 (if (looking-at ".*?:[ \t]*")
5154 (progn
5155 (replace-match "")
5156 (re-search-forward "\n=+$" nil t)
5157 (replace-match "")
5158 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
5159 (re-search-forward "\n=+$" nil t)
5160 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
5161 (goto-char (point-min))
5162 (while (re-search-forward "^ +\n" nil t)
5163 (replace-match ""))
5164 (goto-char (point-min))
5165 (if (re-search-forward "^Org-mode dummy\n?" nil t)
5166 (replace-match ""))
5167 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
5169 ;; Make sure entries from the diary have the right text properties.
5170 (eval-after-load "diary-lib"
5171 '(if (boundp 'diary-modify-entry-list-string-function)
5172 ;; We can rely on the hook, nothing to do
5174 ;; Hook not available, must use advice to make this work
5175 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
5176 "Make the position visible."
5177 (if (and org-disable-agenda-to-diary ;; called from org-agenda
5178 (stringp string)
5179 buffer-file-name)
5180 (setq string (org-modify-diary-entry-string string))))))
5182 (defun org-modify-diary-entry-string (string)
5183 "Add text properties to string, allowing org-mode to act on it."
5184 (org-add-props string nil
5185 'mouse-face 'highlight
5186 'help-echo (if buffer-file-name
5187 (format "mouse-2 or RET jump to diary file %s"
5188 (abbreviate-file-name buffer-file-name))
5190 'org-agenda-diary-link t
5191 'org-marker (org-agenda-new-marker (point-at-bol))))
5193 (defun org-diary-default-entry ()
5194 "Add a dummy entry to the diary.
5195 Needed to avoid empty dates which mess up holiday display."
5196 ;; Catch the error if dealing with the new add-to-diary-alist
5197 (when org-disable-agenda-to-diary
5198 (condition-case nil
5199 (org-add-to-diary-list original-date "Org-mode dummy" "")
5200 (error
5201 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
5203 (defun org-add-to-diary-list (&rest args)
5204 (if (fboundp 'diary-add-to-list)
5205 (apply 'diary-add-to-list args)
5206 (apply 'add-to-diary-list args)))
5208 (defvar org-diary-last-run-time nil)
5210 ;;;###autoload
5211 (defun org-diary (&rest args)
5212 "Return diary information from org files.
5213 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
5214 It accesses org files and extracts information from those files to be
5215 listed in the diary. The function accepts arguments specifying what
5216 items should be listed. For a list of arguments allowed here, see the
5217 variable `org-agenda-entry-types'.
5219 The call in the diary file should look like this:
5221 &%%(org-diary) ~/path/to/some/orgfile.org
5223 Use a separate line for each org file to check. Or, if you omit the file name,
5224 all files listed in `org-agenda-files' will be checked automatically:
5226 &%%(org-diary)
5228 If you don't give any arguments (as in the example above), the default value
5229 of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
5230 So the example above may also be written as
5232 &%%(org-diary :deadline :timestamp :sexp :scheduled)
5234 The function expects the lisp variables `entry' and `date' to be provided
5235 by the caller, because this is how the calendar works. Don't use this
5236 function from a program - use `org-agenda-get-day-entries' instead."
5237 (when (> (- (org-float-time)
5238 org-agenda-last-marker-time)
5240 ;; I am not sure if this works with sticky agendas, because the marker
5241 ;; list is then no longer a global variable.
5242 (org-agenda-reset-markers))
5243 (org-compile-prefix-format 'agenda)
5244 (org-set-sorting-strategy 'agenda)
5245 (setq args (or args org-agenda-entry-types))
5246 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
5247 (list entry)
5248 (org-agenda-files t)))
5249 (time (org-float-time))
5250 file rtn results)
5251 (when (or (not org-diary-last-run-time)
5252 (> (- time
5253 org-diary-last-run-time)
5255 (org-agenda-prepare-buffers files))
5256 (setq org-diary-last-run-time time)
5257 ;; If this is called during org-agenda, don't return any entries to
5258 ;; the calendar. Org Agenda will list these entries itself.
5259 (if org-disable-agenda-to-diary (setq files nil))
5260 (while (setq file (pop files))
5261 (setq rtn (apply 'org-agenda-get-day-entries file date args))
5262 (setq results (append results rtn)))
5263 (when results
5264 (setq results
5265 (mapcar (lambda (i) (replace-regexp-in-string
5266 org-bracket-link-regexp "\\3" i)) results))
5267 (concat (org-agenda-finalize-entries results) "\n"))))
5269 ;;; Agenda entry finders
5271 (defun org-agenda-get-day-entries (file date &rest args)
5272 "Does the work for `org-diary' and `org-agenda'.
5273 FILE is the path to a file to be checked for entries. DATE is date like
5274 the one returned by `calendar-current-date'. ARGS are symbols indicating
5275 which kind of entries should be extracted. For details about these, see
5276 the documentation of `org-diary'."
5277 (setq args (or args org-agenda-entry-types))
5278 (let* ((org-startup-folded nil)
5279 (org-startup-align-all-tables nil)
5280 (buffer (if (file-exists-p file)
5281 (org-get-agenda-file-buffer file)
5282 (error "No such file %s" file)))
5283 arg results rtn deadline-results)
5284 (if (not buffer)
5285 ;; If file does not exist, make sure an error message ends up in diary
5286 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
5287 (with-current-buffer buffer
5288 (unless (derived-mode-p 'org-mode)
5289 (error "Agenda file %s is not in `org-mode'" file))
5290 (setq org-agenda-buffer (or org-agenda-buffer buffer))
5291 (let ((case-fold-search nil))
5292 (save-excursion
5293 (save-restriction
5294 (if (eq buffer org-agenda-restrict)
5295 (narrow-to-region org-agenda-restrict-begin
5296 org-agenda-restrict-end)
5297 (widen))
5298 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
5299 (while (setq arg (pop args))
5300 (cond
5301 ((and (eq arg :todo)
5302 (equal date (calendar-gregorian-from-absolute
5303 (org-today))))
5304 (setq rtn (org-agenda-get-todos))
5305 (setq results (append results rtn)))
5306 ((eq arg :timestamp)
5307 (setq rtn (org-agenda-get-blocks))
5308 (setq results (append results rtn))
5309 (setq rtn (org-agenda-get-timestamps deadline-results))
5310 (setq results (append results rtn)))
5311 ((eq arg :sexp)
5312 (setq rtn (org-agenda-get-sexps))
5313 (setq results (append results rtn)))
5314 ((eq arg :scheduled)
5315 (setq rtn (org-agenda-get-scheduled deadline-results))
5316 (setq results (append results rtn)))
5317 ((eq arg :scheduled*)
5318 (setq rtn (org-agenda-get-scheduled deadline-results t))
5319 (setq results (append results rtn)))
5320 ((eq arg :closed)
5321 (setq rtn (org-agenda-get-progress))
5322 (setq results (append results rtn)))
5323 ((eq arg :deadline)
5324 (setq rtn (org-agenda-get-deadlines))
5325 (setq deadline-results (copy-sequence rtn))
5326 (setq results (append results rtn)))
5327 ((eq arg :deadline*)
5328 (setq rtn (org-agenda-get-deadlines t))
5329 (setq deadline-results (copy-sequence rtn))
5330 (setq results (append results rtn))))))))
5331 results))))
5333 (defsubst org-em (x y list)
5334 "Is X or Y a member of LIST?"
5335 (or (memq x list) (memq y list)))
5337 (defvar org-heading-keyword-regexp-format) ; defined in org.el
5338 (defvar org-agenda-sorting-strategy-selected nil)
5340 (defun org-agenda-get-todos ()
5341 "Return the TODO information for agenda display."
5342 (let* ((props (list 'face nil
5343 'done-face 'org-agenda-done
5344 'org-not-done-regexp org-not-done-regexp
5345 'org-todo-regexp org-todo-regexp
5346 'org-complex-heading-regexp org-complex-heading-regexp
5347 'mouse-face 'highlight
5348 'help-echo
5349 (format "mouse-2 or RET jump to org file %s"
5350 (abbreviate-file-name buffer-file-name))))
5351 (regexp (format org-heading-keyword-regexp-format
5352 (cond
5353 ((and org-select-this-todo-keyword
5354 (equal org-select-this-todo-keyword "*"))
5355 org-todo-regexp)
5356 (org-select-this-todo-keyword
5357 (concat "\\("
5358 (mapconcat 'identity
5359 (org-split-string
5360 org-select-this-todo-keyword
5361 "|")
5362 "\\|") "\\)"))
5363 (t org-not-done-regexp))))
5364 marker priority category level tags todo-state ts-date ts-date-type
5365 ee txt beg end inherited-tags todo-state-end-pos)
5366 (goto-char (point-min))
5367 (while (re-search-forward regexp nil t)
5368 (catch :skip
5369 (save-match-data
5370 (beginning-of-line)
5371 (org-agenda-skip)
5372 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
5373 (unless (and (setq todo-state (org-get-todo-state))
5374 (setq todo-state-end-pos (match-end 2)))
5375 (goto-char end)
5376 (throw :skip nil))
5377 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
5378 (goto-char (1+ beg))
5379 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
5380 (throw :skip nil)))
5381 (goto-char (match-beginning 2))
5382 (setq marker (org-agenda-new-marker (match-beginning 0))
5383 category (org-get-category)
5384 ts-date (let (ts)
5385 (save-match-data
5386 (cond ((org-em 'scheduled-up 'scheduled-down
5387 org-agenda-sorting-strategy-selected)
5388 (setq ts (org-entry-get (point) "SCHEDULED")
5389 ts-date-type " scheduled"))
5390 ((org-em 'deadline-up 'deadline-down
5391 org-agenda-sorting-strategy-selected)
5392 (setq ts (org-entry-get (point) "DEADLINE")
5393 ts-date-type " deadline"))
5394 ((org-em 'ts-up 'ts-down
5395 org-agenda-sorting-strategy-selected)
5396 (setq ts (org-entry-get (point) "TIMESTAMP")
5397 ts-date-type " timestamp"))
5398 ((org-em 'tsia-up 'tsia-down
5399 org-agenda-sorting-strategy-selected)
5400 (setq ts (org-entry-get (point) "TIMESTAMP_IA")
5401 ts-date-type " timestamp_ia"))
5402 ((org-em 'timestamp-up 'timestamp-down
5403 org-agenda-sorting-strategy-selected)
5404 (setq ts (or (org-entry-get (point) "SCHEDULED")
5405 (org-entry-get (point) "DEADLINE")
5406 (org-entry-get (point) "TIMESTAMP")
5407 (org-entry-get (point) "TIMESTAMP_IA"))
5408 ts-date-type ""))
5409 (t (setq ts-date-type "")))
5410 (when ts (ignore-errors (org-time-string-to-absolute ts)))))
5411 txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
5412 inherited-tags
5413 (or (eq org-agenda-show-inherited-tags 'always)
5414 (and (listp org-agenda-show-inherited-tags)
5415 (memq 'todo org-agenda-show-inherited-tags))
5416 (and (eq org-agenda-show-inherited-tags t)
5417 (or (eq org-agenda-use-tag-inheritance t)
5418 (memq 'todo org-agenda-use-tag-inheritance))))
5419 tags (org-get-tags-at nil (not inherited-tags))
5420 level (make-string (org-reduced-level (org-outline-level)) ? )
5421 txt (org-agenda-format-item "" txt level category tags t)
5422 priority (1+ (org-get-priority txt)))
5423 (org-add-props txt props
5424 'org-marker marker 'org-hd-marker marker
5425 'priority priority
5426 'level level
5427 'ts-date ts-date
5428 'type (concat "todo" ts-date-type) 'todo-state todo-state)
5429 (push txt ee)
5430 (if org-agenda-todo-list-sublevels
5431 (goto-char todo-state-end-pos)
5432 (org-end-of-subtree 'invisible))))
5433 (nreverse ee)))
5435 (defun org-agenda-todo-custom-ignore-p (time n)
5436 "Check whether timestamp is farther away than n number of days.
5437 This function is invoked if `org-agenda-todo-ignore-deadlines',
5438 `org-agenda-todo-ignore-scheduled' or
5439 `org-agenda-todo-ignore-timestamp' is set to an integer."
5440 (let ((days (org-time-stamp-to-now
5441 time org-agenda-todo-ignore-time-comparison-use-seconds)))
5442 (if (>= n 0)
5443 (>= days n)
5444 (<= days n))))
5446 ;;;###autoload
5447 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
5448 (&optional end)
5449 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
5450 (when (or org-agenda-todo-ignore-with-date
5451 org-agenda-todo-ignore-scheduled
5452 org-agenda-todo-ignore-deadlines
5453 org-agenda-todo-ignore-timestamp)
5454 (setq end (or end (save-excursion (outline-next-heading) (point))))
5455 (save-excursion
5456 (or (and org-agenda-todo-ignore-with-date
5457 (re-search-forward org-ts-regexp end t))
5458 (and org-agenda-todo-ignore-scheduled
5459 (re-search-forward org-scheduled-time-regexp end t)
5460 (cond
5461 ((eq org-agenda-todo-ignore-scheduled 'future)
5462 (> (org-time-stamp-to-now
5463 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5464 ((eq org-agenda-todo-ignore-scheduled 'past)
5465 (<= (org-time-stamp-to-now
5466 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5467 ((numberp org-agenda-todo-ignore-scheduled)
5468 (org-agenda-todo-custom-ignore-p
5469 (match-string 1) org-agenda-todo-ignore-scheduled))
5470 (t)))
5471 (and org-agenda-todo-ignore-deadlines
5472 (re-search-forward org-deadline-time-regexp end t)
5473 (cond
5474 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
5475 ((eq org-agenda-todo-ignore-deadlines 'far)
5476 (not (org-deadline-close (match-string 1))))
5477 ((eq org-agenda-todo-ignore-deadlines 'future)
5478 (> (org-time-stamp-to-now
5479 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5480 ((eq org-agenda-todo-ignore-deadlines 'past)
5481 (<= (org-time-stamp-to-now
5482 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5483 ((numberp org-agenda-todo-ignore-deadlines)
5484 (org-agenda-todo-custom-ignore-p
5485 (match-string 1) org-agenda-todo-ignore-deadlines))
5486 (t (org-deadline-close (match-string 1)))))
5487 (and org-agenda-todo-ignore-timestamp
5488 (let ((buffer (current-buffer))
5489 (regexp
5490 (concat
5491 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
5492 (start (point)))
5493 ;; Copy current buffer into a temporary one
5494 (with-temp-buffer
5495 (insert-buffer-substring buffer start end)
5496 (goto-char (point-min))
5497 ;; Delete SCHEDULED and DEADLINE items
5498 (while (re-search-forward regexp end t)
5499 (delete-region (match-beginning 0) (match-end 0)))
5500 (goto-char (point-min))
5501 ;; No search for timestamp left
5502 (when (re-search-forward org-ts-regexp nil t)
5503 (cond
5504 ((eq org-agenda-todo-ignore-timestamp 'future)
5505 (> (org-time-stamp-to-now
5506 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5507 ((eq org-agenda-todo-ignore-timestamp 'past)
5508 (<= (org-time-stamp-to-now
5509 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5510 ((numberp org-agenda-todo-ignore-timestamp)
5511 (org-agenda-todo-custom-ignore-p
5512 (match-string 1) org-agenda-todo-ignore-timestamp))
5513 (t))))))))))
5515 (defun org-agenda-get-timestamps (&optional deadline-results)
5516 "Return the date stamp information for agenda display."
5517 (let* ((props (list 'face 'org-agenda-calendar-event
5518 'org-not-done-regexp org-not-done-regexp
5519 'org-todo-regexp org-todo-regexp
5520 'org-complex-heading-regexp org-complex-heading-regexp
5521 'mouse-face 'highlight
5522 'help-echo
5523 (format "mouse-2 or RET jump to org file %s"
5524 (abbreviate-file-name buffer-file-name))))
5525 (d1 (calendar-absolute-from-gregorian date))
5527 (deadline-position-alist
5528 (mapcar (lambda (a) (and (setq mm (get-text-property
5529 0 'org-hd-marker a))
5530 (cons (marker-position mm) a)))
5531 deadline-results))
5532 (remove-re org-ts-regexp)
5533 (regexp
5534 (concat
5535 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5536 (regexp-quote
5537 (substring
5538 (format-time-string
5539 (car org-time-stamp-formats)
5540 (apply 'encode-time ; DATE bound by calendar
5541 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5542 1 11))
5543 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5544 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5545 marker hdmarker deadlinep scheduledp clockp closedp inactivep
5546 donep tmp priority category level ee txt timestr tags
5547 b0 b3 e3 head todo-state end-of-match show-all warntime habitp
5548 inherited-tags ts-date)
5549 (goto-char (point-min))
5550 (while (setq end-of-match (re-search-forward regexp nil t))
5551 (setq b0 (match-beginning 0)
5552 b3 (match-beginning 3) e3 (match-end 3)
5553 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
5554 habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
5555 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5556 (member todo-state
5557 org-agenda-repeating-timestamp-show-all)))
5558 (catch :skip
5559 (and (org-at-date-range-p) (throw :skip nil))
5560 (org-agenda-skip)
5561 (if (and (match-end 1)
5562 (not (= d1 (org-time-string-to-absolute
5563 (match-string 1) d1 nil show-all
5564 (current-buffer) b0))))
5565 (throw :skip nil))
5566 (if (and e3
5567 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
5568 (throw :skip nil))
5569 (setq tmp (buffer-substring (max (point-min)
5570 (- b0 org-ds-keyword-length))
5572 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
5573 inactivep (= (char-after b0) ?\[)
5574 deadlinep (string-match org-deadline-regexp tmp)
5575 scheduledp (string-match org-scheduled-regexp tmp)
5576 closedp (and org-agenda-include-inactive-timestamps
5577 (string-match org-closed-string tmp))
5578 clockp (and org-agenda-include-inactive-timestamps
5579 (or (string-match org-clock-string tmp)
5580 (string-match "]-+\\'" tmp)))
5581 warntime (get-text-property (point) 'org-appt-warntime)
5582 donep (member todo-state org-done-keywords))
5583 (if (or scheduledp deadlinep closedp clockp
5584 (and donep org-agenda-skip-timestamp-if-done))
5585 (throw :skip t))
5586 (if (string-match ">" timestr)
5587 ;; substring should only run to end of time stamp
5588 (setq timestr (substring timestr 0 (match-end 0))))
5589 (setq marker (org-agenda-new-marker b0)
5590 category (org-get-category b0))
5591 (save-excursion
5592 (if (not (re-search-backward org-outline-regexp-bol nil t))
5593 (throw :skip nil)
5594 (goto-char (match-beginning 0))
5595 (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
5596 (assoc (point) deadline-position-alist))
5597 (throw :skip nil))
5598 (setq hdmarker (org-agenda-new-marker)
5599 inherited-tags
5600 (or (eq org-agenda-show-inherited-tags 'always)
5601 (and (listp org-agenda-show-inherited-tags)
5602 (memq 'agenda org-agenda-show-inherited-tags))
5603 (and (eq org-agenda-show-inherited-tags t)
5604 (or (eq org-agenda-use-tag-inheritance t)
5605 (memq 'agenda org-agenda-use-tag-inheritance))))
5606 tags (org-get-tags-at nil (not inherited-tags))
5607 level (make-string (org-reduced-level (org-outline-level)) ? ))
5608 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5609 (setq head (or (match-string 1) ""))
5610 (setq txt (org-agenda-format-item
5611 (if inactivep org-agenda-inactive-leader nil)
5612 head level category tags timestr
5613 remove-re habitp)))
5614 (setq priority (org-get-priority txt))
5615 (org-add-props txt props 'priority priority
5616 'org-marker marker 'org-hd-marker hdmarker
5617 'date date
5618 'level level
5619 'ts-date
5620 (ignore-errors (org-time-string-to-absolute timestr))
5621 'todo-state todo-state
5622 'warntime warntime
5623 'type "timestamp")
5624 (push txt ee))
5625 (if org-agenda-skip-additional-timestamps-same-entry
5626 (outline-next-heading)
5627 (goto-char end-of-match))))
5628 (nreverse ee)))
5630 (defun org-agenda-get-sexps ()
5631 "Return the sexp information for agenda display."
5632 (require 'diary-lib)
5633 (let* ((props (list 'face 'org-agenda-calendar-sexp
5634 'mouse-face 'highlight
5635 'help-echo
5636 (format "mouse-2 or RET jump to org file %s"
5637 (abbreviate-file-name buffer-file-name))))
5638 (regexp "^&?%%(")
5639 marker category extra level ee txt tags entry
5640 result beg b sexp sexp-entry todo-state warntime inherited-tags)
5641 (goto-char (point-min))
5642 (while (re-search-forward regexp nil t)
5643 (catch :skip
5644 (org-agenda-skip)
5645 (setq beg (match-beginning 0))
5646 (goto-char (1- (match-end 0)))
5647 (setq b (point))
5648 (forward-sexp 1)
5649 (setq sexp (buffer-substring b (point)))
5650 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5651 (org-trim (match-string 1))
5652 ""))
5653 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5654 (when result
5655 (setq marker (org-agenda-new-marker beg)
5656 level (make-string (org-reduced-level (org-outline-level)) ? )
5657 category (org-get-category beg)
5658 inherited-tags
5659 (or (eq org-agenda-show-inherited-tags 'always)
5660 (and (listp org-agenda-show-inherited-tags)
5661 (memq 'agenda org-agenda-show-inherited-tags))
5662 (and (eq org-agenda-show-inherited-tags t)
5663 (or (eq org-agenda-use-tag-inheritance t)
5664 (memq 'agenda org-agenda-use-tag-inheritance))))
5665 tags (org-get-tags-at nil (not inherited-tags))
5666 todo-state (org-get-todo-state)
5667 warntime (get-text-property (point) 'org-appt-warntime)
5668 extra nil)
5670 (dolist (r (if (stringp result)
5671 (list result)
5672 result)) ;; we expect a list here
5673 (when (and org-agenda-diary-sexp-prefix
5674 (string-match org-agenda-diary-sexp-prefix r))
5675 (setq extra (match-string 0 r)
5676 r (replace-match "" nil nil r)))
5677 (if (string-match "\\S-" r)
5678 (setq txt r)
5679 (setq txt "SEXP entry returned empty string"))
5680 (setq txt (org-agenda-format-item extra txt level category tags 'time))
5681 (org-add-props txt props 'org-marker marker
5682 'date date 'todo-state todo-state
5683 'tags tags 'level level
5684 'type "sexp" 'warntime warntime)
5685 (push txt ee)))))
5686 (nreverse ee)))
5688 ;; Calendar sanity: define some functions that are independent of
5689 ;; `calendar-date-style'.
5690 ;; Normally I would like to use ISO format when calling the diary functions,
5691 ;; but to make sure we still have Emacs 22 compatibility we bind
5692 ;; also `european-calendar-style' and use european format
5693 (defun org-anniversary (year month day &optional mark)
5694 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5695 (org-no-warnings
5696 (let ((calendar-date-style 'european) (european-calendar-style t))
5697 (diary-anniversary day month year mark))))
5698 (defun org-cyclic (N year month day &optional mark)
5699 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5700 (org-no-warnings
5701 (let ((calendar-date-style 'european) (european-calendar-style t))
5702 (diary-cyclic N day month year mark))))
5703 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5704 "Like `diary-block', but with fixed (ISO) order of arguments."
5705 (org-no-warnings
5706 (let ((calendar-date-style 'european) (european-calendar-style t))
5707 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
5708 (defun org-date (year month day &optional mark)
5709 "Like `diary-date', but with fixed (ISO) order of arguments."
5710 (org-no-warnings
5711 (let ((calendar-date-style 'european) (european-calendar-style t))
5712 (diary-date day month year mark))))
5714 ;; Define the` org-class' function
5715 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5716 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5717 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5718 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5719 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5720 `holidays', then any date that is known by the Emacs calendar to be a
5721 holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
5722 then those holidays will be skipped."
5723 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5724 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5725 (d (calendar-absolute-from-gregorian date))
5726 (h (when skip-weeks (calendar-check-holidays date))))
5727 (and
5728 (<= date1 d)
5729 (<= d date2)
5730 (= (calendar-day-of-week date) dayname)
5731 (or (not skip-weeks)
5732 (progn
5733 (require 'cal-iso)
5734 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5735 (not (or (and h (memq 'holidays skip-weeks))
5736 (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
5737 entry)))
5739 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
5740 "Like `org-class', but honor `calendar-date-style'.
5741 The order of the first 2 times 3 arguments depends on the variable
5742 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
5743 So for American calendars, give this as MONTH DAY YEAR, for European as
5744 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
5745 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
5746 is any number of ISO weeks in the block period for which the item should
5747 be skipped.
5749 This function is here only for backward compatibility and it is deprecated,
5750 please use `org-class' instead."
5751 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
5752 (date2 (org-order-calendar-date-args m2 d2 y2)))
5753 (org-class
5754 (nth 2 date1) (car date1) (nth 1 date1)
5755 (nth 2 date2) (car date2) (nth 1 date2)
5756 dayname skip-weeks)))
5757 (make-obsolete 'org-diary-class 'org-class "")
5759 (defalias 'org-get-closed 'org-agenda-get-progress)
5760 (defun org-agenda-get-progress ()
5761 "Return the logged TODO entries for agenda display."
5762 (let* ((props (list 'mouse-face 'highlight
5763 'org-not-done-regexp org-not-done-regexp
5764 'org-todo-regexp org-todo-regexp
5765 'org-complex-heading-regexp org-complex-heading-regexp
5766 'help-echo
5767 (format "mouse-2 or RET jump to org file %s"
5768 (abbreviate-file-name buffer-file-name))))
5769 (items (if (consp org-agenda-show-log-scoped)
5770 org-agenda-show-log-scoped
5771 (if (eq org-agenda-show-log-scoped 'clockcheck)
5772 '(clock)
5773 org-agenda-log-mode-items)))
5774 (parts
5775 (delq nil
5776 (list
5777 (if (memq 'closed items) (concat "\\<" org-closed-string))
5778 (if (memq 'clock items) (concat "\\<" org-clock-string))
5779 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
5780 (parts-re (if parts (mapconcat 'identity parts "\\|")
5781 (error "`org-agenda-log-mode-items' is empty")))
5782 (regexp (concat
5783 "\\(" parts-re "\\)"
5784 " *\\["
5785 (regexp-quote
5786 (substring
5787 (format-time-string
5788 (car org-time-stamp-formats)
5789 (apply 'encode-time ; DATE bound by calendar
5790 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5791 1 11))))
5792 (org-agenda-search-headline-for-time nil)
5793 marker hdmarker priority category level tags closedp
5794 statep clockp state ee txt extra timestr rest clocked inherited-tags)
5795 (goto-char (point-min))
5796 (while (re-search-forward regexp nil t)
5797 (catch :skip
5798 (org-agenda-skip)
5799 (setq marker (org-agenda-new-marker (match-beginning 0))
5800 closedp (equal (match-string 1) org-closed-string)
5801 statep (equal (string-to-char (match-string 1)) ?-)
5802 clockp (not (or closedp statep))
5803 state (and statep (match-string 2))
5804 category (org-get-category (match-beginning 0))
5805 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5806 (when (string-match "\\]" timestr)
5807 ;; substring should only run to end of time stamp
5808 (setq rest (substring timestr (match-end 0))
5809 timestr (substring timestr 0 (match-end 0)))
5810 (if (and (not closedp) (not statep)
5811 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5812 rest))
5813 (progn (setq timestr (concat (substring timestr 0 -1)
5814 "-" (match-string 1 rest) "]"))
5815 (setq clocked (match-string 2 rest)))
5816 (setq clocked "-")))
5817 (save-excursion
5818 (setq extra
5819 (cond
5820 ((not org-agenda-log-mode-add-notes) nil)
5821 (statep
5822 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5823 (match-string 1)))
5824 (clockp
5825 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5826 (match-string 1)))))
5827 (if (not (re-search-backward org-outline-regexp-bol nil t))
5828 (throw :skip nil)
5829 (goto-char (match-beginning 0))
5830 (setq hdmarker (org-agenda-new-marker)
5831 inherited-tags
5832 (or (eq org-agenda-show-inherited-tags 'always)
5833 (and (listp org-agenda-show-inherited-tags)
5834 (memq 'todo org-agenda-show-inherited-tags))
5835 (and (eq org-agenda-show-inherited-tags t)
5836 (or (eq org-agenda-use-tag-inheritance t)
5837 (memq 'todo org-agenda-use-tag-inheritance))))
5838 tags (org-get-tags-at nil (not inherited-tags))
5839 level (make-string (org-reduced-level (org-outline-level)) ? ))
5840 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5841 (setq txt (match-string 1))
5842 (when extra
5843 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5844 (setq txt (concat (substring txt 0 (match-beginning 1))
5845 " - " extra " " (match-string 2 txt)))
5846 (setq txt (concat txt " - " extra))))
5847 (setq txt (org-agenda-format-item
5848 (cond
5849 (closedp "Closed: ")
5850 (statep (concat "State: (" state ")"))
5851 (t (concat "Clocked: (" clocked ")")))
5852 txt level category tags timestr)))
5853 (setq priority 100000)
5854 (org-add-props txt props
5855 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5856 'priority priority 'level level
5857 'type "closed" 'date date
5858 'undone-face 'org-warning 'done-face 'org-agenda-done)
5859 (push txt ee))
5860 (goto-char (point-at-eol))))
5861 (nreverse ee)))
5863 (defun org-agenda-show-clocking-issues ()
5864 "Add overlays, showing issues with clocking.
5865 See also the user option `org-agenda-clock-consistency-checks'."
5866 (interactive)
5867 (let* ((org-time-clocksum-use-effort-durations nil)
5868 (pl org-agenda-clock-consistency-checks)
5869 (re (concat "^[ \t]*"
5870 org-clock-string
5871 "[ \t]+"
5872 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5873 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5874 (tlstart 0.)
5875 (tlend 0.)
5876 (maxtime (org-hh:mm-string-to-minutes
5877 (or (plist-get pl :max-duration) "24:00")))
5878 (mintime (org-hh:mm-string-to-minutes
5879 (or (plist-get pl :min-duration) 0)))
5880 (maxgap (org-hh:mm-string-to-minutes
5881 ;; default 30:00 means never complain
5882 (or (plist-get pl :max-gap) "30:00")))
5883 (gapok (mapcar 'org-hh:mm-string-to-minutes
5884 (plist-get pl :gap-ok-around)))
5885 (def-face (or (plist-get pl :default-face)
5886 '((:background "DarkRed") (:foreground "white"))))
5887 issue face m te ts dt ov)
5888 (goto-char (point-min))
5889 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5890 (setq issue nil face def-face)
5891 (catch 'next
5892 (setq m (org-get-at-bol 'org-marker)
5893 te nil ts nil)
5894 (unless (and m (markerp m))
5895 (setq issue "No valid clock line") (throw 'next t))
5896 (org-with-point-at m
5897 (save-excursion
5898 (goto-char (point-at-bol))
5899 (unless (looking-at re)
5900 (error "No valid Clock line")
5901 (throw 'next t))
5902 (unless (match-end 3)
5903 (setq issue "No end time"
5904 face (or (plist-get pl :no-end-time-face) face))
5905 (throw 'next t))
5906 (setq ts (match-string 1)
5907 te (match-string 3)
5908 ts (org-float-time
5909 (apply 'encode-time (org-parse-time-string ts)))
5910 te (org-float-time
5911 (apply 'encode-time (org-parse-time-string te)))
5912 dt (- te ts))))
5913 (cond
5914 ((> dt (* 60 maxtime))
5915 ;; a very long clocking chunk
5916 (setq issue (format "Clocking interval is very long: %s"
5917 (org-minutes-to-clocksum-string
5918 (floor (/ (float dt) 60.))))
5919 face (or (plist-get pl :long-face) face)))
5920 ((< dt (* 60 mintime))
5921 ;; a very short clocking chunk
5922 (setq issue (format "Clocking interval is very short: %s"
5923 (org-minutes-to-clocksum-string
5924 (floor (/ (float dt) 60.))))
5925 face (or (plist-get pl :short-face) face)))
5926 ((and (> tlend 0) (< ts tlend))
5927 ;; Two clock entries are overlapping
5928 (setq issue (format "Clocking overlap: %d minutes"
5929 (/ (- tlend ts) 60))
5930 face (or (plist-get pl :overlap-face) face)))
5931 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5932 ;; There is a gap, lets see if we need to report it
5933 (unless (org-agenda-check-clock-gap tlend ts gapok)
5934 (setq issue (format "Clocking gap: %d minutes"
5935 (/ (- ts tlend) 60))
5936 face (or (plist-get pl :gap-face) face))))
5937 (t nil)))
5938 (setq tlend (or te tlend) tlstart (or ts tlstart))
5939 (when issue
5940 ;; OK, there was some issue, add an overlay to show the issue
5941 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5942 (overlay-put ov 'before-string
5943 (concat
5944 (org-add-props
5945 (format "%-43s" (concat " " issue))
5947 'face face)
5948 "\n"))
5949 (overlay-put ov 'evaporate t)))))
5951 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5952 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5953 (catch 'exit
5954 (unless ok-list
5955 ;; there are no OK times for gaps...
5956 (throw 'exit nil))
5957 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5958 ;; This is more than 24 hours, so it is OK.
5959 ;; because we have at least one OK time, that must be in the
5960 ;; 24 hour interval.
5961 (throw 'exit t))
5962 ;; We have a shorter gap.
5963 ;; Now we have to get the minute of the day when these times are
5964 (let* ((t1dec (decode-time (seconds-to-time t1)))
5965 (t2dec (decode-time (seconds-to-time t2)))
5966 ;; compute the minute on the day
5967 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5968 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5969 (when (< min2 min1)
5970 ;; if min2 is smaller than min1, this means it is on the next day.
5971 ;; Wrap it to after midnight.
5972 (setq min2 (+ min2 1440)))
5973 ;; Now check if any of the OK times is in the gap
5974 (mapc (lambda (x)
5975 ;; Wrap the time to after midnight if necessary
5976 (if (< x min1) (setq x (+ x 1440)))
5977 ;; Check if in interval
5978 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5979 ok-list)
5980 ;; Nope, this gap is not OK
5981 nil)))
5983 (defun org-agenda-get-deadlines (&optional with-hour)
5984 "Return the deadline information for agenda display.
5985 When WITH-HOUR is non-nil, only return deadlines with an hour
5986 specification like [h]h:mm."
5987 (let* ((props (list 'mouse-face 'highlight
5988 'org-not-done-regexp org-not-done-regexp
5989 'org-todo-regexp org-todo-regexp
5990 'org-complex-heading-regexp org-complex-heading-regexp
5991 'help-echo
5992 (format "mouse-2 or RET jump to org file %s"
5993 (abbreviate-file-name buffer-file-name))))
5994 (regexp (if with-hour
5995 org-deadline-time-hour-regexp
5996 org-deadline-time-regexp))
5997 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
5998 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
5999 (dl0 (car org-agenda-deadline-leaders))
6000 (dl1 (nth 1 org-agenda-deadline-leaders))
6001 (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
6002 d2 diff dfrac wdays pos pos1 category level
6003 tags suppress-prewarning ee txt head face s todo-state
6004 show-all upcomingp donep timestr warntime inherited-tags ts-date)
6005 (goto-char (point-min))
6006 (while (re-search-forward regexp nil t)
6007 (catch :skip
6008 (org-agenda-skip)
6009 (setq s (match-string 1)
6010 txt nil
6011 pos (1- (match-beginning 1))
6012 todo-state (save-match-data (org-get-todo-state))
6013 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6014 (member todo-state
6015 org-agenda-repeating-timestamp-show-all))
6016 d2 (org-time-string-to-absolute
6017 s d1 'past show-all (current-buffer) pos)
6018 diff (- d2 d1))
6019 (setq suppress-prewarning
6020 (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
6021 (let ((item (buffer-substring (point-at-bol)
6022 (point-at-eol))))
6023 (save-match-data
6024 (and (string-match
6025 org-scheduled-time-regexp item)
6026 (match-string 1 item)))))))
6027 (cond
6028 ((not ds) nil)
6029 ;; The current item has a scheduled date (in ds), so
6030 ;; evaluate its prewarning lead time.
6031 ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
6032 ;; Use global prewarning-restart lead time.
6033 org-agenda-skip-deadline-prewarning-if-scheduled)
6034 ((eq org-agenda-skip-deadline-prewarning-if-scheduled
6035 'pre-scheduled)
6036 ;; Set prewarning to no earlier than scheduled.
6037 (min (- d2 (org-time-string-to-absolute
6038 ds d1 'past show-all (current-buffer) pos))
6039 org-deadline-warning-days))
6040 ;; Set prewarning to deadline.
6041 (t 0))))
6042 (setq wdays (if suppress-prewarning
6043 (let ((org-deadline-warning-days suppress-prewarning))
6044 (org-get-wdays s))
6045 (org-get-wdays s))
6046 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
6047 upcomingp (and todayp (> diff 0)))
6048 ;; When to show a deadline in the calendar:
6049 ;; If the expiration is within wdays warning time.
6050 ;; Past-due deadlines are only shown on the current date
6051 (if (and (or (and (<= diff wdays)
6052 (and todayp (not org-agenda-only-exact-dates)))
6053 (= diff 0)))
6054 (save-excursion
6055 ;; (setq todo-state (org-get-todo-state))
6056 (setq donep (member todo-state org-done-keywords))
6057 (if (and donep
6058 (or org-agenda-skip-deadline-if-done
6059 (not (= diff 0))))
6060 (setq txt nil)
6061 (setq category (org-get-category)
6062 warntime (get-text-property (point) 'org-appt-warntime))
6063 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6064 (throw :skip nil)
6065 (goto-char (match-end 0))
6066 (setq pos1 (match-beginning 0))
6067 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6068 (setq inherited-tags
6069 (or (eq org-agenda-show-inherited-tags 'always)
6070 (and (listp org-agenda-show-inherited-tags)
6071 (memq 'agenda org-agenda-show-inherited-tags))
6072 (and (eq org-agenda-show-inherited-tags t)
6073 (or (eq org-agenda-use-tag-inheritance t)
6074 (memq 'agenda org-agenda-use-tag-inheritance))))
6075 tags (org-get-tags-at pos1 (not inherited-tags)))
6076 (setq head (buffer-substring
6077 (point)
6078 (progn (skip-chars-forward "^\r\n")
6079 (point))))
6080 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6081 (setq timestr
6082 (concat (substring s (match-beginning 1)) " "))
6083 (setq timestr 'time))
6084 (setq txt (org-agenda-format-item
6085 (cond ((= diff 0) dl0)
6086 ((> diff 0)
6087 (if (functionp dl1)
6088 (funcall dl1 diff date)
6089 (format dl1 diff)))
6091 (if (functionp dl2)
6092 (funcall dl2 diff date)
6093 (format dl2 (if (string= dl2 dl1)
6094 diff (abs diff))))))
6095 head level category tags
6096 (if (not (= diff 0)) nil timestr)))))
6097 (when txt
6098 (setq face (org-agenda-deadline-face dfrac))
6099 (org-add-props txt props
6100 'org-marker (org-agenda-new-marker pos)
6101 'warntime warntime
6102 'level level
6103 'ts-date d2
6104 'org-hd-marker (org-agenda-new-marker pos1)
6105 'priority (+ (- diff)
6106 (org-get-priority txt))
6107 'todo-state todo-state
6108 'type (if upcomingp "upcoming-deadline" "deadline")
6109 'date (if upcomingp date d2)
6110 'face (if donep 'org-agenda-done face)
6111 'undone-face face 'done-face 'org-agenda-done)
6112 (push txt ee))))))
6113 (nreverse ee)))
6115 (defun org-agenda-deadline-face (fraction)
6116 "Return the face to displaying a deadline item.
6117 FRACTION is what fraction of the head-warning time has passed."
6118 (let ((faces org-agenda-deadline-faces) f)
6119 (catch 'exit
6120 (while (setq f (pop faces))
6121 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
6123 (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
6124 "Return the scheduled information for agenda display.
6125 When WITH-HOUR is non-nil, only return scheduled items with
6126 an hour specification like [h]h:mm."
6127 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
6128 'org-todo-regexp org-todo-regexp
6129 'org-complex-heading-regexp org-complex-heading-regexp
6130 'done-face 'org-agenda-done
6131 'mouse-face 'highlight
6132 'help-echo
6133 (format "mouse-2 or RET jump to org file %s"
6134 (abbreviate-file-name buffer-file-name))))
6135 (regexp (if with-hour
6136 org-scheduled-time-hour-regexp
6137 org-scheduled-time-regexp))
6138 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6139 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6141 (deadline-position-alist
6142 (mapcar (lambda (a) (and (setq mm (get-text-property
6143 0 'org-hd-marker a))
6144 (cons (marker-position mm) a)))
6145 deadline-results))
6146 d2 diff pos pos1 category level tags donep
6147 ee txt head pastschedp todo-state face timestr s habitp show-all
6148 did-habit-check-p warntime inherited-tags ts-date suppress-delay
6149 ddays)
6150 (goto-char (point-min))
6151 (while (re-search-forward regexp nil t)
6152 (catch :skip
6153 (org-agenda-skip)
6154 (setq s (match-string 1)
6155 txt nil
6156 pos (1- (match-beginning 1))
6157 todo-state (save-match-data (org-get-todo-state))
6158 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6159 (member todo-state
6160 org-agenda-repeating-timestamp-show-all))
6161 d2 (org-time-string-to-absolute
6162 s d1 'past show-all (current-buffer) pos)
6163 diff (- d2 d1)
6164 warntime (get-text-property (point) 'org-appt-warntime))
6165 (setq pastschedp (and todayp (< diff 0)))
6166 (setq did-habit-check-p nil)
6167 (setq suppress-delay
6168 (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
6169 (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
6170 (save-match-data
6171 (and (string-match
6172 org-deadline-time-regexp item)
6173 (match-string 1 item)))))))
6174 (cond
6175 ((not ds) nil)
6176 ;; The current item has a deadline date (in ds), so
6177 ;; evaluate its delay time.
6178 ((integerp org-agenda-skip-scheduled-delay-if-deadline)
6179 ;; Use global delay time.
6180 (- org-agenda-skip-scheduled-delay-if-deadline))
6181 ((eq org-agenda-skip-scheduled-delay-if-deadline
6182 'post-deadline)
6183 ;; Set delay to no later than deadline.
6184 (min (- d2 (org-time-string-to-absolute
6185 ds d1 'past show-all (current-buffer) pos))
6186 org-scheduled-delay-days))
6187 (t 0))))
6188 (setq ddays (if suppress-delay
6189 (let ((org-scheduled-delay-days suppress-delay))
6190 (org-get-wdays s t t))
6191 (org-get-wdays s t)))
6192 ;; Use a delay of 0 when there is a repeater and the delay is
6193 ;; of the form --3d
6194 (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
6195 (< (org-time-string-to-absolute s)
6196 (org-time-string-to-absolute
6197 s d2 'past nil (current-buffer) pos)))
6198 (setq ddays 0))
6199 ;; When to show a scheduled item in the calendar:
6200 ;; If it is on or past the date.
6201 (when (or (and (> ddays 0) (= diff (- ddays)))
6202 (and (zerop ddays) (= diff 0))
6203 (and (< (+ diff ddays) 0)
6204 (< (abs diff) org-scheduled-past-days)
6205 (and todayp (not org-agenda-only-exact-dates)))
6206 ;; org-is-habit-p uses org-entry-get, which is expansive
6207 ;; so we go extra mile to only call it once
6208 (and todayp
6209 (boundp 'org-habit-show-all-today)
6210 org-habit-show-all-today
6211 (setq did-habit-check-p t)
6212 (setq habitp (and (functionp 'org-is-habit-p)
6213 (org-is-habit-p)))))
6214 (save-excursion
6215 (setq donep (member todo-state org-done-keywords))
6216 (if (and donep
6217 (or org-agenda-skip-scheduled-if-done
6218 (not (= diff 0))
6219 (and (functionp 'org-is-habit-p)
6220 (org-is-habit-p))))
6221 (setq txt nil)
6222 (setq habitp (if did-habit-check-p habitp
6223 (and (functionp 'org-is-habit-p)
6224 (org-is-habit-p))))
6225 (setq category (org-get-category))
6226 (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
6227 'repeated-after-deadline)
6228 (org-get-deadline-time (point))
6229 (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
6230 (throw :skip nil))
6231 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6232 (throw :skip nil)
6233 (goto-char (match-end 0))
6234 (setq pos1 (match-beginning 0))
6235 (if habitp
6236 (if (or (not org-habit-show-habits)
6237 (and (not todayp)
6238 (boundp 'org-habit-show-habits-only-for-today)
6239 org-habit-show-habits-only-for-today))
6240 (throw :skip nil))
6241 (if (and
6242 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
6243 (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
6244 pastschedp))
6245 (setq mm (assoc pos1 deadline-position-alist)))
6246 (throw :skip nil)))
6247 (setq inherited-tags
6248 (or (eq org-agenda-show-inherited-tags 'always)
6249 (and (listp org-agenda-show-inherited-tags)
6250 (memq 'agenda org-agenda-show-inherited-tags))
6251 (and (eq org-agenda-show-inherited-tags t)
6252 (or (eq org-agenda-use-tag-inheritance t)
6253 (memq 'agenda org-agenda-use-tag-inheritance))))
6255 tags (org-get-tags-at nil (not inherited-tags)))
6256 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6257 (setq head (buffer-substring
6258 (point)
6259 (progn (skip-chars-forward "^\r\n") (point))))
6260 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6261 (setq timestr
6262 (concat (substring s (match-beginning 1)) " "))
6263 (setq timestr 'time))
6264 (setq txt (org-agenda-format-item
6265 (if (= diff 0)
6266 (car org-agenda-scheduled-leaders)
6267 (format (nth 1 org-agenda-scheduled-leaders)
6268 (- 1 diff)))
6269 head level category tags
6270 (if (not (= diff 0)) nil timestr)
6271 nil habitp))))
6272 (when txt
6273 (setq face
6274 (cond
6275 ((and (not habitp) pastschedp)
6276 'org-scheduled-previously)
6277 (todayp 'org-scheduled-today)
6278 (t 'org-scheduled))
6279 habitp (and habitp (org-habit-parse-todo)))
6280 (org-add-props txt props
6281 'undone-face face
6282 'face (if donep 'org-agenda-done face)
6283 'org-marker (org-agenda-new-marker pos)
6284 'org-hd-marker (org-agenda-new-marker pos1)
6285 'type (if pastschedp "past-scheduled" "scheduled")
6286 'date (if pastschedp d2 date)
6287 'ts-date d2
6288 'warntime warntime
6289 'level level
6290 'priority (if habitp
6291 (org-habit-get-priority habitp)
6292 (+ 94 (- 5 diff) (org-get-priority txt)))
6293 'org-habit-p habitp
6294 'todo-state todo-state)
6295 (push txt ee))))))
6296 (nreverse ee)))
6298 (defun org-agenda-get-blocks ()
6299 "Return the date-range information for agenda display."
6300 (let* ((props (list 'face nil
6301 'org-not-done-regexp org-not-done-regexp
6302 'org-todo-regexp org-todo-regexp
6303 'org-complex-heading-regexp org-complex-heading-regexp
6304 'mouse-face 'highlight
6305 'help-echo
6306 (format "mouse-2 or RET jump to org file %s"
6307 (abbreviate-file-name buffer-file-name))))
6308 (regexp org-tr-regexp)
6309 (d0 (calendar-absolute-from-gregorian date))
6310 marker hdmarker ee txt d1 d2 s1 s2 category
6311 level todo-state tags pos head donep inherited-tags)
6312 (goto-char (point-min))
6313 (while (re-search-forward regexp nil t)
6314 (catch :skip
6315 (org-agenda-skip)
6316 (setq pos (point))
6317 (let ((start-time (match-string 1))
6318 (end-time (match-string 2)))
6319 (setq s1 (match-string 1)
6320 s2 (match-string 2)
6321 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
6322 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
6323 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
6324 ;; Only allow days between the limits, because the normal
6325 ;; date stamps will catch the limits.
6326 (save-excursion
6327 (setq todo-state (org-get-todo-state))
6328 (setq donep (member todo-state org-done-keywords))
6329 (if (and donep org-agenda-skip-timestamp-if-done)
6330 (throw :skip t))
6331 (setq marker (org-agenda-new-marker (point))
6332 category (org-get-category))
6333 (if (not (re-search-backward org-outline-regexp-bol nil t))
6334 (throw :skip nil)
6335 (goto-char (match-beginning 0))
6336 (setq hdmarker (org-agenda-new-marker (point))
6337 inherited-tags
6338 (or (eq org-agenda-show-inherited-tags 'always)
6339 (and (listp org-agenda-show-inherited-tags)
6340 (memq 'agenda org-agenda-show-inherited-tags))
6341 (and (eq org-agenda-show-inherited-tags t)
6342 (or (eq org-agenda-use-tag-inheritance t)
6343 (memq 'agenda org-agenda-use-tag-inheritance))))
6345 tags (org-get-tags-at nil (not inherited-tags)))
6346 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6347 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
6348 (setq head (match-string 1))
6349 (let ((remove-re
6350 (if org-agenda-remove-timeranges-from-blocks
6351 (concat
6352 "<" (regexp-quote s1) ".*?>"
6353 "--"
6354 "<" (regexp-quote s2) ".*?>")
6355 nil)))
6356 (setq txt (org-agenda-format-item
6357 (format
6358 (nth (if (= d1 d2) 0 1)
6359 org-agenda-timerange-leaders)
6360 (1+ (- d0 d1)) (1+ (- d2 d1)))
6361 head level category tags
6362 (cond ((and (= d1 d0) (= d2 d0))
6363 (concat "<" start-time ">--<" end-time ">"))
6364 ((= d1 d0)
6365 (concat "<" start-time ">"))
6366 ((= d2 d0)
6367 (concat "<" end-time ">")))
6368 remove-re))))
6369 (org-add-props txt props
6370 'org-marker marker 'org-hd-marker hdmarker
6371 'type "block" 'date date
6372 'level level
6373 'todo-state todo-state
6374 'priority (org-get-priority txt))
6375 (push txt ee))))
6376 (goto-char pos)))
6377 ;; Sort the entries by expiration date.
6378 (nreverse ee)))
6380 ;;; Agenda presentation and sorting
6382 (defvar org-prefix-has-time nil
6383 "A flag, set by `org-compile-prefix-format'.
6384 The flag is set if the currently compiled format contains a `%t'.")
6385 (defvar org-prefix-has-tag nil
6386 "A flag, set by `org-compile-prefix-format'.
6387 The flag is set if the currently compiled format contains a `%T'.")
6388 (defvar org-prefix-has-effort nil
6389 "A flag, set by `org-compile-prefix-format'.
6390 The flag is set if the currently compiled format contains a `%e'.")
6391 (defvar org-prefix-has-breadcrumbs nil
6392 "A flag, set by `org-compile-prefix-format'.
6393 The flag is set if the currently compiled format contains a `%b'.")
6394 (defvar org-prefix-category-length nil
6395 "Used by `org-compile-prefix-format' to remember the category field width.")
6396 (defvar org-prefix-category-max-length nil
6397 "Used by `org-compile-prefix-format' to remember the category field width.")
6399 (defun org-agenda-get-category-icon (category)
6400 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
6401 (dolist (entry org-agenda-category-icon-alist)
6402 (when (org-string-match-p (car entry) category)
6403 (if (listp (cadr entry))
6404 (return (cadr entry))
6405 (return (apply 'create-image (cdr entry)))))))
6407 (defun org-agenda-format-item (extra txt &optional level category tags dotime
6408 remove-re habitp)
6409 "Format TXT to be inserted into the agenda buffer.
6410 In particular, add the prefix and corresponding text properties.
6412 EXTRA must be a string to replace the `%s' specifier in the prefix format.
6413 LEVEL may be a string to replace the `%l' specifier.
6414 CATEGORY (a string, a symbol or nil) may be used to overrule the default
6415 category taken from local variable or file name. It will replace the `%c'
6416 specifier in the format.
6417 DOTIME, when non-nil, indicates that a time-of-day should be extracted from
6418 TXT for sorting of this entry, and for the `%t' specifier in the format.
6419 When DOTIME is a string, this string is searched for a time before TXT is.
6420 TAGS can be the tags of the headline.
6421 Any match of REMOVE-RE will be removed from TXT."
6422 ;; We keep the org-prefix-* variable values along with a compiled
6423 ;; formatter, so that multiple agendas existing at the same time do
6424 ;; not step on each other toes.
6426 ;; It was inconvenient to make these variables buffer local in
6427 ;; Agenda buffers, because this function expects to be called with
6428 ;; the buffer where item comes from being current, and not agenda
6429 ;; buffer
6430 (let* ((bindings (car org-prefix-format-compiled))
6431 (formatter (cadr org-prefix-format-compiled)))
6432 (loop for (var value) in bindings
6433 do (set var value))
6434 (save-match-data
6435 ;; Diary entries sometimes have extra whitespace at the beginning
6436 (setq txt (org-trim txt))
6438 ;; Fix the tags part in txt
6439 (setq txt (org-agenda-fix-displayed-tags
6440 txt tags
6441 org-agenda-show-inherited-tags
6442 org-agenda-hide-tags-regexp))
6444 (let* ((category (or category
6445 (if buffer-file-name
6446 (file-name-sans-extension
6447 (file-name-nondirectory buffer-file-name))
6448 "")))
6449 (category-icon (org-agenda-get-category-icon category))
6450 (category-icon (if category-icon
6451 (propertize " " 'display category-icon)
6452 ""))
6453 (effort (and (not (string= txt ""))
6454 (get-text-property 1 'effort txt)))
6455 ;; time, tag, effort are needed for the eval of the prefix format
6456 (tag (if tags (nth (1- (length tags)) tags) ""))
6457 time
6458 (ts (if dotime (concat
6459 (if (stringp dotime) dotime "")
6460 (and org-agenda-search-headline-for-time txt))))
6461 (time-of-day (and dotime (org-get-time-of-day ts)))
6462 stamp plain s0 s1 s2 rtn srp l
6463 duration breadcrumbs)
6464 (and (derived-mode-p 'org-mode) buffer-file-name
6465 (add-to-list 'org-agenda-contributing-files buffer-file-name))
6466 (when (and dotime time-of-day)
6467 ;; Extract starting and ending time and move them to prefix
6468 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
6469 (setq plain (string-match org-plain-time-of-day-regexp ts)))
6470 (setq s0 (match-string 0 ts)
6471 srp (and stamp (match-end 3))
6472 s1 (match-string (if plain 1 2) ts)
6473 s2 (match-string (if plain 8 (if srp 4 6)) ts))
6475 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
6476 ;; them, we might want to remove them there to avoid duplication.
6477 ;; The user can turn this off with a variable.
6478 (if (and org-prefix-has-time
6479 org-agenda-remove-times-when-in-prefix (or stamp plain)
6480 (string-match (concat (regexp-quote s0) " *") txt)
6481 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
6482 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
6483 (= (match-beginning 0) 0)
6485 (setq txt (replace-match "" nil nil txt))))
6486 ;; Normalize the time(s) to 24 hour
6487 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
6488 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
6490 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
6491 (let (org-time-clocksum-use-effort-durations)
6492 (when (and s1 (not s2) org-agenda-default-appointment-duration)
6493 (setq s2
6494 (org-minutes-to-clocksum-string
6495 (+ (org-hh:mm-string-to-minutes s1)
6496 org-agenda-default-appointment-duration)))))
6498 ;; Compute the duration
6499 (when s2
6500 (setq duration (- (org-hh:mm-string-to-minutes s2)
6501 (org-hh:mm-string-to-minutes s1)))))
6503 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
6504 txt)
6505 ;; Tags are in the string
6506 (if (or (eq org-agenda-remove-tags t)
6507 (and org-agenda-remove-tags
6508 org-prefix-has-tag))
6509 (setq txt (replace-match "" t t txt))
6510 (setq txt (replace-match
6511 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
6512 (match-string 2 txt))
6513 t t txt))))
6515 (when remove-re
6516 (while (string-match remove-re txt)
6517 (setq txt (replace-match "" t t txt))))
6519 ;; Set org-heading property on `txt' to mark the start of the
6520 ;; heading.
6521 (add-text-properties 0 (length txt) '(org-heading t) txt)
6523 ;; Prepare the variables needed in the eval of the compiled format
6524 (if org-prefix-has-breadcrumbs
6525 (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
6526 (let ((s (org-display-outline-path nil nil "->" t)))
6527 (if (eq "" s) "" (concat s "->"))))))
6528 (setq time (cond (s2 (concat
6529 (org-agenda-time-of-day-to-ampm-maybe s1)
6530 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
6531 (if org-agenda-timegrid-use-ampm " ")))
6532 (s1 (concat
6533 (org-agenda-time-of-day-to-ampm-maybe s1)
6534 (if org-agenda-timegrid-use-ampm
6535 "........ "
6536 "......")))
6537 (t ""))
6538 extra (or (and (not habitp) extra) "")
6539 category (if (symbolp category) (symbol-name category) category)
6540 level (or level ""))
6541 (if (string-match org-bracket-link-regexp category)
6542 (progn
6543 (setq l (if (match-end 3)
6544 (- (match-end 3) (match-beginning 3))
6545 (- (match-end 1) (match-beginning 1))))
6546 (when (< l (or org-prefix-category-length 0))
6547 (setq category (copy-sequence category))
6548 (org-add-props category nil
6549 'extra-space (make-string
6550 (- org-prefix-category-length l 1) ?\ ))))
6551 (if (and org-prefix-category-max-length
6552 (>= (length category) org-prefix-category-max-length))
6553 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
6554 ;; Evaluate the compiled format
6555 (setq rtn (concat (eval formatter) txt))
6557 ;; And finally add the text properties
6558 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
6559 (org-add-props rtn nil
6560 'org-category category
6561 'tags (mapcar 'org-downcase-keep-props tags)
6562 'org-highest-priority org-highest-priority
6563 'org-lowest-priority org-lowest-priority
6564 'time-of-day time-of-day
6565 'duration duration
6566 'breadcrumbs breadcrumbs
6567 'txt txt
6568 'level level
6569 'time time
6570 'extra extra
6571 'format org-prefix-format-compiled
6572 'dotime dotime)))))
6574 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
6575 "Remove tags string from TXT, and add a modified list of tags.
6576 The modified list may contain inherited tags, and tags matched by
6577 `org-agenda-hide-tags-regexp' will be removed."
6578 (when (or add-inherited hide-re)
6579 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
6580 (setq txt (substring txt 0 (match-beginning 0))))
6581 (setq tags
6582 (delq nil
6583 (mapcar (lambda (tg)
6584 (if (or (and hide-re (string-match hide-re tg))
6585 (and (not add-inherited)
6586 (get-text-property 0 'inherited tg)))
6588 tg))
6589 tags)))
6590 (when tags
6591 (let ((have-i (get-text-property 0 'inherited (car tags)))
6593 (setq txt (concat txt " :"
6594 (mapconcat
6595 (lambda (x)
6596 (setq i (get-text-property 0 'inherited x))
6597 (if (and have-i (not i))
6598 (progn
6599 (setq have-i nil)
6600 (concat ":" x))
6602 tags ":")
6603 (if have-i "::" ":"))))))
6604 txt)
6606 (defun org-downcase-keep-props (s)
6607 (let ((props (text-properties-at 0 s)))
6608 (setq s (downcase s))
6609 (add-text-properties 0 (length s) props s)
6612 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
6614 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
6615 "Add a time-grid for agenda items which need it.
6617 LIST is the list of agenda items formatted by `org-agenda-list'.
6618 NDAYS is the span of the current agenda view.
6619 TODAYP is `t' when the current agenda view is on today."
6620 (catch 'exit
6621 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
6622 ((and todayp (member 'today (car org-agenda-time-grid))))
6623 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
6624 ((member 'weekly (car org-agenda-time-grid)))
6625 (t (throw 'exit list)))
6626 (let* ((have (delq nil (mapcar
6627 (lambda (x) (get-text-property 1 'time-of-day x))
6628 list)))
6629 (string (nth 1 org-agenda-time-grid))
6630 (gridtimes (nth 2 org-agenda-time-grid))
6631 (req (car org-agenda-time-grid))
6632 (remove (member 'remove-match req))
6633 new time)
6634 (if (and (member 'require-timed req) (not have))
6635 ;; don't show empty grid
6636 (throw 'exit list))
6637 (while (setq time (pop gridtimes))
6638 (unless (and remove (member time have))
6639 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
6640 (push (org-agenda-format-item
6641 nil string nil "" nil
6642 (concat (substring time 0 -2) ":" (substring time -2)))
6643 new)
6644 (put-text-property
6645 2 (length (car new)) 'face 'org-time-grid (car new))))
6646 (when (and todayp org-agenda-show-current-time-in-grid)
6647 (push (org-agenda-format-item
6648 nil org-agenda-current-time-string nil "" nil
6649 (format-time-string "%H:%M "))
6650 new)
6651 (put-text-property
6652 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6654 (if (member 'time-up org-agenda-sorting-strategy-selected)
6655 (append new list)
6656 (append list new)))))
6658 (defun org-compile-prefix-format (key)
6659 "Compile the prefix format into a Lisp form that can be evaluated.
6660 The resulting form and associated variable bindings is returned
6661 and stored in the variable `org-prefix-format-compiled'."
6662 (setq org-prefix-has-time nil
6663 org-prefix-has-tag nil
6664 org-prefix-category-length nil
6665 org-prefix-has-effort nil
6666 org-prefix-has-breadcrumbs nil)
6667 (let ((s (cond
6668 ((stringp org-agenda-prefix-format)
6669 org-agenda-prefix-format)
6670 ((assq key org-agenda-prefix-format)
6671 (cdr (assq key org-agenda-prefix-format)))
6672 (t " %-12:c%?-12t% s")))
6673 (start 0)
6674 varform vars var e c f opt)
6675 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
6676 s start)
6677 (setq var (or (cdr (assoc (match-string 4 s)
6678 '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
6679 ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
6680 'eval)
6681 c (or (match-string 3 s) "")
6682 opt (match-beginning 1)
6683 start (1+ (match-beginning 0)))
6684 (if (equal var 'time) (setq org-prefix-has-time t))
6685 (if (equal var 'tag) (setq org-prefix-has-tag t))
6686 (if (equal var 'effort) (setq org-prefix-has-effort t))
6687 (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
6688 (setq f (concat "%" (match-string 2 s) "s"))
6689 (when (equal var 'category)
6690 (setq org-prefix-category-length
6691 (floor (abs (string-to-number (match-string 2 s)))))
6692 (setq org-prefix-category-max-length
6693 (let ((x (match-string 2 s)))
6694 (save-match-data
6695 (if (string-match "\\.[0-9]+" x)
6696 (string-to-number (substring (match-string 0 x) 1)))))))
6697 (if (eq var 'eval)
6698 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6699 (if opt
6700 (setq varform
6701 `(if (or (equal "" ,var) (equal nil ,var))
6703 (format ,f (concat ,var ,c))))
6704 (setq varform
6705 `(format ,f (if (or (equal ,var "")
6706 (equal ,var nil)) ""
6707 (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6708 (setq s (replace-match "%s" t nil s))
6709 (push varform vars))
6710 (setq vars (nreverse vars))
6711 (with-current-buffer (or org-agenda-buffer (current-buffer))
6712 (setq org-prefix-format-compiled
6713 (list
6714 `((org-prefix-has-time ,org-prefix-has-time)
6715 (org-prefix-has-tag ,org-prefix-has-tag)
6716 (org-prefix-category-length ,org-prefix-category-length)
6717 (org-prefix-has-effort ,org-prefix-has-effort)
6718 (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
6719 `(format ,s ,@vars))))))
6721 (defun org-set-sorting-strategy (key)
6722 (if (symbolp (car org-agenda-sorting-strategy))
6723 ;; the old format
6724 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6725 (setq org-agenda-sorting-strategy-selected
6726 (or (cdr (assq key org-agenda-sorting-strategy))
6727 (cdr (assq 'agenda org-agenda-sorting-strategy))
6728 '(time-up category-keep priority-down)))))
6730 (defun org-get-time-of-day (s &optional string mod24)
6731 "Check string S for a time of day.
6732 If found, return it as a military time number between 0 and 2400.
6733 If not found, return nil.
6734 The optional STRING argument forces conversion into a 5 character wide string
6735 HH:MM."
6736 (save-match-data
6737 (when
6738 (and
6739 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6740 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6741 (not (eq (get-text-property 1 'face s) 'org-link)))
6742 (let* ((h (string-to-number (match-string 1 s)))
6743 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6744 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6745 (am-p (equal ampm "am"))
6746 (h1 (cond ((not ampm) h)
6747 ((= h 12) (if am-p 0 12))
6748 (t (+ h (if am-p 0 12)))))
6749 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6750 (mod h1 24) h1))
6751 (t0 (+ (* 100 h2) m))
6752 (t1 (concat (if (>= h1 24) "+" " ")
6753 (if (and org-agenda-time-leading-zero
6754 (< t0 1000)) "0" "")
6755 (if (< t0 100) "0" "")
6756 (if (< t0 10) "0" "")
6757 (int-to-string t0))))
6758 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6760 (defvar org-agenda-before-sorting-filter-function nil
6761 "Function to be applied to agenda items prior to sorting.
6762 Prior to sorting also means just before they are inserted into the agenda.
6764 To aid sorting, you may revisit the original entries and add more text
6765 properties which will later be used by the sorting functions.
6767 The function should take a string argument, an agenda line.
6768 It has access to the text properties in that line, which contain among
6769 other things, the property `org-hd-marker' that points to the entry
6770 where the line comes from. Note that not all lines going into the agenda
6771 have this property, only most.
6773 The function should return the modified string. It is probably best
6774 to ONLY change text properties.
6776 You can also use this function as a filter, by returning nil for lines
6777 you don't want to have in the agenda at all. For this application, you
6778 could bind the variable in the options section of a custom command.")
6780 (defun org-agenda-finalize-entries (list &optional type)
6781 "Sort, limit and concatenate the LIST of agenda items.
6782 The optional argument TYPE tells the agenda type."
6783 (let ((max-effort (cond ((listp org-agenda-max-effort)
6784 (cdr (assoc type org-agenda-max-effort)))
6785 (t org-agenda-max-effort)))
6786 (max-todo (cond ((listp org-agenda-max-todos)
6787 (cdr (assoc type org-agenda-max-todos)))
6788 (t org-agenda-max-todos)))
6789 (max-tags (cond ((listp org-agenda-max-tags)
6790 (cdr (assoc type org-agenda-max-tags)))
6791 (t org-agenda-max-tags)))
6792 (max-entries (cond ((listp org-agenda-max-entries)
6793 (cdr (assoc type org-agenda-max-entries)))
6794 (t org-agenda-max-entries))))
6795 (when org-agenda-before-sorting-filter-function
6796 (setq list
6797 (delq nil
6798 (mapcar
6799 org-agenda-before-sorting-filter-function list))))
6800 (setq list (mapcar 'org-agenda-highlight-todo list)
6801 list (mapcar 'identity (sort list 'org-entries-lessp)))
6802 (when max-effort
6803 (setq list (org-agenda-limit-entries
6804 list 'effort-minutes max-effort 'identity)))
6805 (when max-todo
6806 (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
6807 (when max-tags
6808 (setq list (org-agenda-limit-entries list 'tags max-tags)))
6809 (when max-entries
6810 (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
6811 (mapconcat 'identity list "\n")))
6813 (defun org-agenda-limit-entries (list prop limit &optional fn)
6814 "Limit the number of agenda entries."
6815 (let ((include (and limit (< limit 0))))
6816 (if limit
6817 (let ((fun (or fn (lambda (p) (if p 1))))
6818 (lim 0))
6819 (delq nil
6820 (mapcar
6821 (lambda (e)
6822 (let ((pval (funcall fun (get-text-property 1 prop e))))
6823 (if pval (setq lim (+ lim pval)))
6824 (cond ((and pval (<= lim (abs limit))) e)
6825 ((and include (not pval)) e))))
6826 list)))
6827 list)))
6829 (defun org-agenda-limit-interactively (remove)
6830 "In agenda, interactively limit entries to various maximums."
6831 (interactive "P")
6832 (if remove
6833 (progn (setq org-agenda-max-entries nil
6834 org-agenda-max-todos nil
6835 org-agenda-max-tags nil
6836 org-agenda-max-effort nil)
6837 (org-agenda-redo))
6838 (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
6839 (msg (cond ((= max ?E) "How many minutes? ")
6840 ((= max ?e) "How many entries? ")
6841 ((= max ?t) "How many TODO entries? ")
6842 ((= max ?T) "How many tagged entries? ")))
6843 (num (string-to-number (read-from-minibuffer msg))))
6844 (cond ((equal max ?e)
6845 (let ((org-agenda-max-entries num)) (org-agenda-redo)))
6846 ((equal max ?t)
6847 (let ((org-agenda-max-todos num)) (org-agenda-redo)))
6848 ((equal max ?T)
6849 (let ((org-agenda-max-tags num)) (org-agenda-redo)))
6850 ((equal max ?E)
6851 (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
6852 (org-agenda-fit-window-to-buffer))
6854 (defun org-agenda-highlight-todo (x)
6855 (let ((org-done-keywords org-done-keywords-for-agenda)
6856 (case-fold-search nil)
6858 (if (eq x 'line)
6859 (save-excursion
6860 (beginning-of-line 1)
6861 (setq re (org-get-at-bol 'org-todo-regexp))
6862 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6863 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6864 (add-text-properties (match-beginning 0) (match-end 1)
6865 (list 'face (org-get-todo-face 1)))
6866 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6867 (delete-region (match-beginning 1) (1- (match-end 0)))
6868 (goto-char (match-beginning 1))
6869 (insert (format org-agenda-todo-keyword-format s)))))
6870 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6871 (setq re (get-text-property 0 'org-todo-regexp x))
6872 (when (and re
6873 ;; Test `pl' because if there's no heading content,
6874 ;; there's no point matching to highlight. Note
6875 ;; that if we didn't test `pl' first, and there
6876 ;; happened to be no keyword from `org-todo-regexp'
6877 ;; on this heading line, then the `equal' comparison
6878 ;; afterwards would spuriously succeed in the case
6879 ;; where `pl' is nil -- causing an args-out-of-range
6880 ;; error when we try to add text properties to text
6881 ;; that isn't there.
6883 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6884 x pl) pl))
6885 (add-text-properties
6886 (or (match-end 1) (match-end 0)) (match-end 0)
6887 (list 'face (org-get-todo-face (match-string 2 x)))
6889 (when (match-end 1)
6890 (setq x (concat (substring x 0 (match-end 1))
6891 (format org-agenda-todo-keyword-format
6892 (match-string 2 x))
6893 (org-add-props " " (text-properties-at 0 x))
6894 (substring x (match-end 3)))))))
6895 x)))
6897 (defsubst org-cmp-values (a b property)
6898 "Compare the numeric value of text PROPERTY for string A and B."
6899 (let ((pa (or (get-text-property (1- (length a)) property a) 0))
6900 (pb (or (get-text-property (1- (length b)) property b) 0)))
6901 (cond ((> pa pb) +1)
6902 ((< pa pb) -1))))
6904 (defsubst org-cmp-effort (a b)
6905 "Compare the effort values of string A and B."
6906 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6907 (ea (or (get-text-property (1- (length a)) 'effort-minutes a) def))
6908 (eb (or (get-text-property (1- (length b)) 'effort-minutes b) def)))
6909 (cond ((> ea eb) +1)
6910 ((< ea eb) -1))))
6912 (defsubst org-cmp-category (a b)
6913 "Compare the string values of categories of strings A and B."
6914 (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
6915 (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
6916 (cond ((string-lessp ca cb) -1)
6917 ((string-lessp cb ca) +1))))
6919 (defsubst org-cmp-todo-state (a b)
6920 "Compare the todo states of strings A and B."
6921 (let* ((ma (or (get-text-property 1 'org-marker a)
6922 (get-text-property 1 'org-hd-marker a)))
6923 (mb (or (get-text-property 1 'org-marker b)
6924 (get-text-property 1 'org-hd-marker b)))
6925 (fa (and ma (marker-buffer ma)))
6926 (fb (and mb (marker-buffer mb)))
6927 (todo-kwds
6928 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6929 (and fb (with-current-buffer fb org-todo-keywords-1))))
6930 (ta (or (get-text-property 1 'todo-state a) ""))
6931 (tb (or (get-text-property 1 'todo-state b) ""))
6932 (la (- (length (member ta todo-kwds))))
6933 (lb (- (length (member tb todo-kwds))))
6934 (donepa (member ta org-done-keywords-for-agenda))
6935 (donepb (member tb org-done-keywords-for-agenda)))
6936 (cond ((and donepa (not donepb)) -1)
6937 ((and (not donepa) donepb) +1)
6938 ((< la lb) -1)
6939 ((< lb la) +1))))
6941 (defsubst org-cmp-alpha (a b)
6942 "Compare the headlines, alphabetically."
6943 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6944 (plb (text-property-any 0 (length b) 'org-heading t b))
6945 (ta (and pla (substring a pla)))
6946 (tb (and plb (substring b plb))))
6947 (when pla
6948 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6949 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6950 (setq ta (substring ta (match-end 0))))
6951 (setq ta (downcase ta)))
6952 (when plb
6953 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6954 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6955 (setq tb (substring tb (match-end 0))))
6956 (setq tb (downcase tb)))
6957 (cond ((not ta) +1)
6958 ((not tb) -1)
6959 ((string-lessp ta tb) -1)
6960 ((string-lessp tb ta) +1))))
6962 (defsubst org-cmp-tag (a b)
6963 "Compare the string values of the first tags of A and B."
6964 (let ((ta (car (last (get-text-property 1 'tags a))))
6965 (tb (car (last (get-text-property 1 'tags b)))))
6966 (cond ((not ta) +1)
6967 ((not tb) -1)
6968 ((string-lessp ta tb) -1)
6969 ((string-lessp tb ta) +1))))
6971 (defsubst org-cmp-time (a b)
6972 "Compare the time-of-day values of strings A and B."
6973 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
6974 (ta (or (get-text-property 1 'time-of-day a) def))
6975 (tb (or (get-text-property 1 'time-of-day b) def)))
6976 (cond ((< ta tb) -1)
6977 ((< tb ta) +1))))
6979 (defsubst org-cmp-ts (a b type)
6980 "Compare the timestamps values of entries A and B.
6981 When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
6982 \"timestamp_ia\", compare within each of these type. When TYPE
6983 is the empty string, compare all timestamps without respect of
6984 their type."
6985 (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
6986 (ta (or (and (string-match type (or (get-text-property 1 type a) ""))
6987 (get-text-property 1 'ts-date a)) def))
6988 (tb (or (and (string-match type (or (get-text-property 1 type b) ""))
6989 (get-text-property 1 'ts-date b)) def)))
6990 (cond ((< ta tb) -1)
6991 ((< tb ta) +1))))
6993 (defsubst org-cmp-habit-p (a b)
6994 "Compare the todo states of strings A and B."
6995 (let ((ha (get-text-property 1 'org-habit-p a))
6996 (hb (get-text-property 1 'org-habit-p b)))
6997 (cond ((and ha (not hb)) -1)
6998 ((and (not ha) hb) +1))))
7000 (defun org-entries-lessp (a b)
7001 "Predicate for sorting agenda entries."
7002 ;; The following variables will be used when the form is evaluated.
7003 ;; So even though the compiler complains, keep them.
7004 (let* ((ss org-agenda-sorting-strategy-selected)
7005 (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
7006 (org-cmp-ts a b "")))
7007 (timestamp-down (if timestamp-up (- timestamp-up) nil))
7008 (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
7009 (org-cmp-ts a b "scheduled")))
7010 (scheduled-down (if scheduled-up (- scheduled-up) nil))
7011 (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
7012 (org-cmp-ts a b "deadline")))
7013 (deadline-down (if deadline-up (- deadline-up) nil))
7014 (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
7015 (org-cmp-ts a b "iatimestamp_ia")))
7016 (tsia-down (if tsia-up (- tsia-up) nil))
7017 (ts-up (and (org-em 'ts-up 'ts-down ss)
7018 (org-cmp-ts a b "timestamp")))
7019 (ts-down (if ts-up (- ts-up) nil))
7020 (time-up (and (org-em 'time-up 'time-down ss)
7021 (org-cmp-time a b)))
7022 (time-down (if time-up (- time-up) nil))
7023 (stats-up (and (org-em 'stats-up 'stats-down ss)
7024 (org-cmp-values a b 'org-stats)))
7025 (stats-down (if stats-up (- stats-up) nil))
7026 (priority-up (and (org-em 'priority-up 'priority-down ss)
7027 (org-cmp-values a b 'priority)))
7028 (priority-down (if priority-up (- priority-up) nil))
7029 (effort-up (and (org-em 'effort-up 'effort-down ss)
7030 (org-cmp-effort a b)))
7031 (effort-down (if effort-up (- effort-up) nil))
7032 (category-up (and (or (org-em 'category-up 'category-down ss)
7033 (memq 'category-keep ss))
7034 (org-cmp-category a b)))
7035 (category-down (if category-up (- category-up) nil))
7036 (category-keep (if category-up +1 nil))
7037 (tag-up (and (org-em 'tag-up 'tag-down ss)
7038 (org-cmp-tag a b)))
7039 (tag-down (if tag-up (- tag-up) nil))
7040 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
7041 (org-cmp-todo-state a b)))
7042 (todo-state-down (if todo-state-up (- todo-state-up) nil))
7043 (habit-up (and (org-em 'habit-up 'habit-down ss)
7044 (org-cmp-habit-p a b)))
7045 (habit-down (if habit-up (- habit-up) nil))
7046 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
7047 (org-cmp-alpha a b)))
7048 (alpha-down (if alpha-up (- alpha-up) nil))
7049 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
7050 user-defined-up user-defined-down)
7051 (if (and need-user-cmp org-agenda-cmp-user-defined
7052 (functionp org-agenda-cmp-user-defined))
7053 (setq user-defined-up
7054 (funcall org-agenda-cmp-user-defined a b)
7055 user-defined-down (if user-defined-up (- user-defined-up) nil)))
7056 (cdr (assoc
7057 (eval (cons 'or org-agenda-sorting-strategy-selected))
7058 '((-1 . t) (1 . nil) (nil . nil))))))
7060 ;;; Agenda restriction lock
7062 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
7063 "Overlay to mark the headline to which agenda commands are restricted.")
7064 (overlay-put org-agenda-restriction-lock-overlay
7065 'face 'org-agenda-restriction-lock)
7066 (overlay-put org-agenda-restriction-lock-overlay
7067 'help-echo "Agendas are currently limited to this subtree.")
7068 (org-detach-overlay org-agenda-restriction-lock-overlay)
7070 ;;;###autoload
7071 (defun org-agenda-set-restriction-lock (&optional type)
7072 "Set restriction lock for agenda, to current subtree or file.
7073 Restriction will be the file if TYPE is `file', or if type is the
7074 universal prefix '(4), or if the cursor is before the first headline
7075 in the file. Otherwise, restriction will be to the current subtree."
7076 (interactive "P")
7077 (org-agenda-remove-restriction-lock 'noupdate)
7078 (and (equal type '(4)) (setq type 'file))
7079 (setq type (cond
7080 (type type)
7081 ((org-at-heading-p) 'subtree)
7082 ((condition-case nil (org-back-to-heading t) (error nil))
7083 'subtree)
7084 (t 'file)))
7085 (if (eq type 'subtree)
7086 (progn
7087 (setq org-agenda-restrict (current-buffer))
7088 (setq org-agenda-overriding-restriction 'subtree)
7089 (put 'org-agenda-files 'org-restrict
7090 (list (buffer-file-name (buffer-base-buffer))))
7091 (org-back-to-heading t)
7092 (move-overlay org-agenda-restriction-lock-overlay
7093 (point)
7094 (if org-agenda-restriction-lock-highlight-subtree
7095 (save-excursion (org-end-of-subtree t t) (point))
7096 (point-at-eol)))
7097 (move-marker org-agenda-restrict-begin (point))
7098 (move-marker org-agenda-restrict-end
7099 (save-excursion (org-end-of-subtree t t)))
7100 (message "Locking agenda restriction to subtree"))
7101 (put 'org-agenda-files 'org-restrict
7102 (list (buffer-file-name (buffer-base-buffer))))
7103 (setq org-agenda-restrict nil)
7104 (setq org-agenda-overriding-restriction 'file)
7105 (move-marker org-agenda-restrict-begin nil)
7106 (move-marker org-agenda-restrict-end nil)
7107 (message "Locking agenda restriction to file"))
7108 (setq current-prefix-arg nil)
7109 (org-agenda-maybe-redo))
7111 (defun org-agenda-remove-restriction-lock (&optional noupdate)
7112 "Remove the agenda restriction lock."
7113 (interactive "P")
7114 (org-detach-overlay org-agenda-restriction-lock-overlay)
7115 (org-detach-overlay org-speedbar-restriction-lock-overlay)
7116 (setq org-agenda-overriding-restriction nil)
7117 (setq org-agenda-restrict nil)
7118 (put 'org-agenda-files 'org-restrict nil)
7119 (move-marker org-agenda-restrict-begin nil)
7120 (move-marker org-agenda-restrict-end nil)
7121 (setq current-prefix-arg nil)
7122 (message "Agenda restriction lock removed")
7123 (or noupdate (org-agenda-maybe-redo)))
7125 (defun org-agenda-maybe-redo ()
7126 "If there is any window showing the agenda view, update it."
7127 (let ((w (get-buffer-window org-agenda-buffer-name t))
7128 (w0 (selected-window)))
7129 (when w
7130 (select-window w)
7131 (org-agenda-redo)
7132 (select-window w0)
7133 (if org-agenda-overriding-restriction
7134 (message "Agenda view shifted to new %s restriction"
7135 org-agenda-overriding-restriction)
7136 (message "Agenda restriction lock removed")))))
7138 ;;; Agenda commands
7140 (defun org-agenda-check-type (error &rest types)
7141 "Check if agenda buffer is of allowed type.
7142 If ERROR is non-nil, throw an error, otherwise just return nil.
7143 Allowed types are 'agenda 'timeline 'todo 'tags 'search."
7144 (if (not org-agenda-type)
7145 (error "No Org agenda currently displayed")
7146 (if (memq org-agenda-type types)
7148 (if error
7149 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
7150 nil))))
7152 (defun org-agenda-Quit ()
7153 "Exit the agenda and kill buffers loaded by `org-agenda'.
7154 Also restore the window configuration."
7155 (interactive)
7156 (if org-agenda-columns-active
7157 (org-columns-quit)
7158 (let ((buf (current-buffer)))
7159 (if (eq org-agenda-window-setup 'other-frame)
7160 (progn
7161 (org-agenda-reset-markers)
7162 (kill-buffer buf)
7163 (org-columns-remove-overlays)
7164 (setq org-agenda-archives-mode nil)
7165 (delete-frame))
7166 (and (not (eq org-agenda-window-setup 'current-window))
7167 (not (one-window-p))
7168 (delete-window))
7169 (org-agenda-reset-markers)
7170 (kill-buffer buf)
7171 (org-columns-remove-overlays)
7172 (setq org-agenda-archives-mode nil)))
7173 (setq org-agenda-buffer nil)
7174 ;; Maybe restore the pre-agenda window configuration.
7175 (and org-agenda-restore-windows-after-quit
7176 (not (eq org-agenda-window-setup 'other-frame))
7177 org-agenda-pre-window-conf
7178 (set-window-configuration org-agenda-pre-window-conf)
7179 (setq org-agenda-pre-window-conf nil))))
7181 (defun org-agenda-quit ()
7182 "Exit the agenda and restore the window configuration.
7183 When `org-agenda-sticky' is non-nil, only bury the agenda."
7184 (interactive)
7185 (if (and (eq org-indirect-buffer-display 'other-window)
7186 org-last-indirect-buffer)
7187 (let ((org-last-indirect-window
7188 (get-buffer-window org-last-indirect-buffer)))
7189 (if org-last-indirect-window
7190 (delete-window org-last-indirect-window))))
7191 (if org-agenda-columns-active
7192 (org-columns-quit)
7193 (if org-agenda-sticky
7194 (let ((buf (current-buffer)))
7195 (if (eq org-agenda-window-setup 'other-frame)
7196 (progn
7197 (delete-frame))
7198 (and (not (eq org-agenda-window-setup 'current-window))
7199 (not (one-window-p))
7200 (delete-window)))
7201 (with-current-buffer buf
7202 (bury-buffer)
7203 ;; Maybe restore the pre-agenda window configuration.
7204 (and org-agenda-restore-windows-after-quit
7205 (not (eq org-agenda-window-setup 'other-frame))
7206 org-agenda-pre-window-conf
7207 (set-window-configuration org-agenda-pre-window-conf)
7208 (setq org-agenda-pre-window-conf nil))))
7209 (org-agenda-Quit))))
7211 (defun org-agenda-exit ()
7212 "Exit the agenda and restore the window configuration.
7213 Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
7214 buffers visited directly by the user will not be touched."
7215 (interactive)
7216 (org-release-buffers org-agenda-new-buffers)
7217 (setq org-agenda-new-buffers nil)
7218 (org-agenda-Quit))
7220 (defun org-agenda-kill-all-agenda-buffers ()
7221 "Kill all buffers in `org-agenda-mode'.
7222 This is used when toggling sticky agendas.
7223 You can also explicitly invoke it with `C-c a C-k'."
7224 (interactive)
7225 (let (blist)
7226 (dolist (buf (buffer-list))
7227 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
7228 (push buf blist)))
7229 (mapc 'kill-buffer blist)))
7231 (defun org-agenda-execute (arg)
7232 "Execute another agenda command, keeping same window.
7233 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
7234 in the agenda."
7235 (interactive "P")
7236 (let ((org-agenda-window-setup 'current-window))
7237 (org-agenda arg)))
7239 (defun org-agenda-redo (&optional all)
7240 "Rebuild possibly ALL agenda view(s) in the current buffer."
7241 (interactive "P")
7242 (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
7243 (cpa (unless (eq all t) current-prefix-arg))
7244 (org-agenda-doing-sticky-redo org-agenda-sticky)
7245 (org-agenda-sticky nil)
7246 (org-agenda-buffer-name (or org-agenda-this-buffer-name
7247 org-agenda-buffer-name))
7248 (org-agenda-keep-modes t)
7249 (tag-filter org-agenda-tag-filter)
7250 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
7251 (top-hl-filter org-agenda-top-headline-filter)
7252 (cat-filter org-agenda-category-filter)
7253 (cat-preset (get 'org-agenda-category-filter :preset-filter))
7254 (re-filter org-agenda-regexp-filter)
7255 (re-preset (get 'org-agenda-regexp-filter :preset-filter))
7256 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
7257 (cols org-agenda-columns-active)
7258 (line (org-current-line))
7259 (window-line (- line (org-current-line (window-start))))
7260 (lprops (get 'org-agenda-redo-command 'org-lprops))
7261 (redo-cmd (get-text-property p 'org-redo-cmd))
7262 (last-args (get-text-property p 'org-last-args))
7263 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
7264 (org-agenda-overriding-cmd-arguments
7265 (unless (eq all t)
7266 (cond ((listp last-args)
7267 (cons (or cpa (car last-args)) (cdr last-args)))
7268 ((stringp last-args)
7269 last-args))))
7270 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
7271 (put 'org-agenda-tag-filter :preset-filter nil)
7272 (put 'org-agenda-category-filter :preset-filter nil)
7273 (put 'org-agenda-regexp-filter :preset-filter nil)
7274 (and cols (org-columns-quit))
7275 (message "Rebuilding agenda buffer...")
7276 (if series-redo-cmd
7277 (eval series-redo-cmd)
7278 (org-let lprops redo-cmd))
7279 (setq org-agenda-undo-list nil
7280 org-agenda-pending-undo-list nil
7281 org-agenda-tag-filter tag-filter
7282 org-agenda-category-filter cat-filter
7283 org-agenda-regexp-filter re-filter
7284 org-agenda-top-headline-filter top-hl-filter)
7285 (message "Rebuilding agenda buffer...done")
7286 (put 'org-agenda-tag-filter :preset-filter tag-preset)
7287 (put 'org-agenda-category-filter :preset-filter cat-preset)
7288 (put 'org-agenda-regexp-filter :preset-filter re-preset)
7289 (let ((tag (or tag-filter tag-preset))
7290 (cat (or cat-filter cat-preset))
7291 (re (or re-filter re-preset)))
7292 (when tag (org-agenda-filter-apply tag 'tag))
7293 (when cat (org-agenda-filter-apply cat 'category))
7294 (when re (org-agenda-filter-apply re 'regexp)))
7295 (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
7296 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
7297 (org-goto-line line)
7298 (recenter window-line)))
7300 (defvar org-global-tags-completion-table nil)
7301 (defvar org-agenda-filter-form nil)
7302 (defvar org-agenda-filtered-by-category nil)
7304 (defun org-agenda-filter-by-category (strip)
7305 "Keep only those lines in the agenda buffer that have a specific category.
7306 The category is that of the current line."
7307 (interactive "P")
7308 (if (and org-agenda-filtered-by-category
7309 org-agenda-category-filter)
7310 (org-agenda-filter-show-all-cat)
7311 (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
7312 (cond
7313 ((and cat strip)
7314 (org-agenda-filter-apply
7315 (push (concat "-" cat) org-agenda-category-filter) 'category))
7316 ((and cat)
7317 (org-agenda-filter-apply
7318 (setq org-agenda-category-filter
7319 (list (concat "+" cat))) 'category))
7320 (t (error "No category at point"))))))
7322 (defun org-find-top-headline (&optional pos)
7323 "Find the topmost parent headline and return it."
7324 (save-excursion
7325 (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
7326 (if pos (goto-char pos))
7327 ;; Skip up to the topmost parent
7328 (while (ignore-errors (outline-up-heading 1) t))
7329 (ignore-errors
7330 (nth 4 (org-heading-components))))))
7332 (defvar org-agenda-filtered-by-top-headline nil)
7333 (defun org-agenda-filter-by-top-headline (strip)
7334 "Keep only those lines that are descendants from the same top headline.
7335 The top headline is that of the current line."
7336 (interactive "P")
7337 (if org-agenda-filtered-by-top-headline
7338 (progn
7339 (setq org-agenda-filtered-by-top-headline nil
7340 org-agenda-top-headline-filter nil)
7341 (org-agenda-filter-show-all-top-filter))
7342 (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
7343 (if toph (org-agenda-filter-top-headline-apply toph strip)
7344 (error "No top-level headline at point")))))
7346 (defvar org-agenda-regexp-filter nil)
7347 (defun org-agenda-filter-by-regexp (strip)
7348 "Filter agenda entries by a regular expression.
7349 Regexp filters are cumulative.
7350 With no prefix argument, keep entries matching the regexp.
7351 With one prefix argument, filter out entries matching the regexp.
7352 With two prefix arguments, remove the regexp filters."
7353 (interactive "P")
7354 (if (not (equal strip '(16)))
7355 (let ((flt (concat (if (equal strip '(4)) "-" "+")
7356 (read-from-minibuffer
7357 (if (equal strip '(4))
7358 "Filter out entries matching regexp: "
7359 "Narrow to entries matching regexp: ")))))
7360 (push flt org-agenda-regexp-filter)
7361 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
7362 (org-agenda-filter-show-all-re)
7363 (message "Regexp filter removed")))
7365 (defun org-agenda-filter-remove-all ()
7366 "Remove all filters from the current agenda buffer."
7367 (interactive)
7368 (when org-agenda-tag-filter
7369 (org-agenda-filter-show-all-tag))
7370 (when org-agenda-category-filter
7371 (org-agenda-filter-show-all-cat))
7372 (when org-agenda-regexp-filter
7373 (org-agenda-filter-show-all-re))
7374 (when org-agenda-top-headline-filter
7375 (org-agenda-filter-show-all-top-filter))
7376 (org-agenda-finalize))
7378 (defun org-agenda-filter-by-tag (strip &optional char narrow)
7379 "Keep only those lines in the agenda buffer that have a specific tag.
7380 The tag is selected with its fast selection letter, as configured.
7381 With prefix argument STRIP, remove all lines that do have the tag.
7382 A lisp caller can specify CHAR. NARROW means that the new tag should be
7383 used to narrow the search - the interactive user can also press `-' or `+'
7384 to switch to narrowing."
7385 (interactive "P")
7386 (let* ((alist org-tag-alist-for-agenda)
7387 (tag-chars (mapconcat
7388 (lambda (x) (if (and (not (symbolp (car x)))
7389 (cdr x))
7390 (char-to-string (cdr x))
7391 ""))
7392 alist ""))
7393 (efforts (org-split-string
7394 (or (cdr (assoc (concat org-effort-property "_ALL")
7395 org-global-properties))
7396 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
7397 "")))
7398 (effort-op org-agenda-filter-effort-default-operator)
7399 (effort-prompt "")
7400 (inhibit-read-only t)
7401 (current org-agenda-tag-filter)
7402 maybe-refresh a n tag)
7403 (unless char
7404 (message
7405 "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
7406 (if narrow "Narrow" "Filter") tag-chars
7407 (if org-agenda-auto-exclude-function "[RET], " ""))
7408 (setq char (read-char-exclusive)))
7409 (when (member char '(?+ ?-))
7410 ;; Narrowing down
7411 (cond ((equal char ?-) (setq strip t narrow t))
7412 ((equal char ?+) (setq strip nil narrow t)))
7413 (message
7414 "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
7415 (setq char (read-char-exclusive)))
7416 (when (member char '(?< ?> ?= ??))
7417 ;; An effort operator
7418 (setq effort-op (char-to-string char))
7419 (setq alist nil) ; to make sure it will be interpreted as effort.
7420 (unless (equal char ??)
7421 (loop for i from 0 to 9 do
7422 (setq effort-prompt
7423 (concat
7424 effort-prompt " ["
7425 (if (= i 9) "0" (int-to-string (1+ i)))
7426 "]" (nth i efforts))))
7427 (message "Effort%s: %s " effort-op effort-prompt)
7428 (setq char (read-char-exclusive))
7429 (when (or (< char ?0) (> char ?9))
7430 (error "Need 1-9,0 to select effort"))))
7431 (when (equal char ?\t)
7432 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
7433 (org-set-local 'org-global-tags-completion-table
7434 (org-global-tags-completion-table)))
7435 (let ((completion-ignore-case t))
7436 (setq tag (org-icompleting-read
7437 "Tag: " org-global-tags-completion-table))))
7438 (cond
7439 ((equal char ?\r)
7440 (org-agenda-filter-show-all-tag)
7441 (when org-agenda-auto-exclude-function
7442 (setq org-agenda-tag-filter nil)
7443 (dolist (tag (org-agenda-get-represented-tags))
7444 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
7445 (if modifier
7446 (push modifier org-agenda-tag-filter))))
7447 (if (not (null org-agenda-tag-filter))
7448 (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
7449 (setq maybe-refresh t))
7450 ((equal char ?/)
7451 (org-agenda-filter-show-all-tag)
7452 (when (get 'org-agenda-tag-filter :preset-filter)
7453 (org-agenda-filter-apply org-agenda-tag-filter 'tag))
7454 (setq maybe-refresh t))
7455 ((equal char ?. )
7456 (setq org-agenda-tag-filter
7457 (mapcar (lambda(tag) (concat "+" tag))
7458 (org-get-at-bol 'tags)))
7459 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
7460 (setq maybe-refresh t))
7461 ((or (equal char ?\ )
7462 (setq a (rassoc char alist))
7463 (and (>= char ?0) (<= char ?9)
7464 (setq n (if (= char ?0) 9 (- char ?0 1))
7465 tag (concat effort-op (nth n efforts))
7466 a (cons tag nil)))
7467 (and (= char ??)
7468 (setq tag "?eff")
7469 a (cons tag nil))
7470 (and tag (setq a (cons tag nil))))
7471 (org-agenda-filter-show-all-tag)
7472 (setq tag (car a))
7473 (setq org-agenda-tag-filter
7474 (cons (concat (if strip "-" "+") tag)
7475 (if narrow current nil)))
7476 (org-agenda-filter-apply org-agenda-tag-filter 'tag)
7477 (setq maybe-refresh t))
7478 (t (error "Invalid tag selection character %c" char)))
7479 (when (and maybe-refresh
7480 (eq org-agenda-clockreport-mode 'with-filter))
7481 (org-agenda-redo))))
7483 (defun org-agenda-get-represented-tags ()
7484 "Get a list of all tags currently represented in the agenda."
7485 (let (p tags)
7486 (save-excursion
7487 (goto-char (point-min))
7488 (while (setq p (next-single-property-change (point) 'tags))
7489 (goto-char p)
7490 (mapc (lambda (x) (add-to-list 'tags x))
7491 (get-text-property (point) 'tags))))
7492 tags))
7494 (defun org-agenda-filter-by-tag-refine (strip &optional char)
7495 "Refine the current filter. See `org-agenda-filter-by-tag'."
7496 (interactive "P")
7497 (org-agenda-filter-by-tag strip char 'refine))
7499 (defun org-agenda-filter-make-matcher (filter type)
7500 "Create the form that tests a line for agenda filter."
7501 (let (f f1)
7502 (cond
7503 ;; Tag filter
7504 ((eq type 'tag)
7505 (setq filter
7506 (delete-dups
7507 (append (get 'org-agenda-tag-filter :preset-filter)
7508 filter)))
7509 (dolist (x filter)
7510 (let ((nfilter (org-agenda-filter-expand-tags filter)) nf nf1
7511 (ffunc
7512 (lambda (nf0 nf01 fltr notgroup op)
7513 (dolist (x fltr)
7514 (if (member x '("-" "+"))
7515 (setq nf01 (if (equal x "-") 'tags '(not tags)))
7516 (if (string-match "[<=>?]" x)
7517 (setq nf01 (org-agenda-filter-effort-form x))
7518 (setq nf01 (list 'member (downcase (substring x 1))
7519 'tags)))
7520 (when (equal (string-to-char x) ?-)
7521 (setq nf01 (list 'not nf01))
7522 (when (not notgroup) (setq op 'and))))
7523 (push nf01 nf0))
7524 (if notgroup
7525 (push (cons 'and nf0) f)
7526 (push (cons (or op 'or) nf0) f)))))
7527 (cond ((equal filter '("+"))
7528 (setq f (list (list 'not 'tags))))
7529 ((equal nfilter filter)
7530 (funcall ffunc f1 f filter t nil))
7531 (t (funcall ffunc nf1 nf nfilter nil nil))))))
7532 ;; Category filter
7533 ((eq type 'category)
7534 (setq filter
7535 (delete-dups
7536 (append (get 'org-agenda-category-filter :preset-filter)
7537 filter)))
7538 (dolist (x filter)
7539 (if (equal "-" (substring x 0 1))
7540 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
7541 (setq f1 (list 'equal (substring x 1) 'cat)))
7542 (push f1 f)))
7543 ;; Regexp filter
7544 ((eq type 'regexp)
7545 (setq filter
7546 (delete-dups
7547 (append (get 'org-agenda-regexp-filter :preset-filter)
7548 filter)))
7549 (dolist (x filter)
7550 (if (equal "-" (substring x 0 1))
7551 (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
7552 (setq f1 (list 'string-match (substring x 1) 'txt)))
7553 (push f1 f))))
7554 (cons 'and (nreverse f))))
7556 (defun org-agenda-filter-effort-form (e)
7557 "Return the form to compare the effort of the current line with what E says.
7558 E looks like \"+<2:25\"."
7559 (let (op)
7560 (setq e (substring e 1))
7561 (setq op (string-to-char e) e (substring e 1))
7562 (setq op (cond ((equal op ?<) '<=)
7563 ((equal op ?>) '>=)
7564 ((equal op ??) op)
7565 (t '=)))
7566 (list 'org-agenda-compare-effort (list 'quote op)
7567 (org-duration-string-to-minutes e))))
7569 (defun org-agenda-compare-effort (op value)
7570 "Compare the effort of the current line with VALUE, using OP.
7571 If the line does not have an effort defined, return nil."
7572 (let ((eff (org-get-at-eol 'effort-minutes 1)))
7573 (if (equal op ??)
7574 (not eff)
7575 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
7576 value))))
7578 (defun org-agenda-filter-expand-tags (filter &optional no-operator)
7579 "Expand group tags in FILTER for the agenda.
7580 When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
7581 (if org-group-tags
7582 (let ((case-fold-search t) rtn)
7583 (mapc
7584 (lambda (f)
7585 (let (f0 dir)
7586 (if (string-match "^\\([+-]\\)\\(.+\\)" f)
7587 (setq dir (match-string 1 f) f0 (match-string 2 f))
7588 (setq dir (if no-operator "" "+") f0 f))
7589 (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
7590 (org-tags-expand f0 t t))
7591 rtn))))
7592 filter)
7593 (reverse rtn))
7594 filter))
7596 (defun org-agenda-filter-apply (filter type)
7597 "Set FILTER as the new agenda filter and apply it."
7598 ;; Deactivate `org-agenda-entry-text-mode' when filtering
7599 (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
7600 (let (tags cat txt)
7601 (setq org-agenda-filter-form
7602 (org-agenda-filter-make-matcher filter type))
7603 (if (and (eq type 'category)
7604 (not (equal (substring (car filter) 0 1) "-")))
7605 ;; Only set `org-agenda-filtered-by-category' to t
7606 ;; when a unique category is used as the filter
7607 (setq org-agenda-filtered-by-category t))
7608 (org-agenda-set-mode-name)
7609 (save-excursion
7610 (goto-char (point-min))
7611 (while (not (eobp))
7612 (if (org-get-at-bol 'org-marker)
7613 (progn
7614 (setq tags ; used in eval
7615 (apply 'append
7616 (mapcar (lambda (f)
7617 (org-agenda-filter-expand-tags (list f) t))
7618 (org-get-at-bol 'tags)))
7619 cat (org-get-at-eol 'org-category 1)
7620 txt (get-text-property (point) 'txt))
7621 (if (not (eval org-agenda-filter-form))
7622 (org-agenda-filter-hide-line type))
7623 (beginning-of-line 2))
7624 (beginning-of-line 2))))
7625 (if (get-char-property (point) 'invisible)
7626 (ignore-errors (org-agenda-previous-line)))))
7628 (defun org-agenda-filter-top-headline-apply (hl &optional negative)
7629 "Filter by top headline HL."
7630 (org-agenda-set-mode-name)
7631 (save-excursion
7632 (goto-char (point-min))
7633 (while (not (eobp))
7634 (let* ((pos (org-get-at-bol 'org-hd-marker))
7635 (tophl (and pos (org-find-top-headline pos))))
7636 (if (and tophl (funcall (if negative 'identity 'not)
7637 (string= hl tophl)))
7638 (org-agenda-filter-hide-line 'top-headline)))
7639 (beginning-of-line 2)))
7640 (if (get-char-property (point) 'invisible)
7641 (org-agenda-previous-line))
7642 (setq org-agenda-top-headline-filter hl
7643 org-agenda-filtered-by-top-headline t))
7645 (defun org-agenda-filter-hide-line (type)
7646 "Hide lines with TYPE in the agenda buffer."
7647 (let* ((b (max (point-min) (1- (point-at-bol))))
7648 (e (point-at-eol)))
7649 (let ((inhibit-read-only t))
7650 (add-text-properties
7651 b e `(invisible org-filtered org-filter-type ,type)))))
7653 (defun org-agenda-remove-filter (type)
7654 (interactive)
7655 "Remove filter of type TYPE from the agenda buffer."
7656 (save-excursion
7657 (goto-char (point-min))
7658 (let ((inhibit-read-only t) pos)
7659 (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
7660 (goto-char pos)
7661 (remove-text-properties
7662 (point) (next-single-property-change (point) 'org-filter-type)
7663 `(invisible org-filtered org-filter-type ,type))))
7664 (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
7665 (setq org-agenda-filter-form nil)
7666 (org-agenda-set-mode-name)
7667 (org-agenda-finalize)))
7669 (defun org-agenda-filter-show-all-tag nil
7670 (org-agenda-remove-filter 'tag))
7671 (defun org-agenda-filter-show-all-re nil
7672 (org-agenda-remove-filter 'regexp))
7673 (defun org-agenda-filter-show-all-cat nil
7674 (org-agenda-remove-filter 'category))
7675 (defun org-agenda-filter-show-all-top-filter nil
7676 (org-agenda-remove-filter 'top-headline))
7678 (defun org-agenda-manipulate-query-add ()
7679 "Manipulate the query by adding a search term with positive selection.
7680 Positive selection means the term must be matched for selection of an entry."
7681 (interactive)
7682 (org-agenda-manipulate-query ?\[))
7683 (defun org-agenda-manipulate-query-subtract ()
7684 "Manipulate the query by adding a search term with negative selection.
7685 Negative selection means term must not be matched for selection of an entry."
7686 (interactive)
7687 (org-agenda-manipulate-query ?\]))
7688 (defun org-agenda-manipulate-query-add-re ()
7689 "Manipulate the query by adding a search regexp with positive selection.
7690 Positive selection means the regexp must match for selection of an entry."
7691 (interactive)
7692 (org-agenda-manipulate-query ?\{))
7693 (defun org-agenda-manipulate-query-subtract-re ()
7694 "Manipulate the query by adding a search regexp with negative selection.
7695 Negative selection means regexp must not match for selection of an entry."
7696 (interactive)
7697 (org-agenda-manipulate-query ?\}))
7698 (defun org-agenda-manipulate-query (char)
7699 (cond
7700 ((memq org-agenda-type '(timeline agenda))
7701 (let ((org-agenda-include-inactive-timestamps t))
7702 (org-agenda-redo))
7703 (message "Display now includes inactive timestamps as well"))
7704 ((eq org-agenda-type 'search)
7705 (org-add-to-string
7706 'org-agenda-query-string
7707 (if org-agenda-last-search-view-search-was-boolean
7708 (cdr (assoc char '((?\[ . " +") (?\] . " -")
7709 (?\{ . " +{}") (?\} . " -{}"))))
7710 " "))
7711 (setq org-agenda-redo-command
7712 (list 'org-search-view
7713 (car (get-text-property (min (1- (point-max)) (point))
7714 'org-last-args))
7715 org-agenda-query-string
7716 (+ (length org-agenda-query-string)
7717 (if (member char '(?\{ ?\})) 0 1))))
7718 (set-register org-agenda-query-register org-agenda-query-string)
7719 (let ((org-agenda-overriding-arguments
7720 (cdr org-agenda-redo-command)))
7721 (org-agenda-redo)))
7722 (t (error "Cannot manipulate query for %s-type agenda buffers"
7723 org-agenda-type))))
7725 (defun org-add-to-string (var string)
7726 (set var (concat (symbol-value var) string)))
7728 (defun org-agenda-goto-date (span)
7729 "Jump to DATE in agenda."
7730 (interactive "P")
7731 (let* ((org-read-date-prefer-future
7732 (eval org-agenda-jump-prefer-future))
7733 (date (org-read-date))
7734 (day (time-to-days (org-time-string-to-time date)))
7735 (org-agenda-sticky-orig org-agenda-sticky)
7736 (org-agenda-buffer-tmp-name (buffer-name))
7737 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7738 (0-arg (or current-prefix-arg (car args)))
7739 (2-arg (nth 2 args))
7740 (with-hour-p (nth 4 org-agenda-redo-command))
7741 (newcmd (list 'org-agenda-list 0-arg date
7742 (org-agenda-span-to-ndays
7743 2-arg (org-time-string-to-absolute date))
7744 with-hour-p))
7745 (newargs (cdr newcmd))
7746 (inhibit-read-only t)
7747 org-agenda-sticky)
7748 (if (not (org-agenda-check-type t 'agenda))
7749 (error "Not available in non-agenda views")
7750 (add-text-properties (point-min) (point-max)
7751 `(org-redo-cmd ,newcmd org-last-args ,newargs))
7752 (org-agenda-redo)
7753 (goto-char (point-min))
7754 (while (not (or (= (or (get-text-property (point) 'day) 0) day)
7755 (save-excursion (move-beginning-of-line 2) (eobp))))
7756 (move-beginning-of-line 2))
7757 (setq org-agenda-sticky org-agenda-sticky-orig
7758 org-agenda-this-buffer-is-sticky org-agenda-sticky))))
7760 (defun org-agenda-goto-today ()
7761 "Go to today."
7762 (interactive)
7763 (org-agenda-check-type t 'timeline 'agenda)
7764 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7765 (curspan (nth 2 args))
7766 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
7767 (cond
7768 (tdpos (goto-char tdpos))
7769 ((eq org-agenda-type 'agenda)
7770 (let* ((sd (org-agenda-compute-starting-span
7771 (org-today) (or curspan org-agenda-ndays org-agenda-span)))
7772 (org-agenda-overriding-arguments args))
7773 (setf (nth 1 org-agenda-overriding-arguments) sd)
7774 (org-agenda-redo)
7775 (org-agenda-find-same-or-today-or-agenda)))
7776 (t (error "Cannot find today")))))
7778 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
7779 (goto-char
7780 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
7781 (text-property-any (point-min) (point-max) 'org-today t)
7782 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
7783 (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
7784 (org-agenda-backward-block))
7785 (point-min))))
7787 (defun org-agenda-backward-block ()
7788 "Move backward by one agenda block."
7789 (interactive)
7790 (org-agenda-forward-block 'backward))
7792 (defun org-agenda-forward-block (&optional backward)
7793 "Move forward by one agenda block.
7794 When optional argument BACKWARD is set, go backward"
7795 (interactive)
7796 (cond ((not (derived-mode-p 'org-agenda-mode))
7797 (user-error
7798 "Cannot execute this command outside of org-agenda-mode buffers"))
7799 ((looking-at (if backward "\\`" "\\'"))
7800 (message "Already at the %s block" (if backward "first" "last")))
7801 (t (let ((pos (prog1 (point)
7802 (ignore-errors (if backward (backward-char 1)
7803 (move-end-of-line 1)))))
7804 (f (if backward
7805 'previous-single-property-change
7806 'next-single-property-change))
7807 moved dest)
7808 (while (and (setq dest (funcall
7809 f (point) 'org-agenda-structural-header))
7810 (not (get-text-property
7811 (point) 'org-agenda-structural-header)))
7812 (setq moved t)
7813 (goto-char dest))
7814 (if moved (move-beginning-of-line 1)
7815 (goto-char (if backward (point-min) (point-max)))
7816 (move-beginning-of-line 1)
7817 (message "No %s block" (if backward "previous" "further")))))))
7819 (defun org-agenda-later (arg)
7820 "Go forward in time by the current span.
7821 With prefix ARG, go forward that many times the current span."
7822 (interactive "p")
7823 (org-agenda-check-type t 'agenda)
7824 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7825 (span (or (nth 2 args) org-agenda-current-span))
7826 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
7827 (greg (calendar-gregorian-from-absolute sd))
7828 (cnt (org-get-at-bol 'org-day-cnt))
7829 greg2)
7830 (cond
7831 ((numberp span)
7832 (setq sd (+ (* span arg) sd)))
7833 ((eq span 'day)
7834 (setq sd (+ arg sd)))
7835 ((eq span 'week)
7836 (setq sd (+ (* 7 arg) sd)))
7837 ((eq span 'fortnight)
7838 (setq sd (+ (* 14 arg) sd)))
7839 ((eq span 'month)
7840 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
7841 sd (calendar-absolute-from-gregorian greg2))
7842 (setcar greg2 (1+ (car greg2))))
7843 ((eq span 'year)
7844 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
7845 sd (calendar-absolute-from-gregorian greg2))
7846 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
7848 (setq sd (+ (* span arg) sd))))
7849 (let ((org-agenda-overriding-cmd
7850 ;; `cmd' may have been set by `org-agenda-run-series' which
7851 ;; uses `org-agenda-overriding-cmd' to decide whether
7852 ;; overriding is allowed for `cmd'
7853 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7854 (org-agenda-overriding-arguments
7855 (list (car args) sd span)))
7856 (org-agenda-redo)
7857 (org-agenda-find-same-or-today-or-agenda cnt))))
7859 (defun org-agenda-earlier (arg)
7860 "Go backward in time by the current span.
7861 With prefix ARG, go backward that many times the current span."
7862 (interactive "p")
7863 (org-agenda-later (- arg)))
7865 (defun org-agenda-view-mode-dispatch ()
7866 "Call one of the view mode commands."
7867 (interactive)
7868 (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
7869 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
7870 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
7871 (let ((a (read-char-exclusive)))
7872 (case a
7873 (?\ (call-interactively 'org-agenda-reset-view))
7874 (?d (call-interactively 'org-agenda-day-view))
7875 (?w (call-interactively 'org-agenda-week-view))
7876 (?t (call-interactively 'org-agenda-fortnight-view))
7877 (?m (call-interactively 'org-agenda-month-view))
7878 (?y (call-interactively 'org-agenda-year-view))
7879 (?l (call-interactively 'org-agenda-log-mode))
7880 (?L (org-agenda-log-mode '(4)))
7881 (?c (org-agenda-log-mode 'clockcheck))
7882 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
7883 (?a (call-interactively 'org-agenda-archives-mode))
7884 (?A (org-agenda-archives-mode 'files))
7885 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
7886 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
7887 (?G (call-interactively 'org-agenda-toggle-time-grid))
7888 (?D (call-interactively 'org-agenda-toggle-diary))
7889 (?\! (call-interactively 'org-agenda-toggle-deadlines))
7890 (?\[ (let ((org-agenda-include-inactive-timestamps t))
7891 (org-agenda-check-type t 'timeline 'agenda)
7892 (org-agenda-redo))
7893 (message "Display now includes inactive timestamps as well"))
7894 (?q (message "Abort"))
7895 (otherwise (error "Invalid key" )))))
7897 (defun org-agenda-reset-view ()
7898 "Switch to default view for agenda."
7899 (interactive)
7900 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
7901 (defun org-agenda-day-view (&optional day-of-month)
7902 "Switch to daily view for agenda.
7903 With argument DAY-OF-MONTH, switch to that day of the month."
7904 (interactive "P")
7905 (org-agenda-change-time-span 'day day-of-month))
7906 (defun org-agenda-week-view (&optional iso-week)
7907 "Switch to daily view for agenda.
7908 With argument ISO-WEEK, switch to the corresponding ISO week.
7909 If ISO-WEEK has more then 2 digits, only the last two encode the
7910 week. Any digits before this encode a year. So 200712 means
7911 week 12 of year 2007. Years in the range 1938-2037 can also be
7912 written as 2-digit years."
7913 (interactive "P")
7914 (org-agenda-change-time-span 'week iso-week))
7915 (defun org-agenda-fortnight-view (&optional iso-week)
7916 "Switch to daily view for agenda.
7917 With argument ISO-WEEK, switch to the corresponding ISO week.
7918 If ISO-WEEK has more then 2 digits, only the last two encode the
7919 week. Any digits before this encode a year. So 200712 means
7920 week 12 of year 2007. Years in the range 1938-2037 can also be
7921 written as 2-digit years."
7922 (interactive "P")
7923 (org-agenda-change-time-span 'fortnight iso-week))
7924 (defun org-agenda-month-view (&optional month)
7925 "Switch to monthly view for agenda.
7926 With argument MONTH, switch to that month."
7927 (interactive "P")
7928 (org-agenda-change-time-span 'month month))
7929 (defun org-agenda-year-view (&optional year)
7930 "Switch to yearly view for agenda.
7931 With argument YEAR, switch to that year.
7932 If MONTH has more then 2 digits, only the last two encode the
7933 month. Any digits before this encode a year. So 200712 means
7934 December year 2007. Years in the range 1938-2037 can also be
7935 written as 2-digit years."
7936 (interactive "P")
7937 (when year
7938 (setq year (org-small-year-to-year year)))
7939 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
7940 (org-agenda-change-time-span 'year year)
7941 (error "Abort")))
7943 (defun org-agenda-change-time-span (span &optional n)
7944 "Change the agenda view to SPAN.
7945 SPAN may be `day', `week', `fortnight', `month', `year'."
7946 (org-agenda-check-type t 'agenda)
7947 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7948 (curspan (nth 2 args)))
7949 (if (and (not n) (equal curspan span))
7950 (error "Viewing span is already \"%s\"" span))
7951 (let* ((sd (or (org-get-at-bol 'day)
7952 (nth 1 args)
7953 org-starting-day))
7954 (sd (org-agenda-compute-starting-span sd span n))
7955 (org-agenda-overriding-cmd
7956 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7957 (org-agenda-overriding-arguments
7958 (list (car args) sd span)))
7959 (org-agenda-redo)
7960 (org-agenda-find-same-or-today-or-agenda))
7961 (org-agenda-set-mode-name)
7962 (message "Switched to %s view" span)))
7964 (defun org-agenda-compute-starting-span (sd span &optional n)
7965 "Compute starting date for agenda.
7966 SPAN may be `day', `week', `fortnight', `month', `year'. The return value
7967 is a cons cell with the starting date and the number of days,
7968 so that the date SD will be in that range."
7969 (let* ((greg (calendar-gregorian-from-absolute sd))
7970 (dg (nth 1 greg))
7971 (mg (car greg))
7972 (yg (nth 2 greg)))
7973 (cond
7974 ((eq span 'day)
7975 (when n
7976 (setq sd (+ (calendar-absolute-from-gregorian
7977 (list mg 1 yg))
7978 n -1))))
7979 ((or (eq span 'week) (eq span 'fortnight))
7980 (let* ((nt (calendar-day-of-week
7981 (calendar-gregorian-from-absolute sd)))
7982 (d (if org-agenda-start-on-weekday
7983 (- nt org-agenda-start-on-weekday)
7986 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
7987 (when n
7988 (require 'cal-iso)
7989 (when (> n 99)
7990 (setq y1 (org-small-year-to-year (/ n 100))
7991 n (mod n 100)))
7992 (setq sd
7993 (calendar-absolute-from-iso
7994 (list n 1
7995 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
7996 ((eq span 'month)
7997 (let (y1)
7998 (when (and n (> n 99))
7999 (setq y1 (org-small-year-to-year (/ n 100))
8000 n (mod n 100)))
8001 (setq sd (calendar-absolute-from-gregorian
8002 (list (or n mg) 1 (or y1 yg))))))
8003 ((eq span 'year)
8004 (setq sd (calendar-absolute-from-gregorian
8005 (list 1 1 (or n yg))))))
8006 sd))
8008 (defun org-agenda-next-date-line (&optional arg)
8009 "Jump to the next line indicating a date in agenda buffer."
8010 (interactive "p")
8011 (org-agenda-check-type t 'agenda 'timeline)
8012 (beginning-of-line 1)
8013 ;; This does not work if user makes date format that starts with a blank
8014 (if (looking-at "^\\S-") (forward-char 1))
8015 (if (not (re-search-forward "^\\S-" nil t arg))
8016 (progn
8017 (backward-char 1)
8018 (error "No next date after this line in this buffer")))
8019 (goto-char (match-beginning 0)))
8021 (defun org-agenda-previous-date-line (&optional arg)
8022 "Jump to the previous line indicating a date in agenda buffer."
8023 (interactive "p")
8024 (org-agenda-check-type t 'agenda 'timeline)
8025 (beginning-of-line 1)
8026 (if (not (re-search-backward "^\\S-" nil t arg))
8027 (error "No previous date before this line in this buffer")))
8029 ;; Initialize the highlight
8030 (defvar org-hl (make-overlay 1 1))
8031 (overlay-put org-hl 'face 'highlight)
8033 (defun org-highlight (begin end &optional buffer)
8034 "Highlight a region with overlay."
8035 (move-overlay org-hl begin end (or buffer (current-buffer))))
8037 (defun org-unhighlight ()
8038 "Detach overlay INDEX."
8039 (org-detach-overlay org-hl))
8041 (defun org-unhighlight-once ()
8042 "Remove the highlight from its position, and this function from the hook."
8043 (remove-hook 'pre-command-hook 'org-unhighlight-once)
8044 (org-unhighlight))
8046 (defvar org-agenda-pre-follow-window-conf nil)
8047 (defun org-agenda-follow-mode ()
8048 "Toggle follow mode in an agenda buffer."
8049 (interactive)
8050 (unless org-agenda-follow-mode
8051 (setq org-agenda-pre-follow-window-conf
8052 (current-window-configuration)))
8053 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
8054 (unless org-agenda-follow-mode
8055 (set-window-configuration org-agenda-pre-follow-window-conf))
8056 (org-agenda-set-mode-name)
8057 (org-agenda-do-context-action)
8058 (message "Follow mode is %s"
8059 (if org-agenda-follow-mode "on" "off")))
8061 (defun org-agenda-entry-text-mode (&optional arg)
8062 "Toggle entry text mode in an agenda buffer."
8063 (interactive "P")
8064 (if (or org-agenda-tag-filter
8065 org-agenda-category-filter
8066 org-agenda-regexp-filter
8067 org-agenda-top-headline-filter)
8068 (user-error "Can't show entry text in filtered views")
8069 (setq org-agenda-entry-text-mode (or (integerp arg)
8070 (not org-agenda-entry-text-mode)))
8071 (org-agenda-entry-text-hide)
8072 (and org-agenda-entry-text-mode
8073 (let ((org-agenda-entry-text-maxlines
8074 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
8075 (org-agenda-entry-text-show)))
8076 (org-agenda-set-mode-name)
8077 (message "Entry text mode is %s%s"
8078 (if org-agenda-entry-text-mode "on" "off")
8079 (if (not org-agenda-entry-text-mode) ""
8080 (format " (maximum number of lines is %d)"
8081 (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
8083 (defun org-agenda-clockreport-mode (&optional with-filter)
8084 "Toggle clocktable mode in an agenda buffer.
8085 With prefix arg WITH-FILTER, make the clocktable respect the current
8086 agenda filter."
8087 (interactive "P")
8088 (org-agenda-check-type t 'agenda)
8089 (if with-filter
8090 (setq org-agenda-clockreport-mode 'with-filter)
8091 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
8092 (org-agenda-set-mode-name)
8093 (org-agenda-redo)
8094 (message "Clocktable mode is %s"
8095 (if org-agenda-clockreport-mode "on" "off")))
8097 (defun org-agenda-log-mode (&optional special)
8098 "Toggle log mode in an agenda buffer.
8099 With argument SPECIAL, show all possible log items, not only the ones
8100 configured in `org-agenda-log-mode-items'.
8101 With a double `C-u' prefix arg, show *only* log items, nothing else."
8102 (interactive "P")
8103 (org-agenda-check-type t 'agenda 'timeline)
8104 (setq org-agenda-show-log
8105 (cond
8106 ((equal special '(16)) 'only)
8107 ((eq special 'clockcheck)
8108 (if (eq org-agenda-show-log 'clockcheck)
8109 nil 'clockcheck))
8110 (special '(closed clock state))
8111 (t (not org-agenda-show-log))))
8112 (org-agenda-set-mode-name)
8113 (org-agenda-redo)
8114 (message "Log mode is %s"
8115 (if org-agenda-show-log "on" "off")))
8117 (defun org-agenda-archives-mode (&optional with-files)
8118 "Toggle inclusion of items in trees marked with :ARCHIVE:.
8119 When called with a prefix argument, include all archive files as well."
8120 (interactive "P")
8121 (setq org-agenda-archives-mode
8122 (if with-files t (if org-agenda-archives-mode nil 'trees)))
8123 (org-agenda-set-mode-name)
8124 (org-agenda-redo)
8125 (message
8126 "%s"
8127 (cond
8128 ((eq org-agenda-archives-mode nil)
8129 "No archives are included")
8130 ((eq org-agenda-archives-mode 'trees)
8131 (format "Trees with :%s: tag are included" org-archive-tag))
8132 ((eq org-agenda-archives-mode t)
8133 (format "Trees with :%s: tag and all active archive files are included"
8134 org-archive-tag)))))
8136 (defun org-agenda-toggle-diary ()
8137 "Toggle diary inclusion in an agenda buffer."
8138 (interactive)
8139 (org-agenda-check-type t 'agenda)
8140 (setq org-agenda-include-diary (not org-agenda-include-diary))
8141 (org-agenda-redo)
8142 (org-agenda-set-mode-name)
8143 (message "Diary inclusion turned %s"
8144 (if org-agenda-include-diary "on" "off")))
8146 (defun org-agenda-toggle-deadlines ()
8147 "Toggle inclusion of entries with a deadline in an agenda buffer."
8148 (interactive)
8149 (org-agenda-check-type t 'agenda)
8150 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
8151 (org-agenda-redo)
8152 (org-agenda-set-mode-name)
8153 (message "Deadlines inclusion turned %s"
8154 (if org-agenda-include-deadlines "on" "off")))
8156 (defun org-agenda-toggle-time-grid ()
8157 "Toggle time grid in an agenda buffer."
8158 (interactive)
8159 (org-agenda-check-type t 'agenda)
8160 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
8161 (org-agenda-redo)
8162 (org-agenda-set-mode-name)
8163 (message "Time-grid turned %s"
8164 (if org-agenda-use-time-grid "on" "off")))
8166 (defun org-agenda-set-mode-name ()
8167 "Set the mode name to indicate all the small mode settings."
8168 (setq mode-name
8169 (list "Org-Agenda"
8170 (if (get 'org-agenda-files 'org-restrict) " []" "")
8172 '(:eval (org-agenda-span-name org-agenda-current-span))
8173 (if org-agenda-follow-mode " Follow" "")
8174 (if org-agenda-entry-text-mode " ETxt" "")
8175 (if org-agenda-include-diary " Diary" "")
8176 (if org-agenda-include-deadlines " Ddl" "")
8177 (if org-agenda-use-time-grid " Grid" "")
8178 (if (and (boundp 'org-habit-show-habits)
8179 org-habit-show-habits) " Habit" "")
8180 (cond
8181 ((consp org-agenda-show-log) " LogAll")
8182 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
8183 (org-agenda-show-log " Log")
8184 (t ""))
8185 (if (or org-agenda-category-filter
8186 (get 'org-agenda-category-filter :preset-filter))
8187 '(:eval (org-propertize
8188 (concat " <"
8189 (mapconcat
8190 'identity
8191 (append
8192 (get 'org-agenda-category-filter :preset-filter)
8193 org-agenda-category-filter)
8195 ">")
8196 'face 'org-agenda-filter-category
8197 'help-echo "Category used in filtering")) "")
8198 (if (or org-agenda-tag-filter
8199 (get 'org-agenda-tag-filter :preset-filter))
8200 '(:eval (org-propertize
8201 (concat " {"
8202 (mapconcat
8203 'identity
8204 (append
8205 (get 'org-agenda-tag-filter :preset-filter)
8206 org-agenda-tag-filter)
8208 "}")
8209 'face 'org-agenda-filter-tags
8210 'help-echo "Tags used in filtering")) "")
8211 (if (or org-agenda-regexp-filter
8212 (get 'org-agenda-regexp-filter :preset-filter))
8213 '(:eval (org-propertize
8214 (concat " ["
8215 (mapconcat
8216 'identity
8217 (append
8218 (get 'org-agenda-regexp-filter :preset-filter)
8219 org-agenda-regexp-filter)
8221 "]")
8222 'face 'org-agenda-filter-regexp
8223 'help-echo "Regexp used in filtering")) "")
8224 (if org-agenda-archives-mode
8225 (if (eq org-agenda-archives-mode t)
8226 " Archives"
8227 (format " :%s:" org-archive-tag))
8229 (if org-agenda-clockreport-mode
8230 (if (eq org-agenda-clockreport-mode 'with-filter)
8231 " Clock{}" " Clock")
8232 "")))
8233 (force-mode-line-update))
8235 (define-obsolete-function-alias
8236 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
8238 (defun org-agenda-update-agenda-type ()
8239 "Update the agenda type after each command."
8240 (setq org-agenda-type
8241 (or (get-text-property (point) 'org-agenda-type)
8242 (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
8244 (defun org-agenda-next-line ()
8245 "Move cursor to the next line, and show if follow mode is active."
8246 (interactive)
8247 (call-interactively 'next-line)
8248 (org-agenda-do-context-action))
8250 (defun org-agenda-previous-line ()
8251 "Move cursor to the previous line, and show if follow-mode is active."
8252 (interactive)
8253 (call-interactively 'previous-line)
8254 (org-agenda-do-context-action))
8256 (defun org-agenda-next-item (n)
8257 "Move cursor to next agenda item."
8258 (interactive "p")
8259 (let ((col (current-column)))
8260 (dotimes (c n)
8261 (when (next-single-property-change (point-at-eol) 'org-marker)
8262 (move-end-of-line 1)
8263 (goto-char (next-single-property-change (point) 'org-marker))))
8264 (org-move-to-column col))
8265 (org-agenda-do-context-action))
8267 (defun org-agenda-previous-item (n)
8268 "Move cursor to next agenda item."
8269 (interactive "p")
8270 (dotimes (c n)
8271 (let ((col (current-column))
8272 (goto (save-excursion
8273 (move-end-of-line 0)
8274 (previous-single-property-change (point) 'org-marker))))
8275 (if goto (goto-char goto))
8276 (org-move-to-column col)))
8277 (org-agenda-do-context-action))
8279 (defun org-agenda-do-context-action ()
8280 "Show outline path and, maybe, follow mode window."
8281 (let ((m (org-get-at-bol 'org-marker)))
8282 (when (and (markerp m) (marker-buffer m))
8283 (and org-agenda-follow-mode
8284 (if org-agenda-follow-indirect
8285 (org-agenda-tree-to-indirect-buffer nil)
8286 (org-agenda-show)))
8287 (and org-agenda-show-outline-path
8288 (org-with-point-at m (org-display-outline-path t))))))
8290 (defun org-agenda-show-tags ()
8291 "Show the tags applicable to the current item."
8292 (interactive)
8293 (let* ((tags (org-get-at-bol 'tags)))
8294 (if tags
8295 (message "Tags are :%s:"
8296 (org-no-properties (mapconcat 'identity tags ":")))
8297 (message "No tags associated with this line"))))
8299 (defun org-agenda-goto (&optional highlight)
8300 "Go to the Org-mode file which contains the item at point."
8301 (interactive)
8302 (let* ((marker (or (org-get-at-bol 'org-marker)
8303 (org-agenda-error)))
8304 (buffer (marker-buffer marker))
8305 (pos (marker-position marker)))
8306 (switch-to-buffer-other-window buffer)
8307 (widen)
8308 (push-mark)
8309 (goto-char pos)
8310 (when (derived-mode-p 'org-mode)
8311 (org-show-context 'agenda)
8312 (save-excursion
8313 (and (outline-next-heading)
8314 (org-flag-heading nil)))) ; show the next heading
8315 (when (outline-invisible-p)
8316 (show-entry)) ; display invisible text
8317 (recenter (/ (window-height) 2))
8318 (run-hooks 'org-agenda-after-show-hook)
8319 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
8321 (defvar org-agenda-after-show-hook nil
8322 "Normal hook run after an item has been shown from the agenda.
8323 Point is in the buffer where the item originated.")
8325 (defun org-agenda-kill ()
8326 "Kill the entry or subtree belonging to the current agenda entry."
8327 (interactive)
8328 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8329 (let* ((bufname-orig (buffer-name))
8330 (marker (or (org-get-at-bol 'org-marker)
8331 (org-agenda-error)))
8332 (buffer (marker-buffer marker))
8333 (pos (marker-position marker))
8334 (type (org-get-at-bol 'type))
8335 dbeg dend (n 0) conf)
8336 (org-with-remote-undo buffer
8337 (with-current-buffer buffer
8338 (save-excursion
8339 (goto-char pos)
8340 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
8341 (setq dbeg (progn (org-back-to-heading t) (point))
8342 dend (org-end-of-subtree t t))
8343 (setq dbeg (point-at-bol)
8344 dend (min (point-max) (1+ (point-at-eol)))))
8345 (goto-char dbeg)
8346 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
8347 (setq conf (or (eq t org-agenda-confirm-kill)
8348 (and (numberp org-agenda-confirm-kill)
8349 (> n org-agenda-confirm-kill))))
8350 (and conf
8351 (not (y-or-n-p
8352 (format "Delete entry with %d lines in buffer \"%s\"? "
8353 n (buffer-name buffer))))
8354 (error "Abort"))
8355 (let ((org-agenda-buffer-name bufname-orig))
8356 (org-remove-subtree-entries-from-agenda buffer dbeg dend))
8357 (with-current-buffer buffer (delete-region dbeg dend))
8358 (message "Agenda item and source killed"))))
8360 (defvar org-archive-default-command) ; defined in org-archive.el
8361 (defun org-agenda-archive-default ()
8362 "Archive the entry or subtree belonging to the current agenda entry."
8363 (interactive)
8364 (require 'org-archive)
8365 (org-agenda-archive-with org-archive-default-command))
8367 (defun org-agenda-archive-default-with-confirmation ()
8368 "Archive the entry or subtree belonging to the current agenda entry."
8369 (interactive)
8370 (require 'org-archive)
8371 (org-agenda-archive-with org-archive-default-command 'confirm))
8373 (defun org-agenda-archive ()
8374 "Archive the entry or subtree belonging to the current agenda entry."
8375 (interactive)
8376 (org-agenda-archive-with 'org-archive-subtree))
8378 (defun org-agenda-archive-to-archive-sibling ()
8379 "Move the entry to the archive sibling."
8380 (interactive)
8381 (org-agenda-archive-with 'org-archive-to-archive-sibling))
8383 (defun org-agenda-archive-with (cmd &optional confirm)
8384 "Move the entry to the archive sibling."
8385 (interactive)
8386 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8387 (let* ((bufname-orig (buffer-name))
8388 (marker (or (org-get-at-bol 'org-marker)
8389 (org-agenda-error)))
8390 (buffer (marker-buffer marker))
8391 (pos (marker-position marker)))
8392 (org-with-remote-undo buffer
8393 (with-current-buffer buffer
8394 (if (derived-mode-p 'org-mode)
8395 (if (and confirm
8396 (not (y-or-n-p "Archive this subtree or entry? ")))
8397 (error "Abort")
8398 (save-window-excursion
8399 (goto-char pos)
8400 (let ((org-agenda-buffer-name bufname-orig))
8401 (org-remove-subtree-entries-from-agenda))
8402 (org-back-to-heading t)
8403 (funcall cmd)))
8404 (error "Archiving works only in Org-mode files"))))))
8406 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
8407 "Remove all lines in the agenda that correspond to a given subtree.
8408 The subtree is the one in buffer BUF, starting at BEG and ending at END.
8409 If this information is not given, the function uses the tree at point."
8410 (let ((buf (or buf (current-buffer))) m p)
8411 (save-excursion
8412 (unless (and beg end)
8413 (org-back-to-heading t)
8414 (setq beg (point))
8415 (org-end-of-subtree t)
8416 (setq end (point)))
8417 (set-buffer (get-buffer org-agenda-buffer-name))
8418 (save-excursion
8419 (goto-char (point-max))
8420 (beginning-of-line 1)
8421 (while (not (bobp))
8422 (when (and (setq m (org-get-at-bol 'org-marker))
8423 (equal buf (marker-buffer m))
8424 (setq p (marker-position m))
8425 (>= p beg)
8426 (< p end))
8427 (let ((inhibit-read-only t))
8428 (delete-region (point-at-bol) (1+ (point-at-eol)))))
8429 (beginning-of-line 0))))))
8431 (defun org-agenda-refile (&optional goto rfloc no-update)
8432 "Refile the item at point.
8434 When GOTO is 0 or '(64), clear the refile cache.
8435 When GOTO is '(16), go to the location of the last refiled item.
8436 RFLOC can be a refile location obtained in a different way.
8437 When NO-UPDATE is non-nil, don't redo the agenda buffer."
8438 (interactive "P")
8439 (cond
8440 ((member goto '(0 (64)))
8441 (org-refile-cache-clear))
8442 ((equal goto '(16))
8443 (org-refile-goto-last-stored))
8445 (let* ((buffer-orig (buffer-name))
8446 (marker (or (org-get-at-bol 'org-hd-marker)
8447 (org-agenda-error)))
8448 (buffer (marker-buffer marker))
8449 (pos (marker-position marker))
8450 (rfloc (or rfloc
8451 (org-refile-get-location
8452 (if goto "Goto" "Refile to") buffer
8453 org-refile-allow-creating-parent-nodes))))
8454 (with-current-buffer buffer
8455 (save-excursion
8456 (save-restriction
8457 (widen)
8458 (goto-char marker)
8459 (let ((org-agenda-buffer-name buffer-orig))
8460 (org-remove-subtree-entries-from-agenda))
8461 (org-refile goto buffer rfloc)))))
8462 (unless no-update (org-agenda-redo)))))
8464 (defun org-agenda-open-link (&optional arg)
8465 "Open the link(s) in the current entry, if any.
8466 This looks for a link in the displayed line in the agenda.
8467 It also looks at the text of the entry itself."
8468 (interactive "P")
8469 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
8470 (org-get-at-bol 'org-marker)))
8471 (buffer (and marker (marker-buffer marker)))
8472 (prefix (buffer-substring (point-at-bol) (point-at-eol)))
8473 (lkall (and buffer (org-offer-links-in-entry
8474 buffer marker arg prefix)))
8475 (lk0 (car lkall))
8476 (lk (if (stringp lk0) (list lk0) lk0))
8477 (lkend (cdr lkall))
8478 trg)
8479 (cond
8480 ((and buffer lk)
8481 (mapcar (lambda(l)
8482 (with-current-buffer buffer
8483 (setq trg (and (string-match org-bracket-link-regexp l)
8484 (match-string 1 l)))
8485 (if (or (not trg) (string-match org-any-link-re trg))
8486 (save-excursion
8487 (save-restriction
8488 (widen)
8489 (goto-char marker)
8490 (when (search-forward l nil lkend)
8491 (goto-char (match-beginning 0))
8492 (org-open-at-point))))
8493 ;; This is an internal link, widen the buffer
8494 (switch-to-buffer-other-window buffer)
8495 (widen)
8496 (goto-char marker)
8497 (when (search-forward l nil lkend)
8498 (goto-char (match-beginning 0))
8499 (org-open-at-point)))))
8500 lk))
8501 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
8502 (save-excursion
8503 (beginning-of-line 1)
8504 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
8505 (org-open-link-from-string (match-string 1)))
8506 (t (message "No link to open here")))))
8508 (defun org-agenda-copy-local-variable (var)
8509 "Get a variable from a referenced buffer and install it here."
8510 (let ((m (org-get-at-bol 'org-marker)))
8511 (when (and m (buffer-live-p (marker-buffer m)))
8512 (org-set-local var (with-current-buffer (marker-buffer m)
8513 (symbol-value var))))))
8515 (defun org-agenda-switch-to (&optional delete-other-windows)
8516 "Go to the Org-mode file which contains the item at point."
8517 (interactive)
8518 (if (and org-return-follows-link
8519 (not (org-get-at-bol 'org-marker))
8520 (org-in-regexp org-bracket-link-regexp))
8521 (org-open-link-from-string (match-string 0))
8522 (let* ((marker (or (org-get-at-bol 'org-marker)
8523 (org-agenda-error)))
8524 (buffer (marker-buffer marker))
8525 (pos (marker-position marker)))
8526 (org-pop-to-buffer-same-window buffer)
8527 (and delete-other-windows (delete-other-windows))
8528 (widen)
8529 (goto-char pos)
8530 (org-back-to-heading t)
8531 (when (derived-mode-p 'org-mode)
8532 (org-show-context 'agenda)
8533 (save-excursion
8534 (and (outline-next-heading)
8535 (org-flag-heading nil))) ; show the next heading
8536 (when (outline-invisible-p)
8537 (show-entry)) ; display invisible text
8538 (run-hooks 'org-agenda-after-show-hook)))))
8540 (defun org-agenda-goto-mouse (ev)
8541 "Go to the Org-mode file which contains the item at the mouse click."
8542 (interactive "e")
8543 (mouse-set-point ev)
8544 (org-agenda-goto))
8546 (defun org-agenda-show (&optional full-entry)
8547 "Display the Org-mode file which contains the item at point.
8548 With prefix argument FULL-ENTRY, make the entire entry visible
8549 if it was hidden in the outline."
8550 (interactive "P")
8551 (let ((win (selected-window)))
8552 (if full-entry
8553 (let ((org-show-entry-below t))
8554 (org-agenda-goto t))
8555 (org-agenda-goto t))
8556 (select-window win)))
8558 (defvar org-agenda-show-window nil)
8559 (defun org-agenda-show-and-scroll-up (&optional arg)
8560 "Display the Org-mode file which contains the item at point.
8561 When called repeatedly, scroll the window that is displaying the buffer.
8562 With a \\[universal-argument] prefix, use `org-show-entry' instead of
8563 `show-subtree' to display the item, so that drawers and logbooks stay
8564 folded."
8565 (interactive "P")
8566 (let ((win (selected-window)))
8567 (if (and (window-live-p org-agenda-show-window)
8568 (eq this-command last-command))
8569 (progn
8570 (select-window org-agenda-show-window)
8571 (ignore-errors (scroll-up)))
8572 (org-agenda-goto t)
8573 (if arg (org-show-entry) (show-subtree))
8574 (setq org-agenda-show-window (selected-window)))
8575 (select-window win)))
8577 (defun org-agenda-show-scroll-down ()
8578 "Scroll down the window showing the agenda."
8579 (interactive)
8580 (let ((win (selected-window)))
8581 (when (window-live-p org-agenda-show-window)
8582 (select-window org-agenda-show-window)
8583 (ignore-errors (scroll-down))
8584 (select-window win))))
8586 (defun org-agenda-show-1 (&optional more)
8587 "Display the Org-mode file which contains the item at point.
8588 The prefix arg selects the amount of information to display:
8590 0 hide the subtree
8591 1 just show the entry according to defaults.
8592 2 show the children view
8593 3 show the subtree view
8594 4 show the entire subtree and any LOGBOOK drawers
8595 5 show the entire subtree and any drawers
8596 With prefix argument FULL-ENTRY, make the entire entry visible
8597 if it was hidden in the outline."
8598 (interactive "p")
8599 (let ((win (selected-window)))
8600 (org-agenda-goto t)
8601 (org-recenter-heading 1)
8602 (cond
8603 ((= more 0)
8604 (hide-subtree)
8605 (save-excursion
8606 (org-back-to-heading)
8607 (run-hook-with-args 'org-cycle-hook 'folded))
8608 (message "Remote: FOLDED"))
8609 ((and (org-called-interactively-p 'any) (= more 1))
8610 (message "Remote: show with default settings"))
8611 ((= more 2)
8612 (show-entry)
8613 (show-children)
8614 (save-excursion
8615 (org-back-to-heading)
8616 (run-hook-with-args 'org-cycle-hook 'children))
8617 (message "Remote: CHILDREN"))
8618 ((= more 3)
8619 (show-subtree)
8620 (save-excursion
8621 (org-back-to-heading)
8622 (run-hook-with-args 'org-cycle-hook 'subtree))
8623 (message "Remote: SUBTREE"))
8624 ((= more 4)
8625 (show-subtree)
8626 (save-excursion
8627 (org-back-to-heading)
8628 (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
8629 (message "Remote: SUBTREE AND LOGBOOK"))
8630 ((> more 4)
8631 (show-subtree)
8632 (message "Remote: SUBTREE AND ALL DRAWERS")))
8633 (select-window win)))
8635 (defun org-recenter-heading (n)
8636 (save-excursion
8637 (org-back-to-heading)
8638 (recenter n)))
8640 (defvar org-agenda-cycle-counter nil)
8641 (defun org-agenda-cycle-show (&optional n)
8642 "Show the current entry in another window, with default settings.
8643 Default settings are taken from `org-show-hierarchy-above' and siblings.
8644 When use repeatedly in immediate succession, the remote entry will cycle
8645 through visibility
8647 children -> subtree -> folded
8649 When called with a numeric prefix arg, that arg will be passed through to
8650 `org-agenda-show-1'. For the interpretation of that argument, see the
8651 docstring of `org-agenda-show-1'."
8652 (interactive "P")
8653 (if (integerp n)
8654 (setq org-agenda-cycle-counter n)
8655 (if (not (eq last-command this-command))
8656 (setq org-agenda-cycle-counter 1)
8657 (if (equal org-agenda-cycle-counter 0)
8658 (setq org-agenda-cycle-counter 2)
8659 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
8660 (if (> org-agenda-cycle-counter 3)
8661 (setq org-agenda-cycle-counter 0)))))
8662 (org-agenda-show-1 org-agenda-cycle-counter))
8664 (defun org-agenda-recenter (arg)
8665 "Display the Org-mode file which contains the item at point and recenter."
8666 (interactive "P")
8667 (let ((win (selected-window)))
8668 (org-agenda-goto t)
8669 (recenter arg)
8670 (select-window win)))
8672 (defun org-agenda-show-mouse (ev)
8673 "Display the Org-mode file which contains the item at the mouse click."
8674 (interactive "e")
8675 (mouse-set-point ev)
8676 (org-agenda-show))
8678 (defun org-agenda-check-no-diary ()
8679 "Check if the entry is a diary link and abort if yes."
8680 (if (org-get-at-bol 'org-agenda-diary-link)
8681 (org-agenda-error)))
8683 (defun org-agenda-error ()
8684 "Throw an error when a command is not allowed in the agenda."
8685 (user-error "Command not allowed in this line"))
8687 (defun org-agenda-tree-to-indirect-buffer (arg)
8688 "Show the subtree corresponding to the current entry in an indirect buffer.
8689 This calls the command `org-tree-to-indirect-buffer' from the original buffer.
8691 With a numerical prefix ARG, go up to this level and then take that tree.
8692 With a negative numeric ARG, go up by this number of levels.
8693 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
8694 use the dedicated frame)."
8695 (interactive "P")
8696 (if current-prefix-arg
8697 (org-agenda-do-tree-to-indirect-buffer arg)
8698 (let ((agenda-buffer (buffer-name))
8699 (agenda-window (selected-window))
8700 (indirect-window
8701 (and org-last-indirect-buffer
8702 (get-buffer-window org-last-indirect-buffer))))
8703 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
8704 (unless (or (eq org-indirect-buffer-display 'new-frame)
8705 (eq org-indirect-buffer-display 'dedicated-frame))
8706 (unwind-protect
8707 (unless (and indirect-window (window-live-p indirect-window))
8708 (setq indirect-window (split-window agenda-window)))
8709 (and indirect-window (select-window indirect-window))
8710 (switch-to-buffer org-last-indirect-buffer :norecord)
8711 (fit-window-to-buffer indirect-window)))
8712 (select-window (get-buffer-window agenda-buffer)))))
8714 (defun org-agenda-do-tree-to-indirect-buffer (arg)
8715 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
8716 (org-agenda-check-no-diary)
8717 (let* ((marker (or (org-get-at-bol 'org-marker)
8718 (org-agenda-error)))
8719 (buffer (marker-buffer marker))
8720 (pos (marker-position marker)))
8721 (with-current-buffer buffer
8722 (save-excursion
8723 (goto-char pos)
8724 (funcall 'org-tree-to-indirect-buffer arg)))))
8726 (defvar org-last-heading-marker (make-marker)
8727 "Marker pointing to the headline that last changed its TODO state
8728 by a remote command from the agenda.")
8730 (defun org-agenda-todo-nextset ()
8731 "Switch TODO entry to next sequence."
8732 (interactive)
8733 (org-agenda-todo 'nextset))
8735 (defun org-agenda-todo-previousset ()
8736 "Switch TODO entry to previous sequence."
8737 (interactive)
8738 (org-agenda-todo 'previousset))
8740 (defun org-agenda-todo (&optional arg)
8741 "Cycle TODO state of line at point, also in Org-mode file.
8742 This changes the line at point, all other lines in the agenda referring to
8743 the same tree node, and the headline of the tree node in the Org-mode file."
8744 (interactive "P")
8745 (org-agenda-check-no-diary)
8746 (let* ((col (current-column))
8747 (marker (or (org-get-at-bol 'org-marker)
8748 (org-agenda-error)))
8749 (buffer (marker-buffer marker))
8750 (pos (marker-position marker))
8751 (hdmarker (org-get-at-bol 'org-hd-marker))
8752 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
8753 (inhibit-read-only t)
8754 org-agenda-headline-snapshot-before-repeat newhead just-one)
8755 (org-with-remote-undo buffer
8756 (with-current-buffer buffer
8757 (widen)
8758 (goto-char pos)
8759 (org-show-context 'agenda)
8760 (save-excursion
8761 (and (outline-next-heading)
8762 (org-flag-heading nil))) ; show the next heading
8763 (let ((current-prefix-arg arg))
8764 (call-interactively 'org-todo))
8765 (and (bolp) (forward-char 1))
8766 (setq newhead (org-get-heading))
8767 (when (and (org-bound-and-true-p
8768 org-agenda-headline-snapshot-before-repeat)
8769 (not (equal org-agenda-headline-snapshot-before-repeat
8770 newhead))
8771 todayp)
8772 (setq newhead org-agenda-headline-snapshot-before-repeat
8773 just-one t))
8774 (save-excursion
8775 (org-back-to-heading)
8776 (move-marker org-last-heading-marker (point))))
8777 (beginning-of-line 1)
8778 (save-window-excursion
8779 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
8780 (when (org-bound-and-true-p org-clock-out-when-done)
8781 (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
8782 newhead)
8783 (org-agenda-unmark-clocking-task))
8784 (org-move-to-column col))))
8786 (defun org-agenda-add-note (&optional arg)
8787 "Add a time-stamped note to the entry at point."
8788 (interactive "P")
8789 (org-agenda-check-no-diary)
8790 (let* ((marker (or (org-get-at-bol 'org-marker)
8791 (org-agenda-error)))
8792 (buffer (marker-buffer marker))
8793 (pos (marker-position marker))
8794 (hdmarker (org-get-at-bol 'org-hd-marker))
8795 (inhibit-read-only t))
8796 (with-current-buffer buffer
8797 (widen)
8798 (goto-char pos)
8799 (org-show-context 'agenda)
8800 (save-excursion
8801 (and (outline-next-heading)
8802 (org-flag-heading nil))) ; show the next heading
8803 (org-add-note))))
8805 (defun org-agenda-change-all-lines (newhead hdmarker
8806 &optional fixface just-this)
8807 "Change all lines in the agenda buffer which match HDMARKER.
8808 The new content of the line will be NEWHEAD (as modified by
8809 `org-agenda-format-item'). HDMARKER is checked with
8810 `equal' against all `org-hd-marker' text properties in the file.
8811 If FIXFACE is non-nil, the face of each item is modified according to
8812 the new TODO state.
8813 If JUST-THIS is non-nil, change just the current line, not all.
8814 If FORCE-TAGS is non nil, the car of it returns the new tags."
8815 (let* ((inhibit-read-only t)
8816 (line (org-current-line))
8817 (org-agenda-buffer (current-buffer))
8818 (thetags (with-current-buffer (marker-buffer hdmarker)
8819 (save-excursion (save-restriction (widen)
8820 (goto-char hdmarker)
8821 (org-get-tags-at)))))
8822 props m pl undone-face done-face finish new dotime level cat tags)
8823 (save-excursion
8824 (goto-char (point-max))
8825 (beginning-of-line 1)
8826 (while (not finish)
8827 (setq finish (bobp))
8828 (when (and (setq m (org-get-at-bol 'org-hd-marker))
8829 (or (not just-this) (= (org-current-line) line))
8830 (equal m hdmarker))
8831 (setq props (text-properties-at (point))
8832 dotime (org-get-at-bol 'dotime)
8833 cat (org-get-at-eol 'org-category 1)
8834 level (org-get-at-bol 'level)
8835 tags thetags
8837 (let ((org-prefix-format-compiled
8838 (or (get-text-property (min (1- (point-max)) (point)) 'format)
8839 org-prefix-format-compiled))
8840 (extra (org-get-at-bol 'extra)))
8841 (with-current-buffer (marker-buffer hdmarker)
8842 (save-excursion
8843 (save-restriction
8844 (widen)
8845 (org-agenda-format-item extra newhead level cat tags dotime)))))
8846 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
8847 undone-face (org-get-at-bol 'undone-face)
8848 done-face (org-get-at-bol 'done-face))
8849 (beginning-of-line 1)
8850 (cond
8851 ((equal new "")
8852 (and (looking-at ".*\n?") (replace-match "")))
8853 ((looking-at ".*")
8854 (replace-match new t t)
8855 (beginning-of-line 1)
8856 (add-text-properties (point-at-bol) (point-at-eol) props)
8857 (when fixface
8858 (add-text-properties
8859 (point-at-bol) (point-at-eol)
8860 (list 'face
8861 (if org-last-todo-state-is-todo
8862 undone-face done-face))))
8863 (org-agenda-highlight-todo 'line)
8864 (beginning-of-line 1))
8865 (t (error "Line update did not work")))
8866 (save-restriction
8867 (narrow-to-region (point-at-bol) (point-at-eol))
8868 (org-agenda-finalize)))
8869 (beginning-of-line 0)))))
8871 (defun org-agenda-align-tags (&optional line)
8872 "Align all tags in agenda items to `org-agenda-tags-column'."
8873 (let ((inhibit-read-only t) l c)
8874 (save-excursion
8875 (goto-char (if line (point-at-bol) (point-min)))
8876 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
8877 (if line (point-at-eol) nil) t)
8878 (add-text-properties
8879 (match-beginning 2) (match-end 2)
8880 (list 'face (delq nil (let ((prop (get-text-property
8881 (match-beginning 2) 'face)))
8882 (or (listp prop) (setq prop (list prop)))
8883 (if (memq 'org-tag prop)
8884 prop
8885 (cons 'org-tag prop))))))
8886 (setq l (- (match-end 2) (match-beginning 2))
8887 c (if (< org-agenda-tags-column 0)
8888 (- (abs org-agenda-tags-column) l)
8889 org-agenda-tags-column))
8890 (delete-region (match-beginning 1) (match-end 1))
8891 (goto-char (match-beginning 1))
8892 (insert (org-add-props
8893 (make-string (max 1 (- c (current-column))) ?\ )
8894 (plist-put (copy-sequence (text-properties-at (point)))
8895 'face nil))))
8896 (goto-char (point-min))
8897 (org-font-lock-add-tag-faces (point-max)))))
8899 (defun org-agenda-priority-up ()
8900 "Increase the priority of line at point, also in Org-mode file."
8901 (interactive)
8902 (org-agenda-priority 'up))
8904 (defun org-agenda-priority-down ()
8905 "Decrease the priority of line at point, also in Org-mode file."
8906 (interactive)
8907 (org-agenda-priority 'down))
8909 (defun org-agenda-priority (&optional force-direction)
8910 "Set the priority of line at point, also in Org-mode file.
8911 This changes the line at point, all other lines in the agenda referring to
8912 the same tree node, and the headline of the tree node in the Org-mode file.
8913 Called with a universal prefix arg, show the priority instead of setting it."
8914 (interactive "P")
8915 (if (equal force-direction '(4))
8916 (org-show-priority)
8917 (unless org-enable-priority-commands
8918 (error "Priority commands are disabled"))
8919 (org-agenda-check-no-diary)
8920 (let* ((col (current-column))
8921 (marker (or (org-get-at-bol 'org-marker)
8922 (org-agenda-error)))
8923 (hdmarker (org-get-at-bol 'org-hd-marker))
8924 (buffer (marker-buffer hdmarker))
8925 (pos (marker-position hdmarker))
8926 (inhibit-read-only t)
8927 newhead)
8928 (org-with-remote-undo buffer
8929 (with-current-buffer buffer
8930 (widen)
8931 (goto-char pos)
8932 (org-show-context 'agenda)
8933 (save-excursion
8934 (and (outline-next-heading)
8935 (org-flag-heading nil))) ; show the next heading
8936 (funcall 'org-priority force-direction)
8937 (end-of-line 1)
8938 (setq newhead (org-get-heading)))
8939 (org-agenda-change-all-lines newhead hdmarker)
8940 (org-move-to-column col)))))
8942 ;; FIXME: should fix the tags property of the agenda line.
8943 (defun org-agenda-set-tags (&optional tag onoff)
8944 "Set tags for the current headline."
8945 (interactive)
8946 (org-agenda-check-no-diary)
8947 (if (and (org-region-active-p) (org-called-interactively-p 'any))
8948 (call-interactively 'org-change-tag-in-region)
8949 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8950 (org-agenda-error)))
8951 (buffer (marker-buffer hdmarker))
8952 (pos (marker-position hdmarker))
8953 (inhibit-read-only t)
8954 newhead)
8955 (org-with-remote-undo buffer
8956 (with-current-buffer buffer
8957 (widen)
8958 (goto-char pos)
8959 (save-excursion
8960 (org-show-context 'agenda))
8961 (save-excursion
8962 (and (outline-next-heading)
8963 (org-flag-heading nil))) ; show the next heading
8964 (goto-char pos)
8965 (if tag
8966 (org-toggle-tag tag onoff)
8967 (call-interactively 'org-set-tags))
8968 (end-of-line 1)
8969 (setq newhead (org-get-heading)))
8970 (org-agenda-change-all-lines newhead hdmarker)
8971 (beginning-of-line 1)))))
8973 (defun org-agenda-set-property ()
8974 "Set a property for the current headline."
8975 (interactive)
8976 (org-agenda-check-no-diary)
8977 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
8978 (org-agenda-error)))
8979 (buffer (marker-buffer hdmarker))
8980 (pos (marker-position hdmarker))
8981 (inhibit-read-only t)
8982 newhead)
8983 (org-with-remote-undo buffer
8984 (with-current-buffer buffer
8985 (widen)
8986 (goto-char pos)
8987 (save-excursion
8988 (org-show-context 'agenda))
8989 (save-excursion
8990 (and (outline-next-heading)
8991 (org-flag-heading nil))) ; show the next heading
8992 (goto-char pos)
8993 (call-interactively 'org-set-property)))))
8995 (defun org-agenda-set-effort ()
8996 "Set the effort property for the current headline."
8997 (interactive)
8998 (org-agenda-check-no-diary)
8999 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9000 (org-agenda-error)))
9001 (buffer (marker-buffer hdmarker))
9002 (pos (marker-position hdmarker))
9003 (inhibit-read-only t)
9004 newhead)
9005 (org-with-remote-undo buffer
9006 (with-current-buffer buffer
9007 (widen)
9008 (goto-char pos)
9009 (save-excursion
9010 (org-show-context 'agenda))
9011 (save-excursion
9012 (and (outline-next-heading)
9013 (org-flag-heading nil))) ; show the next heading
9014 (goto-char pos)
9015 (call-interactively 'org-set-effort)
9016 (end-of-line 1)
9017 (setq newhead (org-get-heading)))
9018 (org-agenda-change-all-lines newhead hdmarker))))
9020 (defun org-agenda-toggle-archive-tag ()
9021 "Toggle the archive tag for the current entry."
9022 (interactive)
9023 (org-agenda-check-no-diary)
9024 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9025 (org-agenda-error)))
9026 (buffer (marker-buffer hdmarker))
9027 (pos (marker-position hdmarker))
9028 (inhibit-read-only t)
9029 newhead)
9030 (org-with-remote-undo buffer
9031 (with-current-buffer buffer
9032 (widen)
9033 (goto-char pos)
9034 (org-show-context 'agenda)
9035 (save-excursion
9036 (and (outline-next-heading)
9037 (org-flag-heading nil))) ; show the next heading
9038 (call-interactively 'org-toggle-archive-tag)
9039 (end-of-line 1)
9040 (setq newhead (org-get-heading)))
9041 (org-agenda-change-all-lines newhead hdmarker)
9042 (beginning-of-line 1))))
9044 (defun org-agenda-do-date-later (arg)
9045 (interactive "P")
9046 (cond
9047 ((or (equal arg '(16))
9048 (memq last-command
9049 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9050 (setq this-command 'org-agenda-date-later-minutes)
9051 (org-agenda-date-later-minutes 1))
9052 ((or (equal arg '(4))
9053 (memq last-command
9054 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9055 (setq this-command 'org-agenda-date-later-hours)
9056 (org-agenda-date-later-hours 1))
9058 (org-agenda-date-later (prefix-numeric-value arg)))))
9060 (defun org-agenda-do-date-earlier (arg)
9061 (interactive "P")
9062 (cond
9063 ((or (equal arg '(16))
9064 (memq last-command
9065 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9066 (setq this-command 'org-agenda-date-earlier-minutes)
9067 (org-agenda-date-earlier-minutes 1))
9068 ((or (equal arg '(4))
9069 (memq last-command
9070 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9071 (setq this-command 'org-agenda-date-earlier-hours)
9072 (org-agenda-date-earlier-hours 1))
9074 (org-agenda-date-earlier (prefix-numeric-value arg)))))
9076 (defun org-agenda-date-later (arg &optional what)
9077 "Change the date of this item to ARG day(s) later."
9078 (interactive "p")
9079 (org-agenda-check-type t 'agenda 'timeline)
9080 (org-agenda-check-no-diary)
9081 (let* ((marker (or (org-get-at-bol 'org-marker)
9082 (org-agenda-error)))
9083 (buffer (marker-buffer marker))
9084 (pos (marker-position marker))
9085 cdate today)
9086 (org-with-remote-undo buffer
9087 (with-current-buffer buffer
9088 (widen)
9089 (goto-char pos)
9090 (if (not (org-at-timestamp-p))
9091 (error "Cannot find time stamp"))
9092 (when (and org-agenda-move-date-from-past-immediately-to-today
9093 (equal arg 1)
9094 (or (not what) (eq what 'day))
9095 (not (save-match-data (org-at-date-range-p))))
9096 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
9097 cdate (calendar-absolute-from-gregorian
9098 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
9099 today (org-today))
9100 (if (> today cdate)
9101 ;; immediately shift to today
9102 (setq arg (- today cdate))))
9103 (org-timestamp-change arg (or what 'day))
9104 (when (and (org-at-date-range-p)
9105 (re-search-backward org-tr-regexp-both (point-at-bol)))
9106 (let ((end org-last-changed-timestamp))
9107 (org-timestamp-change arg (or what 'day))
9108 (setq org-last-changed-timestamp
9109 (concat org-last-changed-timestamp "--" end)))))
9110 (org-agenda-show-new-time marker org-last-changed-timestamp))
9111 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9113 (defun org-agenda-date-earlier (arg &optional what)
9114 "Change the date of this item to ARG day(s) earlier."
9115 (interactive "p")
9116 (org-agenda-date-later (- arg) what))
9118 (defun org-agenda-date-later-minutes (arg)
9119 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9120 (interactive "p")
9121 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9122 (org-agenda-date-later arg 'minute))
9124 (defun org-agenda-date-earlier-minutes (arg)
9125 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9126 (interactive "p")
9127 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9128 (org-agenda-date-earlier arg 'minute))
9130 (defun org-agenda-date-later-hours (arg)
9131 "Change the time of this item, in hour steps."
9132 (interactive "p")
9133 (org-agenda-date-later arg 'hour))
9135 (defun org-agenda-date-earlier-hours (arg)
9136 "Change the time of this item, in hour steps."
9137 (interactive "p")
9138 (org-agenda-date-earlier arg 'hour))
9140 (defun org-agenda-show-new-time (marker stamp &optional prefix)
9141 "Show new date stamp via text properties."
9142 ;; We use text properties to make this undoable
9143 (let ((inhibit-read-only t))
9144 (setq stamp (concat prefix " => " stamp " "))
9145 (save-excursion
9146 (goto-char (point-max))
9147 (while (not (bobp))
9148 (when (equal marker (org-get-at-bol 'org-marker))
9149 (remove-text-properties (point-at-bol) (point-at-eol) '(display))
9150 (org-move-to-column (- (window-width) (length stamp)) t)
9151 (if (featurep 'xemacs)
9152 ;; Use `duplicable' property to trigger undo recording
9153 (let ((ex (make-extent nil nil))
9154 (gl (make-glyph stamp)))
9155 (set-glyph-face gl 'secondary-selection)
9156 (set-extent-properties
9157 ex (list 'invisible t 'end-glyph gl 'duplicable t))
9158 (insert-extent ex (1- (point)) (point-at-eol)))
9159 (add-text-properties
9160 (1- (point)) (point-at-eol)
9161 (list 'display (org-add-props stamp nil
9162 'face '(secondary-selection default)))))
9163 (beginning-of-line 1))
9164 (beginning-of-line 0)))))
9166 (defun org-agenda-date-prompt (arg)
9167 "Change the date of this item. Date is prompted for, with default today.
9168 The prefix ARG is passed to the `org-time-stamp' command and can therefore
9169 be used to request time specification in the time stamp."
9170 (interactive "P")
9171 (org-agenda-check-type t 'agenda 'timeline)
9172 (org-agenda-check-no-diary)
9173 (let* ((marker (or (org-get-at-bol 'org-marker)
9174 (org-agenda-error)))
9175 (buffer (marker-buffer marker))
9176 (pos (marker-position marker)))
9177 (org-with-remote-undo buffer
9178 (with-current-buffer buffer
9179 (widen)
9180 (goto-char pos)
9181 (if (not (org-at-timestamp-p t))
9182 (error "Cannot find time stamp"))
9183 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
9184 (org-agenda-show-new-time marker org-last-changed-timestamp))
9185 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9187 (defun org-agenda-schedule (arg &optional time)
9188 "Schedule the item at point.
9189 ARG is passed through to `org-schedule'."
9190 (interactive "P")
9191 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9192 (org-agenda-check-no-diary)
9193 (let* ((marker (or (org-get-at-bol 'org-marker)
9194 (org-agenda-error)))
9195 (type (marker-insertion-type marker))
9196 (buffer (marker-buffer marker))
9197 (pos (marker-position marker))
9198 (org-insert-labeled-timestamps-at-point nil)
9200 (set-marker-insertion-type marker t)
9201 (org-with-remote-undo buffer
9202 (with-current-buffer buffer
9203 (widen)
9204 (goto-char pos)
9205 (setq ts (org-schedule arg time)))
9206 (org-agenda-show-new-time marker ts " S"))
9207 (message "%s" ts)))
9209 (defun org-agenda-deadline (arg &optional time)
9210 "Schedule the item at point.
9211 ARG is passed through to `org-deadline'."
9212 (interactive "P")
9213 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9214 (org-agenda-check-no-diary)
9215 (let* ((marker (or (org-get-at-bol 'org-marker)
9216 (org-agenda-error)))
9217 (buffer (marker-buffer marker))
9218 (pos (marker-position marker))
9219 (org-insert-labeled-timestamps-at-point nil)
9221 (org-with-remote-undo buffer
9222 (with-current-buffer buffer
9223 (widen)
9224 (goto-char pos)
9225 (setq ts (org-deadline arg time)))
9226 (org-agenda-show-new-time marker ts " D"))
9227 (message "%s" ts)))
9229 (defun org-agenda-clock-in (&optional arg)
9230 "Start the clock on the currently selected item."
9231 (interactive "P")
9232 (org-agenda-check-no-diary)
9233 (if (equal arg '(4))
9234 (org-clock-in arg)
9235 (let* ((marker (or (org-get-at-bol 'org-marker)
9236 (org-agenda-error)))
9237 (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
9238 (pos (marker-position marker))
9239 (col (current-column))
9240 newhead)
9241 (org-with-remote-undo (marker-buffer marker)
9242 (with-current-buffer (marker-buffer marker)
9243 (widen)
9244 (goto-char pos)
9245 (org-show-context 'agenda)
9246 (org-show-entry)
9247 (org-cycle-hide-drawers 'children)
9248 (org-clock-in arg)
9249 (setq newhead (org-get-heading)))
9250 (org-agenda-change-all-lines newhead hdmarker))
9251 (org-move-to-column col))))
9253 (defun org-agenda-clock-out ()
9254 "Stop the currently running clock."
9255 (interactive)
9256 (unless (marker-buffer org-clock-marker)
9257 (error "No running clock"))
9258 (let ((marker (make-marker)) (col (current-column)) newhead)
9259 (org-with-remote-undo (marker-buffer org-clock-marker)
9260 (with-current-buffer (marker-buffer org-clock-marker)
9261 (save-excursion
9262 (save-restriction
9263 (widen)
9264 (goto-char org-clock-marker)
9265 (org-back-to-heading t)
9266 (move-marker marker (point))
9267 (org-clock-out)
9268 (setq newhead (org-get-heading))))))
9269 (org-agenda-change-all-lines newhead marker)
9270 (move-marker marker nil)
9271 (org-move-to-column col)
9272 (org-agenda-unmark-clocking-task)))
9274 (defun org-agenda-clock-cancel (&optional arg)
9275 "Cancel the currently running clock."
9276 (interactive "P")
9277 (unless (marker-buffer org-clock-marker)
9278 (user-error "No running clock"))
9279 (org-with-remote-undo (marker-buffer org-clock-marker)
9280 (org-clock-cancel)))
9282 (defun org-agenda-clock-goto ()
9283 "Jump to the currently clocked in task within the agenda.
9284 If the currently clocked in task is not listed in the agenda
9285 buffer, display it in another window."
9286 (interactive)
9287 (let (pos)
9288 (mapc (lambda (o)
9289 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
9290 (setq pos (overlay-start o))))
9291 (overlays-in (point-min) (point-max)))
9292 (cond (pos (goto-char pos))
9293 ;; If the currently clocked entry is not in the agenda
9294 ;; buffer, we visit it in another window:
9295 (org-clock-current-task
9296 (org-switch-to-buffer-other-window (org-clock-goto)))
9297 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
9299 (defun org-agenda-diary-entry-in-org-file ()
9300 "Make a diary entry in the file `org-agenda-diary-file'."
9301 (let (d1 d2 char (text "") dp1 dp2)
9302 (if (equal (buffer-name) "*Calendar*")
9303 (setq d1 (calendar-cursor-to-date t)
9304 d2 (car calendar-mark-ring))
9305 (setq dp1 (get-text-property (point-at-bol) 'day))
9306 (unless dp1 (user-error "No date defined in current line"))
9307 (setq d1 (calendar-gregorian-from-absolute dp1)
9308 d2 (and (ignore-errors (mark))
9309 (save-excursion
9310 (goto-char (mark))
9311 (setq dp2 (get-text-property (point-at-bol) 'day)))
9312 (calendar-gregorian-from-absolute dp2))))
9313 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
9314 (setq char (read-char-exclusive))
9315 (cond
9316 ((equal char ?d)
9317 (setq text (read-string "Day entry: "))
9318 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
9319 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9320 ((equal char ?a)
9321 (setq d1 (list (car d1) (nth 1 d1)
9322 (read-number (format "Reference year [%d]: " (nth 2 d1))
9323 (nth 2 d1))))
9324 (setq text (read-string "Anniversary (use %d to show years): "))
9325 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
9326 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9327 ((equal char ?b)
9328 (setq text (read-string "Block entry: "))
9329 (unless (and d1 d2 (not (equal d1 d2)))
9330 (user-error "No block of days selected"))
9331 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
9332 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9333 ((equal char ?j)
9334 (org-switch-to-buffer-other-window
9335 (find-file-noselect org-agenda-diary-file))
9336 (require 'org-datetree)
9337 (org-datetree-find-date-create d1)
9338 (org-reveal t))
9339 (t (user-error "Invalid selection character `%c'" char)))))
9341 (defcustom org-agenda-insert-diary-strategy 'date-tree
9342 "Where in `org-agenda-diary-file' should new entries be added?
9343 Valid values:
9345 date-tree in the date tree, as child of the date
9346 top-level as top-level entries at the end of the file."
9347 :group 'org-agenda
9348 :type '(choice
9349 (const :tag "in a date tree" date-tree)
9350 (const :tag "as top level at end of file" top-level)))
9352 (defcustom org-agenda-insert-diary-extract-time nil
9353 "Non-nil means extract any time specification from the diary entry."
9354 :group 'org-agenda
9355 :version "24.1"
9356 :type 'boolean)
9358 (defcustom org-agenda-bulk-mark-char ">"
9359 "A single-character string to be used as the bulk mark."
9360 :group 'org-agenda
9361 :version "24.1"
9362 :type 'string)
9364 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
9365 "Add a diary entry with TYPE to `org-agenda-diary-file'.
9366 If TEXT is not empty, it will become the headline of the new entry, and
9367 the resulting entry will not be shown. When TEXT is empty, switch to
9368 `org-agenda-diary-file' and let the user finish the entry there."
9369 (let ((cw (current-window-configuration)))
9370 (org-switch-to-buffer-other-window
9371 (find-file-noselect org-agenda-diary-file))
9372 (widen)
9373 (goto-char (point-min))
9374 (cond
9375 ((eq type 'anniversary)
9376 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
9377 (progn
9378 (or (org-at-heading-p t)
9379 (progn
9380 (outline-next-heading)
9381 (insert "* Anniversaries\n\n")
9382 (beginning-of-line -1)))))
9383 (outline-next-heading)
9384 (org-back-over-empty-lines)
9385 (backward-char 1)
9386 (insert "\n")
9387 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
9388 (nth 2 d1) (car d1) (nth 1 d1) text)))
9389 ((eq type 'day)
9390 (let ((org-prefix-has-time t)
9391 (org-agenda-time-leading-zero t)
9392 fmt time time2)
9393 (if org-agenda-insert-diary-extract-time
9394 ;; Use org-agenda-format-item to parse text for a time-range and
9395 ;; remove it. FIXME: This is a hack, we should refactor
9396 ;; that function to make time extraction available separately
9397 (setq fmt (org-agenda-format-item nil text nil nil nil t)
9398 time (get-text-property 0 'time fmt)
9399 time2 (if (> (length time) 0)
9400 ;; split-string removes trailing ...... if
9401 ;; no end time given. First space
9402 ;; separates time from date.
9403 (concat " " (car (split-string time "\\.")))
9404 nil)
9405 text (get-text-property 0 'txt fmt)))
9406 (if (eq org-agenda-insert-diary-strategy 'top-level)
9407 (org-agenda-insert-diary-as-top-level text)
9408 (require 'org-datetree)
9409 (org-datetree-find-date-create d1)
9410 (org-agenda-insert-diary-make-new-entry text))
9411 (org-insert-time-stamp (org-time-from-absolute
9412 (calendar-absolute-from-gregorian d1))
9413 nil nil nil nil time2))
9414 (end-of-line 0))
9415 ((eq type 'block)
9416 (if (> (calendar-absolute-from-gregorian d1)
9417 (calendar-absolute-from-gregorian d2))
9418 (setq d1 (prog1 d2 (setq d2 d1))))
9419 (if (eq org-agenda-insert-diary-strategy 'top-level)
9420 (org-agenda-insert-diary-as-top-level text)
9421 (require 'org-datetree)
9422 (org-datetree-find-date-create d1)
9423 (org-agenda-insert-diary-make-new-entry text))
9424 (org-insert-time-stamp (org-time-from-absolute
9425 (calendar-absolute-from-gregorian d1)))
9426 (insert "--")
9427 (org-insert-time-stamp (org-time-from-absolute
9428 (calendar-absolute-from-gregorian d2)))
9429 (end-of-line 0)))
9430 (if (string-match "\\S-" text)
9431 (progn
9432 (set-window-configuration cw)
9433 (message "%s entry added to %s"
9434 (capitalize (symbol-name type))
9435 (abbreviate-file-name org-agenda-diary-file)))
9436 (org-reveal t)
9437 (message "Please finish entry here"))))
9439 (defun org-agenda-insert-diary-as-top-level (text)
9440 "Make new entry as a top-level entry at the end of the file.
9441 Add TEXT as headline, and position the cursor in the second line so that
9442 a timestamp can be added there."
9443 (widen)
9444 (goto-char (point-max))
9445 (or (bolp) (insert "\n"))
9446 (insert "* " text "\n")
9447 (if org-adapt-indentation (org-indent-to-column 2)))
9449 (defun org-agenda-insert-diary-make-new-entry (text)
9450 "Make new entry as last child of current entry.
9451 Add TEXT as headline, and position the cursor in the second line so that
9452 a timestamp can be added there."
9453 (let ((org-show-following-heading t)
9454 (org-show-siblings t)
9455 (org-show-hierarchy-above t)
9456 (org-show-entry-below t)
9457 col)
9458 (outline-next-heading)
9459 (org-back-over-empty-lines)
9460 (or (looking-at "[ \t]*$")
9461 (progn (insert "\n") (backward-char 1)))
9462 (org-insert-heading nil t)
9463 (org-do-demote)
9464 (setq col (current-column))
9465 (insert text "\n")
9466 (if org-adapt-indentation (org-indent-to-column col))
9467 (let ((org-show-following-heading t)
9468 (org-show-siblings t)
9469 (org-show-hierarchy-above t)
9470 (org-show-entry-below t))
9471 (org-show-context))))
9473 (defun org-agenda-diary-entry ()
9474 "Make a diary entry, like the `i' command from the calendar.
9475 All the standard commands work: block, weekly etc.
9476 When `org-agenda-diary-file' points to a file,
9477 `org-agenda-diary-entry-in-org-file' is called instead to create
9478 entries in that Org-mode file."
9479 (interactive)
9480 (if (not (eq org-agenda-diary-file 'diary-file))
9481 (org-agenda-diary-entry-in-org-file)
9482 (require 'diary-lib)
9483 (let* ((char (progn
9484 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
9485 (read-char-exclusive)))
9486 (cmd (cdr (assoc char
9487 '((?d . insert-diary-entry)
9488 (?w . insert-weekly-diary-entry)
9489 (?m . insert-monthly-diary-entry)
9490 (?y . insert-yearly-diary-entry)
9491 (?a . insert-anniversary-diary-entry)
9492 (?b . insert-block-diary-entry)
9493 (?c . insert-cyclic-diary-entry)))))
9494 (oldf (symbol-function 'calendar-cursor-to-date))
9495 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
9496 (point (point))
9497 (mark (or (mark t) (point))))
9498 (unless cmd
9499 (user-error "No command associated with <%c>" char))
9500 (unless (and (get-text-property point 'day)
9501 (or (not (equal ?b char))
9502 (get-text-property mark 'day)))
9503 (user-error "Don't know which date to use for diary entry"))
9504 ;; We implement this by hacking the `calendar-cursor-to-date' function
9505 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
9506 (let ((calendar-mark-ring
9507 (list (calendar-gregorian-from-absolute
9508 (or (get-text-property mark 'day)
9509 (get-text-property point 'day))))))
9510 (unwind-protect
9511 (progn
9512 (fset 'calendar-cursor-to-date
9513 (lambda (&optional error dummy)
9514 (calendar-gregorian-from-absolute
9515 (get-text-property point 'day))))
9516 (call-interactively cmd))
9517 (fset 'calendar-cursor-to-date oldf))))))
9519 (defun org-agenda-execute-calendar-command (cmd)
9520 "Execute a calendar command from the agenda with date from cursor."
9521 (org-agenda-check-type t 'agenda 'timeline)
9522 (require 'diary-lib)
9523 (unless (get-text-property (min (1- (point-max)) (point)) 'day)
9524 (user-error "Don't know which date to use for the calendar command"))
9525 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
9526 (point (point))
9527 (date (calendar-gregorian-from-absolute
9528 (get-text-property point 'day)))
9529 ;; the following 2 vars are needed in the calendar
9530 (displayed-month (car date))
9531 (displayed-year (nth 2 date)))
9532 (unwind-protect
9533 (progn
9534 (fset 'calendar-cursor-to-date
9535 (lambda (&optional error dummy)
9536 (calendar-gregorian-from-absolute
9537 (get-text-property point 'day))))
9538 (call-interactively cmd))
9539 (fset 'calendar-cursor-to-date oldf))))
9541 (defun org-agenda-phases-of-moon ()
9542 "Display the phases of the moon for the 3 months around the cursor date."
9543 (interactive)
9544 (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
9546 (defun org-agenda-holidays ()
9547 "Display the holidays for the 3 months around the cursor date."
9548 (interactive)
9549 (org-agenda-execute-calendar-command 'list-calendar-holidays))
9551 (defvar calendar-longitude) ; defined in calendar.el
9552 (defvar calendar-latitude) ; defined in calendar.el
9553 (defvar calendar-location-name) ; defined in calendar.el
9555 (defun org-agenda-sunrise-sunset (arg)
9556 "Display sunrise and sunset for the cursor date.
9557 Latitude and longitude can be specified with the variables
9558 `calendar-latitude' and `calendar-longitude'. When called with prefix
9559 argument, latitude and longitude will be prompted for."
9560 (interactive "P")
9561 (require 'solar)
9562 (let ((calendar-longitude (if arg nil calendar-longitude))
9563 (calendar-latitude (if arg nil calendar-latitude))
9564 (calendar-location-name
9565 (if arg "the given coordinates" calendar-location-name)))
9566 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
9568 (defun org-agenda-goto-calendar ()
9569 "Open the Emacs calendar with the date at the cursor."
9570 (interactive)
9571 (org-agenda-check-type t 'agenda 'timeline)
9572 (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
9573 (user-error "Don't know which date to open in calendar")))
9574 (date (calendar-gregorian-from-absolute day))
9575 (calendar-move-hook nil)
9576 (calendar-view-holidays-initially-flag nil)
9577 (calendar-view-diary-initially-flag nil))
9578 (calendar)
9579 (calendar-goto-date date)))
9581 ;;;###autoload
9582 (defun org-calendar-goto-agenda ()
9583 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
9584 This is a command that has to be installed in `calendar-mode-map'."
9585 (interactive)
9586 (org-agenda-list nil (calendar-absolute-from-gregorian
9587 (calendar-cursor-to-date))
9588 nil))
9590 (defun org-agenda-convert-date ()
9591 (interactive)
9592 (org-agenda-check-type t 'agenda 'timeline)
9593 (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
9594 date s)
9595 (unless day
9596 (user-error "Don't know which date to convert"))
9597 (setq date (calendar-gregorian-from-absolute day))
9598 (setq s (concat
9599 "Gregorian: " (calendar-date-string date) "\n"
9600 "ISO: " (calendar-iso-date-string date) "\n"
9601 "Day of Yr: " (calendar-day-of-year-string date) "\n"
9602 "Julian: " (calendar-julian-date-string date) "\n"
9603 "Astron. JD: " (calendar-astro-date-string date)
9604 " (Julian date number at noon UTC)\n"
9605 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
9606 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
9607 "French: " (calendar-french-date-string date) "\n"
9608 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
9609 "Mayan: " (calendar-mayan-date-string date) "\n"
9610 "Coptic: " (calendar-coptic-date-string date) "\n"
9611 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
9612 "Persian: " (calendar-persian-date-string date) "\n"
9613 "Chinese: " (calendar-chinese-date-string date) "\n"))
9614 (with-output-to-temp-buffer "*Dates*"
9615 (princ s))
9616 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
9618 ;;; Bulk commands
9620 (defun org-agenda-bulk-marked-p ()
9621 (eq (get-char-property (point-at-bol) 'type)
9622 'org-marked-entry-overlay))
9624 (defun org-agenda-bulk-mark (&optional arg)
9625 "Mark the entry at point for future bulk action."
9626 (interactive "p")
9627 (dotimes (i (or arg 1))
9628 (unless (org-get-at-bol 'org-agenda-diary-link)
9629 (let* ((m (org-get-at-bol 'org-hd-marker))
9631 (unless (org-agenda-bulk-marked-p)
9632 (unless m (user-error "Nothing to mark at point"))
9633 (push m org-agenda-bulk-marked-entries)
9634 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
9635 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
9636 (org-get-todo-face "TODO")
9637 'evaporate)
9638 (overlay-put ov 'type 'org-marked-entry-overlay))
9639 (end-of-line 1)
9640 (or (ignore-errors
9641 (goto-char (next-single-property-change (point) 'txt)))
9642 (beginning-of-line 2))
9643 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9644 (beginning-of-line 2))
9645 (message "%d entries marked for bulk action"
9646 (length org-agenda-bulk-marked-entries))))))
9648 (defun org-agenda-bulk-mark-all ()
9649 "Mark all entries for future agenda bulk action."
9650 (interactive)
9651 (org-agenda-bulk-mark-regexp "."))
9653 (defun org-agenda-bulk-mark-regexp (regexp)
9654 "Mark entries matching REGEXP for future agenda bulk action."
9655 (interactive "sMark entries matching regexp: ")
9656 (let ((entries-marked 0) txt-at-point)
9657 (save-excursion
9658 (goto-char (point-min))
9659 (goto-char (next-single-property-change (point) 'txt))
9660 (while (and (re-search-forward regexp nil t)
9661 (setq txt-at-point (get-text-property (point) 'txt)))
9662 (when (string-match regexp txt-at-point)
9663 (setq entries-marked (1+ entries-marked))
9664 (call-interactively 'org-agenda-bulk-mark))))
9665 (if (not entries-marked)
9666 (message "No entry matching this regexp."))))
9668 (defun org-agenda-bulk-unmark (&optional arg)
9669 "Unmark the entry at point for future bulk action."
9670 (interactive "P")
9671 (if arg
9672 (org-agenda-bulk-unmark-all)
9673 (cond ((org-agenda-bulk-marked-p)
9674 (org-agenda-bulk-remove-overlays
9675 (point-at-bol) (+ 2 (point-at-bol)))
9676 (setq org-agenda-bulk-marked-entries
9677 (delete (org-get-at-bol 'org-hd-marker)
9678 org-agenda-bulk-marked-entries))
9679 (end-of-line 1)
9680 (or (ignore-errors
9681 (goto-char (next-single-property-change (point) 'txt)))
9682 (beginning-of-line 2))
9683 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9684 (beginning-of-line 2))
9685 (message "%d entries left marked for bulk action"
9686 (length org-agenda-bulk-marked-entries)))
9687 (t (message "No entry to unmark here")))))
9689 (defun org-agenda-bulk-toggle-all ()
9690 "Toggle all marks for bulk action."
9691 (interactive)
9692 (save-excursion
9693 (goto-char (point-min))
9694 (while (ignore-errors
9695 (goto-char (next-single-property-change (point) 'txt)))
9696 (org-agenda-bulk-toggle))))
9698 (defun org-agenda-bulk-toggle ()
9699 "Toggle the mark at point for bulk action."
9700 (interactive)
9701 (if (org-agenda-bulk-marked-p)
9702 (org-agenda-bulk-unmark)
9703 (org-agenda-bulk-mark)))
9705 (defun org-agenda-bulk-remove-overlays (&optional beg end)
9706 "Remove the mark overlays between BEG and END in the agenda buffer.
9707 BEG and END default to the buffer limits.
9709 This only removes the overlays, it does not remove the markers
9710 from the list in `org-agenda-bulk-marked-entries'."
9711 (interactive)
9712 (mapc (lambda (ov)
9713 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
9714 (delete-overlay ov)))
9715 (overlays-in (or beg (point-min)) (or end (point-max)))))
9717 (defun org-agenda-bulk-unmark-all ()
9718 "Remove all marks in the agenda buffer.
9719 This will remove the markers and the overlays."
9720 (interactive)
9721 (if (null org-agenda-bulk-marked-entries)
9722 (message "No entry to unmark")
9723 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
9724 (setq org-agenda-bulk-marked-entries nil)
9725 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
9727 (defcustom org-agenda-persistent-marks nil
9728 "Non-nil means marked items will stay marked after a bulk action.
9729 You can toggle this interactively by typing `p' when prompted for a
9730 bulk action."
9731 :group 'org-agenda
9732 :version "24.1"
9733 :type 'boolean)
9735 (defun org-agenda-bulk-action (&optional arg)
9736 "Execute an remote-editing action on all marked entries.
9737 The prefix arg is passed through to the command if possible."
9738 (interactive "P")
9739 ;; Make sure we have markers, and only valid ones
9740 (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
9741 (mapc
9742 (lambda (m)
9743 (unless (and (markerp m)
9744 (marker-buffer m)
9745 (buffer-live-p (marker-buffer m))
9746 (marker-position m))
9747 (user-error "Marker %s for bulk command is invalid" m)))
9748 org-agenda-bulk-marked-entries)
9750 ;; Prompt for the bulk command
9751 (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
9752 (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
9753 "[S]catter [f]unction "
9754 (when org-agenda-bulk-custom-functions
9755 (concat " Custom: ["
9756 (mapconcat (lambda(f) (char-to-string (car f)))
9757 org-agenda-bulk-custom-functions "")
9758 "]"))))
9759 (catch 'exit
9760 (let* ((action (read-char-exclusive))
9761 (org-log-refile (if org-log-refile 'time nil))
9762 (entries (reverse org-agenda-bulk-marked-entries))
9763 (org-overriding-default-time
9764 (if (get-text-property (point) 'org-agenda-date-header)
9765 (org-get-cursor-date)))
9766 redo-at-end
9767 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
9768 (cond
9769 ((equal action ?p)
9770 (let ((org-agenda-persistent-marks
9771 (not org-agenda-persistent-marks)))
9772 (org-agenda-bulk-action)
9773 (throw 'exit nil)))
9775 ((equal action ?$)
9776 (setq cmd '(org-agenda-archive)))
9778 ((equal action ?A)
9779 (setq cmd '(org-agenda-archive-to-archive-sibling)))
9781 ((member action '(?r ?w))
9782 (setq rfloc (org-refile-get-location
9783 "Refile to"
9784 (marker-buffer (car entries))
9785 org-refile-allow-creating-parent-nodes))
9786 (if (nth 3 rfloc)
9787 (setcar (nthcdr 3 rfloc)
9788 (move-marker (make-marker) (nth 3 rfloc)
9789 (or (get-file-buffer (nth 1 rfloc))
9790 (find-buffer-visiting (nth 1 rfloc))
9791 (error "This should not happen")))))
9793 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
9794 redo-at-end t))
9796 ((equal action ?t)
9797 (setq state (org-icompleting-read
9798 "Todo state: "
9799 (with-current-buffer (marker-buffer (car entries))
9800 (mapcar 'list org-todo-keywords-1))))
9801 (setq cmd `(let ((org-inhibit-blocking t)
9802 (org-inhibit-logging 'note))
9803 (org-agenda-todo ,state))))
9805 ((memq action '(?- ?+))
9806 (setq tag (org-icompleting-read
9807 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
9808 (with-current-buffer (marker-buffer (car entries))
9809 (delq nil
9810 (mapcar (lambda (x)
9811 (if (stringp (car x)) x)) org-tag-alist)))))
9812 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
9814 ((memq action '(?s ?d))
9815 (let* ((time
9816 (unless arg
9817 (org-read-date
9818 nil nil nil
9819 (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
9820 org-overriding-default-time)))
9821 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
9822 (setq cmd `(eval '(,c1 arg ,time)))))
9824 ((equal action ?S)
9825 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
9826 (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
9827 (let ((days (read-number
9828 (format "Scatter tasks across how many %sdays: "
9829 (if arg "week" "")) 7)))
9830 (setq cmd
9831 `(let ((distance (1+ (random ,days))))
9832 (if arg
9833 (let ((dist distance)
9834 (day-of-week
9835 (calendar-day-of-week
9836 (calendar-gregorian-from-absolute (org-today)))))
9837 (dotimes (i (1+ dist))
9838 (while (member day-of-week org-agenda-weekend-days)
9839 (incf distance)
9840 (incf day-of-week)
9841 (if (= day-of-week 7)
9842 (setq day-of-week 0)))
9843 (incf day-of-week)
9844 (if (= day-of-week 7)
9845 (setq day-of-week 0)))))
9846 ;; silently fail when try to replan a sexp entry
9847 (condition-case nil
9848 (let* ((date (calendar-gregorian-from-absolute
9849 (+ (org-today) distance)))
9850 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
9851 (nth 2 date))))
9852 (org-agenda-schedule nil time))
9853 (error nil)))))))
9855 ((assoc action org-agenda-bulk-custom-functions)
9856 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
9857 redo-at-end t))
9859 ((equal action ?f)
9860 (setq cmd (list (intern
9861 (org-icompleting-read "Function: "
9862 obarray 'fboundp t nil nil)))))
9864 (t (user-error "Invalid bulk action")))
9866 ;; Sort the markers, to make sure that parents are handled before children
9867 (setq entries (sort entries
9868 (lambda (a b)
9869 (cond
9870 ((equal (marker-buffer a) (marker-buffer b))
9871 (< (marker-position a) (marker-position b)))
9873 (string< (buffer-name (marker-buffer a))
9874 (buffer-name (marker-buffer b))))))))
9876 ;; Now loop over all markers and apply cmd
9877 (while (setq e (pop entries))
9878 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
9879 (if (not pos)
9880 (progn (message "Skipping removed entry at %s" e)
9881 (setq cntskip (1+ cntskip)))
9882 (goto-char pos)
9883 (let (org-loop-over-headlines-in-active-region)
9884 (eval cmd))
9885 (setq cnt (1+ cnt))))
9886 (when redo-at-end (org-agenda-redo))
9887 (unless org-agenda-persistent-marks
9888 (org-agenda-bulk-unmark-all))
9889 (message "Acted on %d entries%s%s"
9891 (if (= cntskip 0)
9893 (format ", skipped %d (disappeared before their turn)"
9894 cntskip))
9895 (if (not org-agenda-persistent-marks)
9896 "" " (kept marked)"))))))
9898 (defun org-agenda-capture (&optional with-time)
9899 "Call `org-capture' with the date at point.
9900 With a `C-1' prefix, use the HH:MM value at point (if any) or the
9901 current HH:MM time."
9902 (interactive "P")
9903 (if (not (eq major-mode 'org-agenda-mode))
9904 (user-error "You cannot do this outside of agenda buffers")
9905 (let ((org-overriding-default-time
9906 (org-get-cursor-date (equal with-time 1))))
9907 (call-interactively 'org-capture))))
9909 ;;; Dragging agenda lines forward/backward
9911 (defun org-agenda-reapply-filters ()
9912 "Re-apply all agenda filters."
9913 (mapcar
9914 (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f))))
9915 `((,org-agenda-tag-filter tag)
9916 (,org-agenda-category-filter category)
9917 (,org-agenda-regexp-filter regexp)
9918 (,(get 'org-agenda-tag-filter :preset-filter) tag)
9919 (,(get 'org-agenda-category-filter :preset-filter) category)
9920 (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
9922 (defun org-agenda-drag-line-forward (arg &optional backward)
9923 "Drag an agenda line forward by ARG lines.
9924 When the optional argument `backward' is non-nil, move backward."
9925 (interactive "p")
9926 (let ((inhibit-read-only t) lst line)
9927 (if (or (not (get-text-property (point) 'txt))
9928 (save-excursion
9929 (dotimes (n arg)
9930 (move-beginning-of-line (if backward 0 2))
9931 (push (not (get-text-property (point) 'txt)) lst))
9932 (delq nil lst)))
9933 (message "Cannot move line forward")
9934 (let ((end (save-excursion (move-beginning-of-line 2) (point))))
9935 (move-beginning-of-line 1)
9936 (setq line (buffer-substring (point) end))
9937 (delete-region (point) end)
9938 (move-beginning-of-line (funcall (if backward '1- '1+) arg))
9939 (insert line)
9940 (org-agenda-reapply-filters)
9941 (org-agenda-mark-clocking-task)
9942 (move-beginning-of-line 0)))))
9944 (defun org-agenda-drag-line-backward (arg)
9945 "Drag an agenda line backward by ARG lines."
9946 (interactive "p")
9947 (org-agenda-drag-line-forward arg t))
9949 ;;; Flagging notes
9951 (defun org-agenda-show-the-flagging-note ()
9952 "Display the flagging note in the other window.
9953 When called a second time in direct sequence, offer to remove the FLAGGING
9954 tag and (if present) the flagging note."
9955 (interactive)
9956 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
9957 (win (selected-window))
9958 note heading newhead)
9959 (unless hdmarker
9960 (user-error "No linked entry at point"))
9961 (if (and (eq this-command last-command)
9962 (y-or-n-p "Unflag and remove any flagging note? "))
9963 (progn
9964 (org-agenda-remove-flag hdmarker)
9965 (let ((win (get-buffer-window "*Flagging Note*")))
9966 (and win (delete-window win)))
9967 (message "Entry unflagged"))
9968 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
9969 (unless note
9970 (user-error "No flagging note"))
9971 (org-kill-new note)
9972 (org-switch-to-buffer-other-window "*Flagging Note*")
9973 (erase-buffer)
9974 (insert note)
9975 (goto-char (point-min))
9976 (while (re-search-forward "\\\\n" nil t)
9977 (replace-match "\n" t t))
9978 (goto-char (point-min))
9979 (select-window win)
9980 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
9982 (defun org-agenda-remove-flag (marker)
9983 "Remove the FLAGGED tag and any flagging note in the entry."
9984 (let (newhead)
9985 (org-with-point-at marker
9986 (org-toggle-tag "FLAGGED" 'off)
9987 (org-entry-delete nil "THEFLAGGINGNOTE")
9988 (setq newhead (org-get-heading)))
9989 (org-agenda-change-all-lines newhead marker)
9990 (message "Entry unflagged")))
9992 (defun org-agenda-get-any-marker (&optional pos)
9993 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
9994 (get-text-property (or pos (point-at-bol)) 'org-marker)))
9996 ;;; Appointment reminders
9998 (defvar appt-time-msg-list) ; defined in appt.el
10000 ;;;###autoload
10001 (defun org-agenda-to-appt (&optional refresh filter &rest args)
10002 "Activate appointments found in `org-agenda-files'.
10003 With a \\[universal-argument] prefix, refresh the list of
10004 appointments.
10006 If FILTER is t, interactively prompt the user for a regular
10007 expression, and filter out entries that don't match it.
10009 If FILTER is a string, use this string as a regular expression
10010 for filtering entries out.
10012 If FILTER is a function, filter out entries against which
10013 calling the function returns nil. This function takes one
10014 argument: an entry from `org-agenda-get-day-entries'.
10016 FILTER can also be an alist with the car of each cell being
10017 either 'headline or 'category. For example:
10019 '((headline \"IMPORTANT\")
10020 (category \"Work\"))
10022 will only add headlines containing IMPORTANT or headlines
10023 belonging to the \"Work\" category.
10025 ARGS are symbols indicating what kind of entries to consider.
10026 By default `org-agenda-to-appt' will use :deadline*, :scheduled*
10027 \(i.e., deadlines and scheduled items with a hh:mm specification)
10028 and :timestamp entries. See the docstring of `org-diary' for
10029 details and examples.
10031 If an entry has a APPT_WARNTIME property, its value will be used
10032 to override `appt-message-warning-time'."
10033 (interactive "P")
10034 (if refresh (setq appt-time-msg-list nil))
10035 (if (eq filter t)
10036 (setq filter (read-from-minibuffer "Regexp filter: ")))
10037 (let* ((cnt 0) ; count added events
10038 (scope (or args '(:deadline* :scheduled* :timestamp)))
10039 (org-agenda-new-buffers nil)
10040 (org-deadline-warning-days 0)
10041 ;; Do not use `org-today' here because appt only takes
10042 ;; time and without date as argument, so it may pass wrong
10043 ;; information otherwise
10044 (today (org-date-to-gregorian
10045 (time-to-days (current-time))))
10046 (org-agenda-restrict nil)
10047 (files (org-agenda-files 'unrestricted)) entries file
10048 (org-agenda-buffer nil))
10049 ;; Get all entries which may contain an appt
10050 (org-agenda-prepare-buffers files)
10051 (while (setq file (pop files))
10052 (setq entries
10053 (delq nil
10054 (append entries
10055 (apply 'org-agenda-get-day-entries
10056 file today scope)))))
10057 ;; Map thru entries and find if we should filter them out
10058 (mapc
10059 (lambda(x)
10060 (let* ((evt (org-trim
10061 (replace-regexp-in-string
10062 org-bracket-link-regexp "\\3"
10063 (or (get-text-property 1 'txt x) ""))))
10064 (cat (get-text-property (1- (length x)) 'org-category x))
10065 (tod (get-text-property 1 'time-of-day x))
10066 (ok (or (null filter)
10067 (and (stringp filter) (string-match filter evt))
10068 (and (functionp filter) (funcall filter x))
10069 (and (listp filter)
10070 (let ((cat-filter (cadr (assoc 'category filter)))
10071 (evt-filter (cadr (assoc 'headline filter))))
10072 (or (and (stringp cat-filter)
10073 (string-match cat-filter cat))
10074 (and (stringp evt-filter)
10075 (string-match evt-filter evt)))))))
10076 (wrn (get-text-property 1 'warntime x)))
10077 ;; FIXME: Shall we remove text-properties for the appt text?
10078 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
10079 (when (and ok tod)
10080 (setq tod (concat "00" (number-to-string tod))
10081 tod (when (string-match
10082 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
10083 (concat (match-string 1 tod) ":"
10084 (match-string 2 tod))))
10085 (if (version< emacs-version "23.3")
10086 (appt-add tod evt)
10087 (appt-add tod evt wrn))
10088 (setq cnt (1+ cnt))))) entries)
10089 (org-release-buffers org-agenda-new-buffers)
10090 (if (eq cnt 0)
10091 (message "No event to add")
10092 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
10094 (defun org-agenda-todayp (date)
10095 "Does DATE mean today, when considering `org-extend-today-until'?"
10096 (let ((today (org-today))
10097 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
10098 date)))
10099 (eq date today)))
10101 (defun org-agenda-todo-yesterday (&optional arg)
10102 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
10103 (interactive "P")
10104 (let* ((hour (third (decode-time
10105 (org-current-time))))
10106 (org-extend-today-until (1+ hour)))
10107 (org-agenda-todo arg)))
10109 (provide 'org-agenda)
10111 ;;; org-agenda.el ends here