Fix visibility when switching from agenda to item
[org-mode.git] / lisp / org-agenda.el
blob7b48838050e38e68ca356eaab9cde7bf8b3bb3b5
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
3 ;; Copyright (C) 2004-2015 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-iso-to-absolute "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 "Effort filter preset"
365 (const org-agenda-effort-filter-preset)
366 (list
367 (const :format "" quote)
368 (repeat
369 (string :tag "+=10 or -=10 or +<10 or ->10"))))
370 (list :tag "Regexp filter preset"
371 (const org-agenda-regexp-filter-preset)
372 (list
373 (const :format "" quote)
374 (repeat
375 (string :tag "+regexp or -regexp"))))
376 (list :tag "Set daily/weekly entry types"
377 (const org-agenda-entry-types)
378 (list
379 (const :format "" quote)
380 (set :greedy t :value ,org-agenda-entry-types
381 (const :deadline)
382 (const :scheduled)
383 (const :deadline*)
384 (const :scheduled*)
385 (const :timestamp)
386 (const :sexp))))
387 (list :tag "Standard skipping condition"
388 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
389 (const org-agenda-skip-function)
390 (list
391 (const :format "" quote)
392 (list
393 (choice
394 :tag "Skipping range"
395 (const :tag "Skip entry" org-agenda-skip-entry-if)
396 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
397 (repeat :inline t :tag "Conditions for skipping"
398 (choice
399 :tag "Condition type"
400 (list :tag "Regexp matches" :inline t
401 (const :format "" 'regexp)
402 (regexp))
403 (list :tag "Regexp does not match" :inline t
404 (const :format "" 'notregexp)
405 (regexp))
406 (list :tag "TODO state is" :inline t
407 (const 'todo)
408 (choice
409 (const :tag "Any not-done state" 'todo)
410 (const :tag "Any done state" 'done)
411 (const :tag "Any state" 'any)
412 (list :tag "Keyword list"
413 (const :format "" quote)
414 (repeat (string :tag "Keyword")))))
415 (list :tag "TODO state is not" :inline t
416 (const 'nottodo)
417 (choice
418 (const :tag "Any not-done state" 'todo)
419 (const :tag "Any done state" 'done)
420 (const :tag "Any state" 'any)
421 (list :tag "Keyword list"
422 (const :format "" quote)
423 (repeat (string :tag "Keyword")))))
424 (const :tag "scheduled" 'scheduled)
425 (const :tag "not scheduled" 'notscheduled)
426 (const :tag "deadline" 'deadline)
427 (const :tag "no deadline" 'notdeadline)
428 (const :tag "timestamp" 'timestamp)
429 (const :tag "no timestamp" 'nottimestamp))))))
430 (list :tag "Non-standard skipping condition"
431 :value (org-agenda-skip-function)
432 (const org-agenda-skip-function)
433 (sexp :tag "Function or form (quoted!)"))
434 (list :tag "Any variable"
435 (variable :tag "Variable")
436 (sexp :tag "Value (sexp)"))))
437 "Selection of examples for agenda command settings.
438 This will be spliced into the custom type of
439 `org-agenda-custom-commands'.")
442 (defcustom org-agenda-custom-commands
443 '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
444 "Custom commands for the agenda.
445 These commands will be offered on the splash screen displayed by the
446 agenda dispatcher \\[org-agenda]. Each entry is a list like this:
448 (key desc type match settings files)
450 key The key (one or more characters as a string) to be associated
451 with the command.
452 desc A description of the command, when omitted or nil, a default
453 description is built using MATCH.
454 type The command type, any of the following symbols:
455 agenda The daily/weekly agenda.
456 todo Entries with a specific TODO keyword, in all agenda files.
457 search Entries containing search words entry or headline.
458 tags Tags/Property/TODO match in all agenda files.
459 tags-todo Tags/P/T match in all agenda files, TODO entries only.
460 todo-tree Sparse tree of specific TODO keyword in *current* file.
461 tags-tree Sparse tree with all tags matches in *current* file.
462 occur-tree Occur sparse tree for *current* file.
463 ... A user-defined function.
464 match What to search for:
465 - a single keyword for TODO keyword searches
466 - a tags match expression for tags searches
467 - a word search expression for text searches.
468 - a regular expression for occur searches
469 For all other commands, this should be the empty string.
470 settings A list of option settings, similar to that in a let form, so like
471 this: ((opt1 val1) (opt2 val2) ...). The values will be
472 evaluated at the moment of execution, so quote them when needed.
473 files A list of files file to write the produced agenda buffer to
474 with the command `org-store-agenda-views'.
475 If a file name ends in \".html\", an HTML version of the buffer
476 is written out. If it ends in \".ps\", a postscript version is
477 produced. Otherwise, only the plain text is written to the file.
479 You can also define a set of commands, to create a composite agenda buffer.
480 In this case, an entry looks like this:
482 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
484 where
486 desc A description string to be displayed in the dispatcher menu.
487 cmd An agenda command, similar to the above. However, tree commands
488 are not allowed, but instead you can get agenda and global todo list.
489 So valid commands for a set are:
490 (agenda \"\" settings)
491 (alltodo \"\" settings)
492 (stuck \"\" settings)
493 (todo \"match\" settings files)
494 (search \"match\" settings files)
495 (tags \"match\" settings files)
496 (tags-todo \"match\" settings files)
498 Each command can carry a list of options, and another set of options can be
499 given for the whole set of commands. Individual command options take
500 precedence over the general options.
502 When using several characters as key to a command, the first characters
503 are prefix commands. For the dispatcher to display useful information, you
504 should provide a description for the prefix, like
506 (setq org-agenda-custom-commands
507 '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
508 (\"hl\" tags \"+HOME+Lisa\")
509 (\"hp\" tags \"+HOME+Peter\")
510 (\"hk\" tags \"+HOME+Kim\")))"
511 :group 'org-agenda-custom-commands
512 :type `(repeat
513 (choice :value ("x" "Describe command here" tags "" nil)
514 (list :tag "Single command"
515 (string :tag "Access Key(s) ")
516 (option (string :tag "Description"))
517 (choice
518 (const :tag "Agenda" agenda)
519 (const :tag "TODO list" alltodo)
520 (const :tag "Search words" search)
521 (const :tag "Stuck projects" stuck)
522 (const :tag "Tags/Property match (all agenda files)" tags)
523 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
524 (const :tag "TODO keyword search (all agenda files)" todo)
525 (const :tag "Tags sparse tree (current buffer)" tags-tree)
526 (const :tag "TODO keyword tree (current buffer)" todo-tree)
527 (const :tag "Occur tree (current buffer)" occur-tree)
528 (sexp :tag "Other, user-defined function"))
529 (string :tag "Match (only for some commands)")
530 ,org-agenda-custom-commands-local-options
531 (option (repeat :tag "Export" (file :tag "Export to"))))
532 (list :tag "Command series, all agenda files"
533 (string :tag "Access Key(s)")
534 (string :tag "Description ")
535 (repeat :tag "Component"
536 (choice
537 (list :tag "Agenda"
538 (const :format "" agenda)
539 (const :tag "" :format "" "")
540 ,org-agenda-custom-commands-local-options)
541 (list :tag "TODO list (all keywords)"
542 (const :format "" alltodo)
543 (const :tag "" :format "" "")
544 ,org-agenda-custom-commands-local-options)
545 (list :tag "Search words"
546 (const :format "" search)
547 (string :tag "Match")
548 ,org-agenda-custom-commands-local-options)
549 (list :tag "Stuck projects"
550 (const :format "" stuck)
551 (const :tag "" :format "" "")
552 ,org-agenda-custom-commands-local-options)
553 (list :tag "Tags search"
554 (const :format "" tags)
555 (string :tag "Match")
556 ,org-agenda-custom-commands-local-options)
557 (list :tag "Tags search, TODO entries only"
558 (const :format "" tags-todo)
559 (string :tag "Match")
560 ,org-agenda-custom-commands-local-options)
561 (list :tag "TODO keyword search"
562 (const :format "" todo)
563 (string :tag "Match")
564 ,org-agenda-custom-commands-local-options)
565 (list :tag "Other, user-defined function"
566 (symbol :tag "function")
567 (string :tag "Match")
568 ,org-agenda-custom-commands-local-options)))
570 (repeat :tag "Settings for entire command set"
571 (list (variable :tag "Any variable")
572 (sexp :tag "Value")))
573 (option (repeat :tag "Export" (file :tag "Export to"))))
574 (cons :tag "Prefix key documentation"
575 (string :tag "Access Key(s)")
576 (string :tag "Description ")))))
578 (defcustom org-agenda-query-register ?o
579 "The register holding the current query string.
580 The purpose of this is that if you construct a query string interactively,
581 you can then use it to define a custom command."
582 :group 'org-agenda-custom-commands
583 :type 'character)
585 (defcustom org-stuck-projects
586 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
587 "How to identify stuck projects.
588 This is a list of four items:
589 1. A tags/todo/property matcher string that is used to identify a project.
590 See the manual for a description of tag and property searches.
591 The entire tree below a headline matched by this is considered one project.
592 2. A list of TODO keywords identifying non-stuck projects.
593 If the project subtree contains any headline with one of these todo
594 keywords, the project is considered to be not stuck. If you specify
595 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
596 3. A list of tags identifying non-stuck projects.
597 If the project subtree contains any headline with one of these tags,
598 the project is considered to be not stuck. If you specify \"*\" as
599 a tag, any tag will mark the project unstuck. Note that this is about
600 the explicit presence of a tag somewhere in the subtree, inherited
601 tags do not count here. If inherited tags make a project not stuck,
602 use \"-TAG\" in the tags part of the matcher under (1.) above.
603 4. An arbitrary regular expression matching non-stuck projects.
605 If the project turns out to be not stuck, search continues also in the
606 subtree to see if any of the subtasks have project status.
608 See also the variable `org-tags-match-list-sublevels' which applies
609 to projects matched by this search as well.
611 After defining this variable, you may use \\[org-agenda-list-stuck-projects]
612 or `C-c a #' to produce the list."
613 :group 'org-agenda-custom-commands
614 :type '(list
615 (string :tag "Tags/TODO match to identify a project")
616 (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
617 (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
618 (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
620 (defgroup org-agenda-skip nil
621 "Options concerning skipping parts of agenda files."
622 :tag "Org Agenda Skip"
623 :group 'org-agenda)
625 (defcustom org-agenda-skip-function-global nil
626 "Function to be called at each match during agenda construction.
627 If this function returns nil, the current match should not be skipped.
628 If the function decided to skip an agenda match, is must return the
629 buffer position from which the search should be continued.
630 This may also be a Lisp form, which will be evaluated.
632 This variable will be applied to every agenda match, including
633 tags/property searches and TODO lists. So try to make the test function
634 do its checking as efficiently as possible. To implement a skipping
635 condition just for specific agenda commands, use the variable
636 `org-agenda-skip-function' which can be set in the options section
637 of custom agenda commands."
638 :group 'org-agenda-skip
639 :type 'sexp)
641 (defgroup org-agenda-daily/weekly nil
642 "Options concerning the daily/weekly agenda."
643 :tag "Org Agenda Daily/Weekly"
644 :group 'org-agenda)
645 (defgroup org-agenda-todo-list nil
646 "Options concerning the global todo list agenda view."
647 :tag "Org Agenda Todo List"
648 :group 'org-agenda)
649 (defgroup org-agenda-match-view nil
650 "Options concerning the general tags/property/todo match agenda view."
651 :tag "Org Agenda Match View"
652 :group 'org-agenda)
653 (defgroup org-agenda-search-view nil
654 "Options concerning the search agenda view."
655 :tag "Org Agenda Search View"
656 :group 'org-agenda)
658 (defvar org-agenda-archives-mode nil
659 "Non-nil means the agenda will include archived items.
660 If this is the symbol `trees', trees in the selected agenda scope
661 that are marked with the ARCHIVE tag will be included anyway. When this is
662 t, also all archive files associated with the current selection of agenda
663 files will be included.")
665 (defcustom org-agenda-restriction-lock-highlight-subtree t
666 "Non-nil means highlight the whole subtree when restriction is active.
667 Otherwise only highlight the headline. Highlighting the whole subtree is
668 useful to ensure no edits happen beyond the restricted region."
669 :group 'org-agenda
670 :type 'boolean)
672 (defcustom org-agenda-skip-comment-trees t
673 "Non-nil means skip trees that start with the COMMENT keyword.
674 When nil, these trees are also scanned by agenda commands."
675 :group 'org-agenda-skip
676 :type 'boolean)
678 (defcustom org-agenda-todo-list-sublevels t
679 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
680 When nil, the sublevels of a TODO entry are not checked, resulting in
681 potentially much shorter TODO lists."
682 :group 'org-agenda-skip
683 :group 'org-agenda-todo-list
684 :type 'boolean)
686 (defcustom org-agenda-todo-ignore-with-date nil
687 "Non-nil means don't show entries with a date in the global todo list.
688 You can use this if you prefer to mark mere appointments with a TODO keyword,
689 but don't want them to show up in the TODO list.
690 When this is set, it also covers deadlines and scheduled items, the settings
691 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
692 will be ignored.
693 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
694 :group 'org-agenda-skip
695 :group 'org-agenda-todo-list
696 :type 'boolean)
698 (defcustom org-agenda-todo-ignore-timestamp nil
699 "Non-nil means don't show entries with a timestamp.
700 This applies when creating the global todo list.
701 Valid values are:
703 past Don't show entries for today or in the past.
705 future Don't show entries with a timestamp in the future.
706 The idea behind this is that if it has a future
707 timestamp, you don't want to think about it until the
708 date.
710 all Don't show any entries with a timestamp in the global todo list.
711 The idea behind this is that by setting a timestamp, you
712 have already \"taken care\" of this item.
714 This variable can also have an integer as a value. If positive (N),
715 todos with a timestamp N or more days in the future will be ignored. If
716 negative (-N), todos with a timestamp N or more days in the past will be
717 ignored. If 0, todos with a timestamp either today or in the future will
718 be ignored. For example, a value of -1 will exclude todos with a
719 timestamp in the past (yesterday or earlier), while a value of 7 will
720 exclude todos with a timestamp a week or more in the future.
722 See also `org-agenda-todo-ignore-with-date'.
723 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
724 to make his option also apply to the tags-todo list."
725 :group 'org-agenda-skip
726 :group 'org-agenda-todo-list
727 :version "24.1"
728 :type '(choice
729 (const :tag "Ignore future timestamp todos" future)
730 (const :tag "Ignore past or present timestamp todos" past)
731 (const :tag "Ignore all timestamp todos" all)
732 (const :tag "Show timestamp todos" nil)
733 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
735 (defcustom org-agenda-todo-ignore-scheduled nil
736 "Non-nil means, ignore some scheduled TODO items when making TODO list.
737 This applies when creating the global todo list.
738 Valid values are:
740 past Don't show entries scheduled today or in the past.
742 future Don't show entries scheduled in the future.
743 The idea behind this is that by scheduling it, you don't want to
744 think about it until the scheduled date.
746 all Don't show any scheduled entries in the global todo list.
747 The idea behind this is that by scheduling it, you have already
748 \"taken care\" of this item.
750 t Same as `all', for backward compatibility.
752 This variable can also have an integer as a value. See
753 `org-agenda-todo-ignore-timestamp' for more details.
755 See also `org-agenda-todo-ignore-with-date'.
756 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
757 to make his option also apply to the tags-todo list."
758 :group 'org-agenda-skip
759 :group 'org-agenda-todo-list
760 :type '(choice
761 (const :tag "Ignore future-scheduled todos" future)
762 (const :tag "Ignore past- or present-scheduled todos" past)
763 (const :tag "Ignore all scheduled todos" all)
764 (const :tag "Ignore all scheduled todos (compatibility)" t)
765 (const :tag "Show scheduled todos" nil)
766 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
768 (defcustom org-agenda-todo-ignore-deadlines nil
769 "Non-nil means ignore some deadline TODO items when making TODO list.
770 There are different motivations for using different values, please think
771 carefully when configuring this variable.
773 This applies when creating the global todo list.
774 Valid values are:
776 near Don't show near deadline entries. A deadline is near when it is
777 closer than `org-deadline-warning-days' days. The idea behind this
778 is that such items will appear in the agenda anyway.
780 far Don't show TODO entries where a deadline has been defined, but
781 the deadline is not near. This is useful if you don't want to
782 use the todo list to figure out what to do now.
784 past Don't show entries with a deadline timestamp for today or in the past.
786 future Don't show entries with a deadline timestamp in the future, not even
787 when they become `near' ones. Use it with caution.
789 all Ignore all TODO entries that do have a deadline.
791 t Same as `near', for backward compatibility.
793 This variable can also have an integer as a value. See
794 `org-agenda-todo-ignore-timestamp' for more details.
796 See also `org-agenda-todo-ignore-with-date'.
797 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
798 to make his option also apply to the tags-todo list."
799 :group 'org-agenda-skip
800 :group 'org-agenda-todo-list
801 :type '(choice
802 (const :tag "Ignore near deadlines" near)
803 (const :tag "Ignore near deadlines (compatibility)" t)
804 (const :tag "Ignore far deadlines" far)
805 (const :tag "Ignore all TODOs with a deadlines" all)
806 (const :tag "Show all TODOs, even if they have a deadline" nil)
807 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
809 (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
810 "Time unit to use when possibly ignoring an agenda item.
812 See the docstring of various `org-agenda-todo-ignore-*' options.
813 The default is to compare time stamps using days. An item is thus
814 considered to be in the future if it is at least one day after today.
815 Non-nil means to compare time stamps using seconds. An item is then
816 considered future if it has a time value later than current time."
817 :group 'org-agenda-skip
818 :group 'org-agenda-todo-list
819 :version "24.4"
820 :package-version '(Org . "8.0")
821 :type '(choice
822 (const :tag "Compare time with days" nil)
823 (const :tag "Compare time with seconds" t)))
825 (defcustom org-agenda-tags-todo-honor-ignore-options nil
826 "Non-nil means honor todo-list ignores options also in tags-todo search.
827 The variables
828 `org-agenda-todo-ignore-with-date',
829 `org-agenda-todo-ignore-timestamp',
830 `org-agenda-todo-ignore-scheduled',
831 `org-agenda-todo-ignore-deadlines'
832 make the global TODO list skip entries that have time stamps of certain
833 kinds. If this option is set, the same options will also apply for the
834 tags-todo search, which is the general tags/property matcher
835 restricted to unfinished TODO entries only."
836 :group 'org-agenda-skip
837 :group 'org-agenda-todo-list
838 :group 'org-agenda-match-view
839 :type 'boolean)
841 (defcustom org-agenda-skip-scheduled-if-done nil
842 "Non-nil means don't show scheduled items in agenda when they are done.
843 This is relevant for the daily/weekly agenda, not for the TODO list. And
844 it applies only to the actual date of the scheduling. Warnings about
845 an item with a past scheduling dates are always turned off when the item
846 is DONE."
847 :group 'org-agenda-skip
848 :group 'org-agenda-daily/weekly
849 :type 'boolean)
851 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
852 "Non-nil means skip scheduling line if same entry shows because of deadline.
854 In the agenda of today, an entry can show up multiple times
855 because it is both scheduled and has a nearby deadline, and maybe
856 a plain time stamp as well.
858 When this variable is nil, the entry will be shown several times.
860 When set to t, then only the deadline is shown and the fact that
861 the entry is scheduled today or was scheduled previously is not
862 shown.
864 When set to the symbol `not-today', skip scheduled previously,
865 but not scheduled today.
867 When set to the symbol `repeated-after-deadline', skip scheduled
868 items if they are repeated beyond the current deadline."
869 :group 'org-agenda-skip
870 :group 'org-agenda-daily/weekly
871 :type '(choice
872 (const :tag "Never" nil)
873 (const :tag "Always" t)
874 (const :tag "Not when scheduled today" not-today)
875 (const :tag "When repeated past deadline" repeated-after-deadline)))
877 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
878 "Non-nil means skip timestamp line if same entry shows because of deadline.
879 In the agenda of today, an entry can show up multiple times
880 because it has both a plain timestamp and has a nearby deadline.
881 When this variable is t, then only the deadline is shown and the
882 fact that the entry has a timestamp for or including today is not
883 shown. When this variable is nil, the entry will be shown
884 several times."
885 :group 'org-agenda-skip
886 :group 'org-agenda-daily/weekly
887 :version "24.1"
888 :type '(choice
889 (const :tag "Never" nil)
890 (const :tag "Always" t)))
892 (defcustom org-agenda-skip-deadline-if-done nil
893 "Non-nil means don't show deadlines when the corresponding item is done.
894 When nil, the deadline is still shown and should give you a happy feeling.
895 This is relevant for the daily/weekly agenda. And it applied only to the
896 actually date of the deadline. Warnings about approaching and past-due
897 deadlines are always turned off when the item is DONE."
898 :group 'org-agenda-skip
899 :group 'org-agenda-daily/weekly
900 :type 'boolean)
902 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
903 "Non-nil means skip deadline prewarning when entry is also scheduled.
904 This will apply on all days where a prewarning for the deadline would
905 be shown, but not at the day when the entry is actually due. On that day,
906 the deadline will be shown anyway.
907 This variable may be set to nil, t, the symbol `pre-scheduled',
908 or a number which will then give the number of days before the actual
909 deadline when the prewarnings should resume. The symbol `pre-scheduled'
910 eliminates the deadline prewarning only prior to the scheduled date.
911 This can be used in a workflow where the first showing of the deadline will
912 trigger you to schedule it, and then you don't want to be reminded of it
913 because you will take care of it on the day when scheduled."
914 :group 'org-agenda-skip
915 :group 'org-agenda-daily/weekly
916 :version "24.1"
917 :type '(choice
918 (const :tag "Always show prewarning" nil)
919 (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
920 (const :tag "Remove prewarning if entry is scheduled" t)
921 (integer :tag "Restart prewarning N days before deadline")))
923 (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
924 "Non-nil means skip scheduled delay when entry also has a deadline.
925 This variable may be set to nil, t, the symbol `post-deadline',
926 or a number which will then give the number of days after the actual
927 scheduled date when the delay should expire. The symbol `post-deadline'
928 eliminates the schedule delay when the date is posterior to the deadline."
929 :group 'org-agenda-skip
930 :group 'org-agenda-daily/weekly
931 :version "24.4"
932 :package-version '(Org . "8.0")
933 :type '(choice
934 (const :tag "Always honor delay" nil)
935 (const :tag "Ignore delay if posterior to the deadline" post-deadline)
936 (const :tag "Ignore delay if entry has a deadline" t)
937 (integer :tag "Honor delay up until N days after the scheduled date")))
939 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
940 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
941 When non-nil, after the search for timestamps has matched once in an
942 entry, the rest of the entry will not be searched."
943 :group 'org-agenda-skip
944 :type 'boolean)
946 (defcustom org-agenda-skip-timestamp-if-done nil
947 "Non-nil means don't select item by timestamp or -range if it is DONE."
948 :group 'org-agenda-skip
949 :group 'org-agenda-daily/weekly
950 :type 'boolean)
952 (defcustom org-agenda-dim-blocked-tasks t
953 "Non-nil means dim blocked tasks in the agenda display.
954 This causes some overhead during agenda construction, but if you
955 have turned on `org-enforce-todo-dependencies',
956 `org-enforce-todo-checkbox-dependencies', or any other blocking
957 mechanism, this will create useful feedback in the agenda.
959 Instead of t, this variable can also have the value `invisible'.
960 Then blocked tasks will be invisible and only become visible when
961 they become unblocked. An exemption to this behavior is when a task is
962 blocked because of unchecked checkboxes below it. Since checkboxes do
963 not show up in the agenda views, making this task invisible you remove any
964 trace from agenda views that there is something to do. Therefore, a task
965 that is blocked because of checkboxes will never be made invisible, it
966 will only be dimmed."
967 :group 'org-agenda-daily/weekly
968 :group 'org-agenda-todo-list
969 :version "24.3"
970 :type '(choice
971 (const :tag "Do not dim" nil)
972 (const :tag "Dim to a gray face" t)
973 (const :tag "Make invisible" invisible)))
975 (defcustom org-timeline-show-empty-dates 3
976 "Non-nil means `org-timeline' also shows dates without an entry.
977 When nil, only the days which actually have entries are shown.
978 When t, all days between the first and the last date are shown.
979 When an integer, show also empty dates, but if there is a gap of more than
980 N days, just insert a special line indicating the size of the gap."
981 :group 'org-agenda-skip
982 :type '(choice
983 (const :tag "None" nil)
984 (const :tag "All" t)
985 (integer :tag "at most")))
987 (defgroup org-agenda-startup nil
988 "Options concerning initial settings in the Agenda in Org Mode."
989 :tag "Org Agenda Startup"
990 :group 'org-agenda)
992 (defcustom org-agenda-menu-show-matcher t
993 "Non-nil means show the match string in the agenda dispatcher menu.
994 When nil, the matcher string is not shown, but is put into the help-echo
995 property so than moving the mouse over the command shows it.
996 Setting it to nil is good if matcher strings are very long and/or if
997 you want to use two-columns display (see `org-agenda-menu-two-columns')."
998 :group 'org-agenda
999 :version "24.1"
1000 :type 'boolean)
1002 (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
1004 (defcustom org-agenda-menu-two-columns nil
1005 "Non-nil means, use two columns to show custom commands in the dispatcher.
1006 If you use this, you probably want to set `org-agenda-menu-show-matcher'
1007 to nil."
1008 :group 'org-agenda
1009 :version "24.1"
1010 :type 'boolean)
1012 (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
1013 (defcustom org-agenda-finalize-hook nil
1014 "Hook run just before displaying an agenda buffer.
1015 The buffer is still writable when the hook is called.
1017 You can modify some of the buffer substrings but you should be
1018 extra careful not to modify the text properties of the agenda
1019 headlines as the agenda display heavily relies on them."
1020 :group 'org-agenda-startup
1021 :type 'hook)
1023 (defcustom org-agenda-mouse-1-follows-link nil
1024 "Non-nil means mouse-1 on a link will follow the link in the agenda.
1025 A longer mouse click will still set point. Does not work on XEmacs.
1026 Needs to be set before org.el is loaded."
1027 :group 'org-agenda-startup
1028 :type 'boolean)
1030 (defcustom org-agenda-start-with-follow-mode nil
1031 "The initial value of follow mode in a newly created agenda window."
1032 :group 'org-agenda-startup
1033 :type 'boolean)
1035 (defcustom org-agenda-follow-indirect nil
1036 "Non-nil means `org-agenda-follow-mode' displays only the
1037 current item's tree, in an indirect buffer."
1038 :group 'org-agenda
1039 :version "24.1"
1040 :type 'boolean)
1042 (defcustom org-agenda-show-outline-path t
1043 "Non-nil means show outline path in echo area after line motion."
1044 :group 'org-agenda-startup
1045 :type 'boolean)
1047 (defcustom org-agenda-start-with-entry-text-mode nil
1048 "The initial value of entry-text-mode in a newly created agenda window."
1049 :group 'org-agenda-startup
1050 :type 'boolean)
1052 (defcustom org-agenda-entry-text-maxlines 5
1053 "Number of text lines to be added when `E' is pressed in the agenda.
1055 Note that this variable only used during agenda display. Add add entry text
1056 when exporting the agenda, configure the variable
1057 `org-agenda-add-entry-ext-maxlines'."
1058 :group 'org-agenda
1059 :type 'integer)
1061 (defcustom org-agenda-entry-text-exclude-regexps nil
1062 "List of regular expressions to clean up entry text.
1063 The complete matches of all regular expressions in this list will be
1064 removed from entry text before it is shown in the agenda."
1065 :group 'org-agenda
1066 :type '(repeat (regexp)))
1068 (defcustom org-agenda-entry-text-leaders " > "
1069 "Text prepended to the entry text in agenda buffers."
1070 :version "24.4"
1071 :package-version '(Org . "8.0")
1072 :group 'org-agenda
1073 :type 'string)
1075 (defvar org-agenda-entry-text-cleanup-hook nil
1076 "Hook that is run after basic cleanup of entry text to be shown in agenda.
1077 This cleanup is done in a temporary buffer, so the function may inspect and
1078 change the entire buffer.
1079 Some default stuff like drawers and scheduling/deadline dates will already
1080 have been removed when this is called, as will any matches for regular
1081 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
1083 (defvar org-agenda-include-inactive-timestamps nil
1084 "Non-nil means include inactive time stamps in agenda and timeline.
1085 Dynamically scoped.")
1087 (defgroup org-agenda-windows nil
1088 "Options concerning the windows used by the Agenda in Org Mode."
1089 :tag "Org Agenda Windows"
1090 :group 'org-agenda)
1092 (defcustom org-agenda-window-setup 'reorganize-frame
1093 "How the agenda buffer should be displayed.
1094 Possible values for this option are:
1096 current-window Show agenda in the current window, keeping all other windows.
1097 other-window Use `switch-to-buffer-other-window' to display agenda.
1098 only-window Show agenda, deleting all other windows.
1099 reorganize-frame Show only two windows on the current frame, the current
1100 window and the agenda.
1101 other-frame Use `switch-to-buffer-other-frame' to display agenda.
1102 Also, when exiting the agenda, kill that frame.
1103 See also the variable `org-agenda-restore-windows-after-quit'."
1104 :group 'org-agenda-windows
1105 :type '(choice
1106 (const current-window)
1107 (const other-frame)
1108 (const other-window)
1109 (const only-window)
1110 (const reorganize-frame)))
1112 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
1113 "The min and max height of the agenda window as a fraction of frame height.
1114 The value of the variable is a cons cell with two numbers between 0 and 1.
1115 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
1116 :group 'org-agenda-windows
1117 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
1119 (defcustom org-agenda-restore-windows-after-quit nil
1120 "Non-nil means restore window configuration upon exiting agenda.
1121 Before the window configuration is changed for displaying the agenda,
1122 the current status is recorded. When the agenda is exited with
1123 `q' or `x' and this option is set, the old state is restored. If
1124 `org-agenda-window-setup' is `other-frame', the value of this
1125 option will be ignored."
1126 :group 'org-agenda-windows
1127 :type 'boolean)
1129 (defcustom org-agenda-ndays nil
1130 "Number of days to include in overview display.
1131 Should be 1 or 7.
1132 Obsolete, see `org-agenda-span'."
1133 :group 'org-agenda-daily/weekly
1134 :type '(choice (const nil)
1135 (integer)))
1137 (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
1139 (defcustom org-agenda-span 'week
1140 "Number of days to include in overview display.
1141 Can be day, week, month, year, or any number of days.
1142 Custom commands can set this variable in the options section."
1143 :group 'org-agenda-daily/weekly
1144 :type '(choice (const :tag "Day" day)
1145 (const :tag "Week" week)
1146 (const :tag "Fortnight" fortnight)
1147 (const :tag "Month" month)
1148 (const :tag "Year" year)
1149 (integer :tag "Custom")))
1151 (defcustom org-agenda-start-on-weekday 1
1152 "Non-nil means start the overview always on the specified weekday.
1153 0 denotes Sunday, 1 denotes Monday, etc.
1154 When nil, always start on the current day.
1155 Custom commands can set this variable in the options section."
1156 :group 'org-agenda-daily/weekly
1157 :type '(choice (const :tag "Today" nil)
1158 (integer :tag "Weekday No.")))
1160 (defcustom org-agenda-show-all-dates t
1161 "Non-nil means `org-agenda' shows every day in the selected range.
1162 When nil, only the days which actually have entries are shown."
1163 :group 'org-agenda-daily/weekly
1164 :type 'boolean)
1166 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1167 "Format string for displaying dates in the agenda.
1168 Used by the daily/weekly agenda and by the timeline. This should be
1169 a format string understood by `format-time-string', or a function returning
1170 the formatted date as a string. The function must take a single argument,
1171 a calendar-style date list like (month day year)."
1172 :group 'org-agenda-daily/weekly
1173 :type '(choice
1174 (string :tag "Format string")
1175 (function :tag "Function")))
1177 (defun org-agenda-format-date-aligned (date)
1178 "Format a DATE string for display in the daily/weekly agenda, or timeline.
1179 This function makes sure that dates are aligned for easy reading."
1180 (require 'cal-iso)
1181 (let* ((dayname (calendar-day-name date))
1182 (day (cadr date))
1183 (day-of-week (calendar-day-of-week date))
1184 (month (car date))
1185 (monthname (calendar-month-name month))
1186 (year (nth 2 date))
1187 (iso-week (org-days-to-iso-week
1188 (calendar-absolute-from-gregorian date)))
1189 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1190 (1- year))
1191 ((and (= month 12) (<= iso-week 1))
1192 (1+ year))
1193 (t year)))
1194 (weekstring (if (= day-of-week 1)
1195 (format " W%02d" iso-week)
1196 "")))
1197 (format "%-10s %2d %s %4d%s"
1198 dayname day monthname year weekstring)))
1200 (defcustom org-agenda-time-leading-zero nil
1201 "Non-nil means use leading zero for military times in agenda.
1202 For example, 9:30am would become 09:30 rather than 9:30."
1203 :group 'org-agenda-daily/weekly
1204 :version "24.1"
1205 :type 'boolean)
1207 (defcustom org-agenda-timegrid-use-ampm nil
1208 "When set, show AM/PM style timestamps on the timegrid."
1209 :group 'org-agenda
1210 :version "24.1"
1211 :type 'boolean)
1213 (defun org-agenda-time-of-day-to-ampm (time)
1214 "Convert TIME of a string like '13:45' to an AM/PM style time string."
1215 (let* ((hour-number (string-to-number (substring time 0 -3)))
1216 (minute (substring time -2))
1217 (ampm "am"))
1218 (cond
1219 ((equal hour-number 12)
1220 (setq ampm "pm"))
1221 ((> hour-number 12)
1222 (setq ampm "pm")
1223 (setq hour-number (- hour-number 12))))
1224 (concat
1225 (if org-agenda-time-leading-zero
1226 (format "%02d" hour-number)
1227 (format "%02s" (number-to-string hour-number)))
1228 ":" minute ampm)))
1230 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1231 "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
1232 (if org-agenda-timegrid-use-ampm
1233 (org-agenda-time-of-day-to-ampm time)
1234 time))
1236 (defcustom org-agenda-weekend-days '(6 0)
1237 "Which days are weekend?
1238 These days get the special face `org-agenda-date-weekend' in the agenda
1239 and timeline buffers."
1240 :group 'org-agenda-daily/weekly
1241 :type '(set :greedy t
1242 (const :tag "Monday" 1)
1243 (const :tag "Tuesday" 2)
1244 (const :tag "Wednesday" 3)
1245 (const :tag "Thursday" 4)
1246 (const :tag "Friday" 5)
1247 (const :tag "Saturday" 6)
1248 (const :tag "Sunday" 0)))
1250 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1251 "Non-nil means jump to today when moving a past date forward in time.
1252 When using S-right in the agenda to move a a date forward, and the date
1253 stamp currently points to the past, the first key press will move it
1254 to today. WHen nil, just move one day forward even if the date stays
1255 in the past."
1256 :group 'org-agenda-daily/weekly
1257 :version "24.1"
1258 :type 'boolean)
1260 (defcustom org-agenda-include-diary nil
1261 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1262 Custom commands can set this variable in the options section."
1263 :group 'org-agenda-daily/weekly
1264 :type 'boolean)
1266 (defcustom org-agenda-include-deadlines t
1267 "If non-nil, include entries within their deadline warning period.
1268 Custom commands can set this variable in the options section."
1269 :group 'org-agenda-daily/weekly
1270 :version "24.1"
1271 :type 'boolean)
1273 (defcustom org-agenda-repeating-timestamp-show-all t
1274 "Non-nil means show all occurrences of a repeating stamp in the agenda.
1275 When set to a list of strings, only show occurrences of repeating
1276 stamps for these TODO keywords. When nil, only one occurrence is
1277 shown, either today or the nearest into the future."
1278 :group 'org-agenda-daily/weekly
1279 :type '(choice
1280 (const :tag "Show repeating stamps" t)
1281 (repeat :tag "Show repeating stamps for these TODO keywords"
1282 (string :tag "TODO Keyword"))
1283 (const :tag "Don't show repeating stamps" nil)))
1285 (defcustom org-scheduled-past-days 10000
1286 "Number of days to continue listing scheduled items not marked DONE.
1287 When an item is scheduled on a date, it shows up in the agenda on this
1288 day and will be listed until it is marked done for the number of days
1289 given here."
1290 :group 'org-agenda-daily/weekly
1291 :type 'integer)
1293 (defcustom org-agenda-log-mode-items '(closed clock)
1294 "List of items that should be shown in agenda log mode.
1295 This list may contain the following symbols:
1297 closed Show entries that have been closed on that day.
1298 clock Show entries that have received clocked time on that day.
1299 state Show all logged state changes.
1300 Note that instead of changing this variable, you can also press `C-u l' in
1301 the agenda to display all available LOG items temporarily."
1302 :group 'org-agenda-daily/weekly
1303 :type '(set :greedy t (const closed) (const clock) (const state)))
1305 (defcustom org-agenda-clock-consistency-checks
1306 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1307 :gap-ok-around ("4:00")
1308 :default-face ((:background "DarkRed") (:foreground "white"))
1309 :overlap-face nil :gap-face nil :no-end-time-face nil
1310 :long-face nil :short-face nil)
1311 "This is a property list, with the following keys:
1313 :max-duration Mark clocking chunks that are longer than this time.
1314 This is a time string like \"HH:MM\", or the number
1315 of minutes as an integer.
1317 :min-duration Mark clocking chunks that are shorter that this.
1318 This is a time string like \"HH:MM\", or the number
1319 of minutes as an integer.
1321 :max-gap Mark gaps between clocking chunks that are longer than
1322 this duration. A number of minutes, or a string
1323 like \"HH:MM\".
1325 :gap-ok-around List of times during the day which are usually not working
1326 times. When a gap is detected, but the gap contains any
1327 of these times, the gap is *not* reported. For example,
1328 if this is (\"4:00\" \"13:00\") then gaps that contain
1329 4:00 in the morning (i.e. the night) and 13:00
1330 (i.e. a typical lunch time) do not cause a warning.
1331 You should have at least one time during the night in this
1332 list, or otherwise the first task each morning will trigger
1333 a warning because it follows a long gap.
1335 Furthermore, the following properties can be used to define faces for
1336 issue display.
1338 :default-face the default face, if the specific face is undefined
1339 :overlap-face face for overlapping clocks
1340 :gap-face face for gaps between clocks
1341 :no-end-time-face face for incomplete clocks
1342 :long-face face for clock intervals that are too long
1343 :short-face face for clock intervals that are too short"
1344 :group 'org-agenda-daily/weekly
1345 :group 'org-clock
1346 :version "24.1"
1347 :type 'plist)
1349 (defcustom org-agenda-log-mode-add-notes t
1350 "Non-nil means add first line of notes to log entries in agenda views.
1351 If a log item like a state change or a clock entry is associated with
1352 notes, the first line of these notes will be added to the entry in the
1353 agenda display."
1354 :group 'org-agenda-daily/weekly
1355 :type 'boolean)
1357 (defcustom org-agenda-start-with-log-mode nil
1358 "The initial value of log-mode in a newly created agenda window.
1359 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1360 explanations on the possible values."
1361 :group 'org-agenda-startup
1362 :group 'org-agenda-daily/weekly
1363 :type '(choice (const :tag "Don't show log items" nil)
1364 (const :tag "Show only log items" only)
1365 (const :tag "Show all possible log items" clockcheck)
1366 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1367 (choice (const :tag "Show closed log items" closed)
1368 (const :tag "Show clocked log items" clock)
1369 (const :tag "Show all logged state changes" state)))))
1371 (defcustom org-agenda-start-with-clockreport-mode nil
1372 "The initial value of clockreport-mode in a newly created agenda window."
1373 :group 'org-agenda-startup
1374 :group 'org-agenda-daily/weekly
1375 :type 'boolean)
1377 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1378 "Property list with parameters for the clocktable in clockreport mode.
1379 This is the display mode that shows a clock table in the daily/weekly
1380 agenda, the properties for this dynamic block can be set here.
1381 The usual clocktable parameters are allowed here, but you cannot set
1382 the properties :name, :tstart, :tend, :block, and :scope - these will
1383 be overwritten to make sure the content accurately reflects the
1384 current display in the agenda."
1385 :group 'org-agenda-daily/weekly
1386 :type 'plist)
1388 (defcustom org-agenda-search-view-always-boolean nil
1389 "Non-nil means the search string is interpreted as individual parts.
1391 The search string for search view can either be interpreted as a phrase,
1392 or as a list of snippets that define a boolean search for a number of
1393 strings.
1395 When this is non-nil, the string will be split on whitespace, and each
1396 snippet will be searched individually, and all must match in order to
1397 select an entry. A snippet is then a single string of non-white
1398 characters, or a string in double quotes, or a regexp in {} braces.
1399 If a snippet is preceded by \"-\", the snippet must *not* match.
1400 \"+\" is syntactic sugar for positive selection. Each snippet may
1401 be found as a full word or a partial word, but see the variable
1402 `org-agenda-search-view-force-full-words'.
1404 When this is nil, search will look for the entire search phrase as one,
1405 with each space character matching any amount of whitespace, including
1406 line breaks.
1408 Even when this is nil, you can still switch to Boolean search dynamically
1409 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1410 is a regexp marked with braces like \"{abc}\", this will also switch to
1411 boolean search."
1412 :group 'org-agenda-search-view
1413 :version "24.1"
1414 :type 'boolean)
1416 (org-defvaralias 'org-agenda-search-view-search-words-only
1417 'org-agenda-search-view-always-boolean)
1419 (defcustom org-agenda-search-view-force-full-words nil
1420 "Non-nil means, search words must be matches as complete words.
1421 When nil, they may also match part of a word."
1422 :group 'org-agenda-search-view
1423 :version "24.1"
1424 :type 'boolean)
1426 (defcustom org-agenda-search-view-max-outline-level 0
1427 "Maximum outline level to display in search view.
1428 E.g. when this is set to 1, the search view will only
1429 show headlines of level 1. When set to 0, the default
1430 value, don't limit agenda view by outline level."
1431 :group 'org-agenda-search-view
1432 :version "24.4"
1433 :package-version '(Org . "8.3")
1434 :type 'integer)
1436 (defgroup org-agenda-time-grid nil
1437 "Options concerning the time grid in the Org-mode Agenda."
1438 :tag "Org Agenda Time Grid"
1439 :group 'org-agenda)
1441 (defcustom org-agenda-search-headline-for-time t
1442 "Non-nil means search headline for a time-of-day.
1443 If the headline contains a time-of-day in one format or another, it will
1444 be used to sort the entry into the time sequence of items for a day.
1445 Some people have time stamps in the headline that refer to the creation
1446 time or so, and then this produces an unwanted side effect. If this is
1447 the case for your, use this variable to turn off searching the headline
1448 for a time."
1449 :group 'org-agenda-time-grid
1450 :type 'boolean)
1452 (defcustom org-agenda-use-time-grid t
1453 "Non-nil means show a time grid in the agenda schedule.
1454 A time grid is a set of lines for specific times (like every two hours between
1455 8:00 and 20:00). The items scheduled for a day at specific times are
1456 sorted in between these lines.
1457 For details about when the grid will be shown, and what it will look like, see
1458 the variable `org-agenda-time-grid'."
1459 :group 'org-agenda-time-grid
1460 :type 'boolean)
1462 (defcustom org-agenda-time-grid
1463 '((daily today require-timed)
1464 "----------------"
1465 (800 1000 1200 1400 1600 1800 2000))
1467 "The settings for time grid for agenda display.
1468 This is a list of three items. The first item is again a list. It contains
1469 symbols specifying conditions when the grid should be displayed:
1471 daily if the agenda shows a single day
1472 weekly if the agenda shows an entire week
1473 today show grid on current date, independent of daily/weekly display
1474 require-timed show grid only if at least one item has a time specification
1475 remove-match skip grid times already present in an entry
1477 The second item is a string which will be placed behind the grid time.
1479 The third item is a list of integers, indicating the times that should have
1480 a grid line."
1481 :group 'org-agenda-time-grid
1482 :type
1483 '(list
1484 (set :greedy t :tag "Grid Display Options"
1485 (const :tag "Show grid in single day agenda display" daily)
1486 (const :tag "Show grid in weekly agenda display" weekly)
1487 (const :tag "Always show grid for today" today)
1488 (const :tag "Show grid only if any timed entries are present"
1489 require-timed)
1490 (const :tag "Skip grid times already present in an entry"
1491 remove-match))
1492 (string :tag "Grid String")
1493 (repeat :tag "Grid Times" (integer :tag "Time"))))
1495 (defcustom org-agenda-show-current-time-in-grid t
1496 "Non-nil means show the current time in the time grid."
1497 :group 'org-agenda-time-grid
1498 :version "24.1"
1499 :type 'boolean)
1501 (defcustom org-agenda-current-time-string
1502 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1503 "The string for the current time marker in the agenda."
1504 :group 'org-agenda-time-grid
1505 :version "24.1"
1506 :type 'string)
1508 (defgroup org-agenda-sorting nil
1509 "Options concerning sorting in the Org-mode Agenda."
1510 :tag "Org Agenda Sorting"
1511 :group 'org-agenda)
1513 (defcustom org-agenda-sorting-strategy
1514 '((agenda habit-down time-up priority-down category-keep)
1515 (todo priority-down category-keep)
1516 (tags priority-down category-keep)
1517 (search category-keep))
1518 "Sorting structure for the agenda items of a single day.
1519 This is a list of symbols which will be used in sequence to determine
1520 if an entry should be listed before another entry. The following
1521 symbols are recognized:
1523 time-up Put entries with time-of-day indications first, early first
1524 time-down Put entries with time-of-day indications first, late first
1525 timestamp-up Sort by any timestamp, early first
1526 timestamp-down Sort by any timestamp, late first
1527 scheduled-up Sort by scheduled timestamp, early first
1528 scheduled-down Sort by scheduled timestamp, late first
1529 deadline-up Sort by deadline timestamp, early first
1530 deadline-down Sort by deadline timestamp, late first
1531 ts-up Sort by active timestamp, early first
1532 ts-down Sort by active timestamp, late first
1533 tsia-up Sort by inactive timestamp, early first
1534 tsia-down Sort by inactive timestamp, late first
1535 category-keep Keep the default order of categories, corresponding to the
1536 sequence in `org-agenda-files'.
1537 category-up Sort alphabetically by category, A-Z.
1538 category-down Sort alphabetically by category, Z-A.
1539 tag-up Sort alphabetically by last tag, A-Z.
1540 tag-down Sort alphabetically by last tag, Z-A.
1541 priority-up Sort numerically by priority, high priority last.
1542 priority-down Sort numerically by priority, high priority first.
1543 todo-state-up Sort by todo state, tasks that are done last.
1544 todo-state-down Sort by todo state, tasks that are done first.
1545 effort-up Sort numerically by estimated effort, high effort last.
1546 effort-down Sort numerically by estimated effort, high effort first.
1547 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1548 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1549 habit-up Put entries that are habits first
1550 habit-down Put entries that are habits last
1551 alpha-up Sort headlines alphabetically
1552 alpha-down Sort headlines alphabetically, reversed
1554 The different possibilities will be tried in sequence, and testing stops
1555 if one comparison returns a \"not-equal\". For example, the default
1556 '(time-up category-keep priority-down)
1557 means: Pull out all entries having a specified time of day and sort them,
1558 in order to make a time schedule for the current day the first thing in the
1559 agenda listing for the day. Of the entries without a time indication, keep
1560 the grouped in categories, don't sort the categories, but keep them in
1561 the sequence given in `org-agenda-files'. Within each category sort by
1562 priority.
1564 Leaving out `category-keep' would mean that items will be sorted across
1565 categories by priority.
1567 Instead of a single list, this can also be a set of list for specific
1568 contents, with a context symbol in the car of the list, any of
1569 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1571 Custom commands can bind this variable in the options section."
1572 :group 'org-agenda-sorting
1573 :type `(choice
1574 (repeat :tag "General" ,org-sorting-choice)
1575 (list :tag "Individually"
1576 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1577 (repeat ,org-sorting-choice))
1578 (cons (const :tag "Strategy for TODO lists" todo)
1579 (repeat ,org-sorting-choice))
1580 (cons (const :tag "Strategy for Tags matches" tags)
1581 (repeat ,org-sorting-choice))
1582 (cons (const :tag "Strategy for search matches" search)
1583 (repeat ,org-sorting-choice)))))
1585 (defcustom org-agenda-cmp-user-defined nil
1586 "A function to define the comparison `user-defined'.
1587 This function must receive two arguments, agenda entry a and b.
1588 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1589 the user comparison, return nil.
1590 When this is defined, you can make `user-defined-up' and `user-defined-down'
1591 part of an agenda sorting strategy."
1592 :group 'org-agenda-sorting
1593 :type 'symbol)
1595 (defcustom org-sort-agenda-notime-is-late t
1596 "Non-nil means items without time are considered late.
1597 This is only relevant for sorting. When t, items which have no explicit
1598 time like 15:30 will be considered as 99:01, i.e. later than any items which
1599 do have a time. When nil, the default time is before 0:00. You can use this
1600 option to decide if the schedule for today should come before or after timeless
1601 agenda entries."
1602 :group 'org-agenda-sorting
1603 :type 'boolean)
1605 (defcustom org-sort-agenda-noeffort-is-high t
1606 "Non-nil means items without effort estimate are sorted as high effort.
1607 This also applies when filtering an agenda view with respect to the
1608 < or > effort operator. Then, tasks with no effort defined will be treated
1609 as tasks with high effort.
1610 When nil, such items are sorted as 0 minutes effort."
1611 :group 'org-agenda-sorting
1612 :type 'boolean)
1614 (defgroup org-agenda-line-format nil
1615 "Options concerning the entry prefix in the Org-mode agenda display."
1616 :tag "Org Agenda Line Format"
1617 :group 'org-agenda)
1619 (defcustom org-agenda-prefix-format
1620 '((agenda . " %i %-12:c%?-12t% s")
1621 (timeline . " % s")
1622 (todo . " %i %-12:c")
1623 (tags . " %i %-12:c")
1624 (search . " %i %-12:c"))
1625 "Format specifications for the prefix of items in the agenda views.
1626 An alist with five entries, each for the different agenda types. The
1627 keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
1628 The values are format strings.
1630 This format works similar to a printf format, with the following meaning:
1632 %c the category of the item, \"Diary\" for entries from the diary,
1633 or as given by the CATEGORY keyword or derived from the file name
1634 %e the effort required by the item
1635 %l the level of the item (insert X space(s) if item is of level X)
1636 %i the icon category of the item, see `org-agenda-category-icon-alist'
1637 %T the last tag of the item (ignore inherited tags, which come first)
1638 %t the HH:MM time-of-day specification if one applies to the entry
1639 %s Scheduling/Deadline information, a short string
1640 %b show breadcrumbs, i.e., the names of the higher levels
1641 %(expression) Eval EXPRESSION and replace the control string
1642 by the result
1644 All specifiers work basically like the standard `%s' of printf, but may
1645 contain two additional characters: a question mark just after the `%'
1646 and a whitespace/punctuation character just before the final letter.
1648 If the first character after `%' is a question mark, the entire field
1649 will only be included if the corresponding value applies to the current
1650 entry. This is useful for fields which should have fixed width when
1651 present, but zero width when absent. For example, \"%?-12t\" will
1652 result in a 12 character time field if a time of the day is specified,
1653 but will completely disappear in entries which do not contain a time.
1655 If there is punctuation or whitespace character just before the
1656 final format letter, this character will be appended to the field
1657 value if the value is not empty. For example, the format
1658 \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
1659 the category is empty, no additional colon is inserted.
1661 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1662 which means:
1664 - Indent the line with two space characters
1665 - Give the category a 12 chars wide field, padded with whitespace on
1666 the right (because of `-'). Append a colon if there is a category
1667 (because of `:').
1668 - If there is a time-of-day, put it into a 12 chars wide field. If no
1669 time, don't put in an empty field, just skip it (because of '?').
1670 - Finally, put the scheduling information.
1672 See also the variables `org-agenda-remove-times-when-in-prefix' and
1673 `org-agenda-remove-tags'.
1675 Custom commands can set this variable in the options section."
1676 :type '(choice
1677 (string :tag "General format")
1678 (list :greedy t :tag "View dependent"
1679 (cons (const agenda) (string :tag "Format"))
1680 (cons (const timeline) (string :tag "Format"))
1681 (cons (const todo) (string :tag "Format"))
1682 (cons (const tags) (string :tag "Format"))
1683 (cons (const search) (string :tag "Format"))))
1684 :group 'org-agenda-line-format)
1686 (defvar org-prefix-format-compiled nil
1687 "The compiled prefix format and associated variables.
1688 This is a list where first element is a list of variable bindings, and second
1689 element is the compiled format expression. See the variable
1690 `org-agenda-prefix-format'.")
1692 (defcustom org-agenda-todo-keyword-format "%-1s"
1693 "Format for the TODO keyword in agenda lines.
1694 Set this to something like \"%-12s\" if you want all TODO keywords
1695 to occupy a fixed space in the agenda display."
1696 :group 'org-agenda-line-format
1697 :type 'string)
1699 (defcustom org-agenda-diary-sexp-prefix nil
1700 "A regexp that matches part of a diary sexp entry
1701 which should be treated as scheduling/deadline information in
1702 `org-agenda'.
1704 For example, you can use this to extract the `diary-remind-message' from
1705 `diary-remind' entries."
1706 :group 'org-agenda-line-format
1707 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1709 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1710 "Text preceding timerange entries in the agenda view.
1711 This is a list with two strings. The first applies when the range
1712 is entirely on one day. The second applies if the range spans several days.
1713 The strings may have two \"%d\" format specifiers which will be filled
1714 with the sequence number of the days, and the total number of days in the
1715 range, respectively."
1716 :group 'org-agenda-line-format
1717 :type '(list
1718 (string :tag "Deadline today ")
1719 (choice :tag "Deadline relative"
1720 (string :tag "Format string")
1721 (function))))
1723 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1724 "Text preceding scheduled items in the agenda view.
1725 This is a list with two strings. The first applies when the item is
1726 scheduled on the current day. The second applies when it has been scheduled
1727 previously, it may contain a %d indicating that this is the nth time that
1728 this item is scheduled, due to automatic rescheduling of unfinished items
1729 for the following day. So this number is one larger than the number of days
1730 that passed since this item was scheduled first."
1731 :group 'org-agenda-line-format
1732 :version "24.4"
1733 :package-version '(Org . "8.0")
1734 :type '(list
1735 (string :tag "Scheduled today ")
1736 (string :tag "Scheduled previously")))
1738 (defcustom org-agenda-inactive-leader "["
1739 "Text preceding item pulled into the agenda by inactive time stamps.
1740 These entries are added to the agenda when pressing \"[\"."
1741 :group 'org-agenda-line-format
1742 :version "24.1"
1743 :type 'string)
1745 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
1746 "Text preceding deadline items in the agenda view.
1747 This is a list with three strings. The first applies when the item has its
1748 deadline on the current day. The second applies when the deadline is in the
1749 future, the third one when it is in the past. The strings may contain %d
1750 to capture the number of days."
1751 :group 'org-agenda-line-format
1752 :version "24.4"
1753 :package-version '(Org . "8.0")
1754 :type '(list
1755 (string :tag "Deadline today ")
1756 (string :tag "Deadline in the future ")
1757 (string :tag "Deadline in the past ")))
1759 (defcustom org-agenda-remove-times-when-in-prefix t
1760 "Non-nil means remove duplicate time specifications in agenda items.
1761 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1762 time-of-day specification in a headline or diary entry is extracted and
1763 placed into the prefix. If this option is non-nil, the original specification
1764 \(a timestamp or -range, or just a plain time(range) specification like
1765 11:30-4pm) will be removed for agenda display. This makes the agenda less
1766 cluttered.
1767 The option can be t or nil. It may also be the symbol `beg', indicating
1768 that the time should only be removed when it is located at the beginning of
1769 the headline/diary entry."
1770 :group 'org-agenda-line-format
1771 :type '(choice
1772 (const :tag "Always" t)
1773 (const :tag "Never" nil)
1774 (const :tag "When at beginning of entry" beg)))
1776 (defcustom org-agenda-remove-timeranges-from-blocks nil
1777 "Non-nil means remove time ranges specifications in agenda
1778 items that span on several days."
1779 :group 'org-agenda-line-format
1780 :version "24.1"
1781 :type 'boolean)
1783 (defcustom org-agenda-default-appointment-duration nil
1784 "Default duration for appointments that only have a starting time.
1785 When nil, no duration is specified in such cases.
1786 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1787 :group 'org-agenda-line-format
1788 :type '(choice
1789 (integer :tag "Minutes")
1790 (const :tag "No default duration")))
1792 (defcustom org-agenda-show-inherited-tags t
1793 "Non-nil means show inherited tags in each agenda line.
1795 When this option is set to 'always, it take precedences over
1796 `org-agenda-use-tag-inheritance' and inherited tags are shown
1797 in every agenda.
1799 When this option is set to t (the default), inherited tags are
1800 shown when they are available, i.e. when the value of
1801 `org-agenda-use-tag-inheritance' has been taken into account.
1803 This can be set to a list of agenda types in which the agenda
1804 must display the inherited tags. Available types are 'todo,
1805 'agenda, 'search and 'timeline.
1807 When set to nil, never show inherited tags in agenda lines."
1808 :group 'org-agenda-line-format
1809 :group 'org-agenda
1810 :version "24.3"
1811 :type '(choice
1812 (const :tag "Show inherited tags when available" t)
1813 (const :tag "Always show inherited tags" always)
1814 (repeat :tag "Show inherited tags only in selected agenda types"
1815 (symbol :tag "Agenda type"))))
1817 (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
1818 "List of agenda view types where to use tag inheritance.
1820 In tags/tags-todo/tags-tree agenda views, tag inheritance is
1821 controlled by `org-use-tag-inheritance'. In other agenda types,
1822 `org-use-tag-inheritance' is not used for the selection of the
1823 agenda entries. Still, you may want the agenda to be aware of
1824 the inherited tags anyway, e.g. for later tag filtering.
1826 Allowed value are 'todo, 'search, 'timeline and 'agenda.
1828 This variable has no effect if `org-agenda-show-inherited-tags'
1829 is set to 'always. In that case, the agenda is aware of those
1830 tags.
1832 The default value sets tags in every agenda type. Setting this
1833 option to nil will speed up non-tags agenda view a lot."
1834 :group 'org-agenda
1835 :version "24.3"
1836 :type '(choice
1837 (const :tag "Use tag inheritance in all agenda types" t)
1838 (repeat :tag "Use tag inheritance in selected agenda types"
1839 (symbol :tag "Agenda type"))))
1841 (defcustom org-agenda-hide-tags-regexp nil
1842 "Regular expression used to filter away specific tags in agenda views.
1843 This means that these tags will be present, but not be shown in the agenda
1844 line. Secondary filtering will still work on the hidden tags.
1845 Nil means don't hide any tags."
1846 :group 'org-agenda-line-format
1847 :type '(choice
1848 (const :tag "Hide none" nil)
1849 (string :tag "Regexp ")))
1851 (defcustom org-agenda-remove-tags nil
1852 "Non-nil means remove the tags from the headline copy in the agenda.
1853 When this is the symbol `prefix', only remove tags when
1854 `org-agenda-prefix-format' contains a `%T' specifier."
1855 :group 'org-agenda-line-format
1856 :type '(choice
1857 (const :tag "Always" t)
1858 (const :tag "Never" nil)
1859 (const :tag "When prefix format contains %T" prefix)))
1861 (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
1862 'org-agenda-remove-tags)
1864 (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
1865 "Shift tags in agenda items to this column.
1866 If this number is positive, it specifies the column. If it is negative,
1867 it means that the tags should be flushright to that column. For example,
1868 -80 works well for a normal 80 character screen."
1869 :group 'org-agenda-line-format
1870 :type 'integer)
1872 (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
1874 (defcustom org-agenda-fontify-priorities 'cookies
1875 "Non-nil means highlight low and high priorities in agenda.
1876 When t, the highest priority entries are bold, lowest priority italic.
1877 However, settings in `org-priority-faces' will overrule these faces.
1878 When this variable is the symbol `cookies', only fontify the
1879 cookies, not the entire task.
1880 This may also be an association list of priority faces, whose
1881 keys are the character values of `org-highest-priority',
1882 `org-default-priority', and `org-lowest-priority' (the default values
1883 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1884 color as a string, or a list like `(:background \"Red\")'.
1885 If it is a color, the variable `org-faces-easy-properties'
1886 determines if it is a foreground or a background color."
1887 :group 'org-agenda-line-format
1888 :type '(choice
1889 (const :tag "Never" nil)
1890 (const :tag "Defaults" t)
1891 (const :tag "Cookies only" cookies)
1892 (repeat :tag "Specify"
1893 (list (character :tag "Priority" :value ?A)
1894 (choice :tag "Face "
1895 (string :tag "Color")
1896 (sexp :tag "Face"))))))
1898 (defcustom org-agenda-day-face-function nil
1899 "Function called to determine what face should be used to display a day.
1900 The only argument passed to that function is the day. It should
1901 returns a face, or nil if does not want to specify a face and let
1902 the normal rules apply."
1903 :group 'org-agenda-line-format
1904 :version "24.1"
1905 :type '(choice (const nil) (function)))
1907 (defcustom org-agenda-category-icon-alist nil
1908 "Alist of category icon to be displayed in agenda views.
1910 Each entry should have the following format:
1912 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1914 Where CATEGORY-REGEXP is a regexp matching the categories where
1915 the icon should be displayed.
1916 FILE-OR-DATA either a file path or a string containing image data.
1918 The other fields can be omitted safely if not needed:
1919 TYPE indicates the image type.
1920 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1921 image data.
1922 PROPS are additional image attributes to assign to the image,
1923 like, e.g. `:ascent center'.
1925 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1927 If you want to set the display properties yourself, just put a
1928 list as second element:
1930 (CATEGORY-REGEXP (MY PROPERTY LIST))
1932 For example, to display a 16px horizontal space for Emacs
1933 category, you can use:
1935 (\"Emacs\" '(space . (:width (16))))"
1936 :group 'org-agenda-line-format
1937 :version "24.1"
1938 :type '(alist :key-type (string :tag "Regexp matching category")
1939 :value-type (choice (list :tag "Icon"
1940 (string :tag "File or data")
1941 (symbol :tag "Type")
1942 (boolean :tag "Data?")
1943 (repeat :tag "Extra image properties" :inline t symbol))
1944 (list :tag "Display properties" sexp))))
1946 (defgroup org-agenda-column-view nil
1947 "Options concerning column view in the agenda."
1948 :tag "Org Agenda Column View"
1949 :group 'org-agenda)
1951 (defcustom org-agenda-columns-show-summaries t
1952 "Non-nil means show summaries for columns displayed in the agenda view."
1953 :group 'org-agenda-column-view
1954 :type 'boolean)
1956 (defcustom org-agenda-columns-compute-summary-properties t
1957 "Non-nil means recompute all summary properties before column view.
1958 When column view in the agenda is listing properties that have a summary
1959 operator, it can go to all relevant buffers and recompute the summaries
1960 there. This can mean overhead for the agenda column view, but is necessary
1961 to have thing up to date.
1962 As a special case, a CLOCKSUM property also makes sure that the clock
1963 computations are current."
1964 :group 'org-agenda-column-view
1965 :type 'boolean)
1967 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
1968 "Non-nil means the duration of an appointment will add to day effort.
1969 The property to which appointment durations will be added is the one given
1970 in the option `org-effort-property'. If an appointment does not have
1971 an end time, `org-agenda-default-appointment-duration' will be used. If that
1972 is not set, an appointment without end time will not contribute to the time
1973 estimate."
1974 :group 'org-agenda-column-view
1975 :type 'boolean)
1977 (defcustom org-agenda-auto-exclude-function nil
1978 "A function called with a tag to decide if it is filtered on '/ RET'.
1979 The sole argument to the function, which is called once for each
1980 possible tag, is a string giving the name of the tag. The
1981 function should return either nil if the tag should be included
1982 as normal, or \"-<TAG>\" to exclude the tag.
1983 Note that for the purpose of tag filtering, only the lower-case version of
1984 all tags will be considered, so that this function will only ever see
1985 the lower-case version of all tags."
1986 :group 'org-agenda
1987 :type '(choice (const nil) (function)))
1989 (defcustom org-agenda-bulk-custom-functions nil
1990 "Alist of characters and custom functions for bulk actions.
1991 For example, this value makes those two functions available:
1993 '((?R set-category)
1994 (?C bulk-cut))
1996 With selected entries in an agenda buffer, `B R' will call
1997 the custom function `set-category' on the selected entries.
1998 Note that functions in this alist don't need to be quoted."
1999 :type 'alist
2000 :version "24.1"
2001 :group 'org-agenda)
2003 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
2004 "Execute BODY with point at location given by `org-hd-marker' property.
2005 If STRING is non-nil, the text property will be fetched from position 0
2006 in that string. If STRING is nil, it will be fetched from the beginning
2007 of the current line."
2008 (org-with-gensyms (marker)
2009 `(let ((,marker (get-text-property (if string 0 (point-at-bol))
2010 'org-hd-marker ,string)))
2011 (with-current-buffer (marker-buffer ,marker)
2012 (save-excursion
2013 (goto-char ,marker)
2014 ,@body)))))
2015 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
2017 (defun org-add-agenda-custom-command (entry)
2018 "Replace or add a command in `org-agenda-custom-commands'.
2019 This is mostly for hacking and trying a new command - once the command
2020 works you probably want to add it to `org-agenda-custom-commands' for good."
2021 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
2022 (if ass
2023 (setcdr ass (cdr entry))
2024 (push entry org-agenda-custom-commands))))
2026 ;;; Define the org-agenda-mode
2028 (defvar org-agenda-mode-map (make-sparse-keymap)
2029 "Keymap for `org-agenda-mode'.")
2030 (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
2032 (defvar org-agenda-menu) ; defined later in this file.
2033 (defvar org-agenda-restrict nil) ; defined later in this file.
2034 (defvar org-agenda-follow-mode nil)
2035 (defvar org-agenda-entry-text-mode nil)
2036 (defvar org-agenda-clockreport-mode nil)
2037 (defvar org-agenda-show-log nil)
2038 (defvar org-agenda-redo-command nil)
2039 (defvar org-agenda-query-string nil)
2040 (defvar org-agenda-mode-hook nil
2041 "Hook run after `org-agenda-mode' is turned on.
2042 The buffer is still writable when this hook is called.")
2043 (defvar org-agenda-type nil)
2044 (defvar org-agenda-force-single-file nil)
2045 (defvar org-agenda-bulk-marked-entries nil
2046 "List of markers that refer to marked entries in the agenda.")
2048 ;;; Multiple agenda buffers support
2050 (defcustom org-agenda-sticky nil
2051 "Non-nil means agenda q key will bury agenda buffers.
2052 Agenda commands will then show existing buffer instead of generating new ones.
2053 When nil, `q' will kill the single agenda buffer."
2054 :group 'org-agenda
2055 :version "24.3"
2056 :type 'boolean)
2059 ;;;###autoload
2060 (defun org-toggle-sticky-agenda (&optional arg)
2061 "Toggle `org-agenda-sticky'."
2062 (interactive "P")
2063 (let ((new-value (if arg
2064 (> (prefix-numeric-value arg) 0)
2065 (not org-agenda-sticky))))
2066 (if (equal new-value org-agenda-sticky)
2067 (and (org-called-interactively-p 'interactive)
2068 (message "Sticky agenda was already %s"
2069 (if org-agenda-sticky "enabled" "disabled")))
2070 (setq org-agenda-sticky new-value)
2071 (org-agenda-kill-all-agenda-buffers)
2072 (and (org-called-interactively-p 'interactive)
2073 (message "Sticky agenda %s"
2074 (if org-agenda-sticky "enabled" "disabled"))))))
2076 (defvar org-agenda-buffer nil
2077 "Agenda buffer currently being generated.")
2079 (defvar org-agenda-last-prefix-arg nil)
2080 (defvar org-agenda-this-buffer-name nil)
2081 (defvar org-agenda-doing-sticky-redo nil)
2082 (defvar org-agenda-this-buffer-is-sticky nil)
2083 (defvar org-agenda-last-indirect-buffer nil
2084 "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
2086 (defconst org-agenda-local-vars
2087 '(org-agenda-this-buffer-name
2088 org-agenda-undo-list
2089 org-agenda-pending-undo-list
2090 org-agenda-follow-mode
2091 org-agenda-entry-text-mode
2092 org-agenda-clockreport-mode
2093 org-agenda-show-log
2094 org-agenda-redo-command
2095 org-agenda-query-string
2096 org-agenda-type
2097 org-agenda-bulk-marked-entries
2098 org-agenda-undo-has-started-in
2099 org-agenda-info
2100 org-agenda-pre-window-conf
2101 org-agenda-columns-active
2102 org-agenda-tag-filter
2103 org-agenda-category-filter
2104 org-agenda-top-headline-filter
2105 org-agenda-regexp-filter
2106 org-agenda-effort-filter
2107 org-agenda-markers
2108 org-agenda-last-search-view-search-was-boolean
2109 org-agenda-last-indirect-buffer
2110 org-agenda-filtered-by-category
2111 org-agenda-filter-form
2112 org-agenda-cycle-counter
2113 org-agenda-last-prefix-arg)
2114 "Variables that must be local in agenda buffers to allow multiple buffers.")
2116 (defun org-agenda-mode ()
2117 "Mode for time-sorted view on action items in Org-mode files.
2119 The following commands are available:
2121 \\{org-agenda-mode-map}"
2122 (interactive)
2123 (cond (org-agenda-doing-sticky-redo
2124 ;; Refreshing sticky agenda-buffer
2126 ;; Preserve the value of `org-agenda-local-vars' variables,
2127 ;; while letting `kill-all-local-variables' kill the rest
2128 (let ((save (buffer-local-variables)))
2129 (kill-all-local-variables)
2130 (mapc 'make-local-variable org-agenda-local-vars)
2131 (dolist (elem save)
2132 (let ((var (car elem))
2133 (val (cdr elem)))
2134 (when (and val
2135 (member var org-agenda-local-vars))
2136 (set var val)))))
2137 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2138 (org-agenda-sticky
2139 ;; Creating a sticky Agenda buffer for the first time
2140 (kill-all-local-variables)
2141 (mapc 'make-local-variable org-agenda-local-vars)
2142 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
2144 ;; Creating a non-sticky agenda buffer
2145 (kill-all-local-variables)
2146 (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
2147 (setq org-agenda-undo-list nil
2148 org-agenda-pending-undo-list nil
2149 org-agenda-bulk-marked-entries nil)
2150 (setq major-mode 'org-agenda-mode)
2151 ;; Keep global-font-lock-mode from turning on font-lock-mode
2152 (org-set-local 'font-lock-global-modes (list 'not major-mode))
2153 (setq mode-name "Org-Agenda")
2154 (setq indent-tabs-mode nil)
2155 (use-local-map org-agenda-mode-map)
2156 (easy-menu-add org-agenda-menu)
2157 (if org-startup-truncated (setq truncate-lines t))
2158 (org-set-local 'line-move-visual nil)
2159 (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
2160 (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
2161 ;; Make sure properties are removed when copying text
2162 (org-add-hook 'filter-buffer-substring-functions
2163 (lambda (fun start end delete)
2164 (substring-no-properties (funcall fun start end delete)))
2165 nil t)
2166 (unless org-agenda-keep-modes
2167 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
2168 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode))
2169 (setq org-agenda-show-log org-agenda-start-with-log-mode)
2170 (setq org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode)
2171 (add-to-invisibility-spec '(org-filtered))
2172 (add-to-invisibility-spec '(org-link))
2173 (easy-menu-change
2174 '("Agenda") "Agenda Files"
2175 (append
2176 (list
2177 (vector
2178 (if (get 'org-agenda-files 'org-restrict)
2179 "Restricted to single file"
2180 "Edit File List")
2181 '(org-edit-agenda-file-list)
2182 (not (get 'org-agenda-files 'org-restrict)))
2183 "--")
2184 (mapcar 'org-file-menu-entry (org-agenda-files))))
2185 (org-agenda-set-mode-name)
2186 (apply
2187 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
2188 (list 'org-agenda-mode-hook)))
2190 (substitute-key-definition 'undo 'org-agenda-undo
2191 org-agenda-mode-map global-map)
2192 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
2193 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
2194 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
2195 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
2196 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2197 (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
2198 (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
2199 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2200 (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
2201 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2202 (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
2203 (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
2204 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2205 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2206 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2207 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2208 (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
2209 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2210 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2211 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2212 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2213 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2214 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2215 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2216 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2217 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2218 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2219 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2220 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2221 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2222 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2223 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2224 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2225 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2226 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2227 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2228 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2229 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2230 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2231 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2232 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2233 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2234 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2235 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2236 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2237 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2238 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2239 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2240 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2241 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2243 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2244 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2245 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2246 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2247 (while l (org-defkey org-agenda-mode-map
2248 (int-to-string (pop l)) 'digit-argument)))
2250 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2251 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2252 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2253 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2254 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2255 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2256 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2257 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2258 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2259 (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
2260 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2261 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2262 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2263 'org-clock-modify-effort-estimate)
2264 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2265 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2266 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2267 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2268 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2269 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2270 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2271 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2272 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2273 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2274 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2275 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2276 (substitute-key-definition 'next-line 'org-agenda-next-line
2277 org-agenda-mode-map global-map)
2278 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2279 org-agenda-mode-map global-map)
2280 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2281 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2282 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2283 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
2284 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2285 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2286 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2287 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2288 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2289 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2290 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2291 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2292 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2293 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2294 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2295 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2296 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2297 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2298 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2299 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2300 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2301 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2302 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2303 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2304 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2305 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2306 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2307 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2308 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2309 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2311 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2312 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2313 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2314 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2315 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2316 (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
2317 (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
2318 (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
2319 (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
2320 (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
2321 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2322 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
2323 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2324 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2325 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2326 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2328 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2329 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2331 (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
2332 (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
2334 (when org-agenda-mouse-1-follows-link
2335 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2336 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2337 '("Agenda"
2338 ("Agenda Files")
2339 "--"
2340 ("Agenda Dates"
2341 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
2342 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2343 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2344 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2345 "--"
2346 ("View"
2347 ["Day View" org-agenda-day-view
2348 :active (org-agenda-check-type nil 'agenda)
2349 :style radio :selected (eq org-agenda-current-span 'day)
2350 :keys "v d (or just d)"]
2351 ["Week View" org-agenda-week-view
2352 :active (org-agenda-check-type nil 'agenda)
2353 :style radio :selected (eq org-agenda-current-span 'week)
2354 :keys "v w"]
2355 ["Fortnight View" org-agenda-fortnight-view
2356 :active (org-agenda-check-type nil 'agenda)
2357 :style radio :selected (eq org-agenda-current-span 'fortnight)
2358 :keys "v f"]
2359 ["Month View" org-agenda-month-view
2360 :active (org-agenda-check-type nil 'agenda)
2361 :style radio :selected (eq org-agenda-current-span 'month)
2362 :keys "v m"]
2363 ["Year View" org-agenda-year-view
2364 :active (org-agenda-check-type nil 'agenda)
2365 :style radio :selected (eq org-agenda-current-span 'year)
2366 :keys "v y"]
2367 "--"
2368 ["Include Diary" org-agenda-toggle-diary
2369 :style toggle :selected org-agenda-include-diary
2370 :active (org-agenda-check-type nil 'agenda)]
2371 ["Include Deadlines" org-agenda-toggle-deadlines
2372 :style toggle :selected org-agenda-include-deadlines
2373 :active (org-agenda-check-type nil 'agenda)]
2374 ["Use Time Grid" org-agenda-toggle-time-grid
2375 :style toggle :selected org-agenda-use-time-grid
2376 :active (org-agenda-check-type nil 'agenda)]
2377 "--"
2378 ["Show clock report" org-agenda-clockreport-mode
2379 :style toggle :selected org-agenda-clockreport-mode
2380 :active (org-agenda-check-type nil 'agenda)]
2381 ["Show some entry text" org-agenda-entry-text-mode
2382 :style toggle :selected org-agenda-entry-text-mode
2383 :active t]
2384 "--"
2385 ["Show Logbook entries" org-agenda-log-mode
2386 :style toggle :selected org-agenda-show-log
2387 :active (org-agenda-check-type nil 'agenda 'timeline)
2388 :keys "v l (or just l)"]
2389 ["Include archived trees" org-agenda-archives-mode
2390 :style toggle :selected org-agenda-archives-mode :active t
2391 :keys "v a"]
2392 ["Include archive files" (org-agenda-archives-mode t)
2393 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2394 :keys "v A"]
2395 "--"
2396 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2397 ["Write view to file" org-agenda-write t]
2398 ["Rebuild buffer" org-agenda-redo t]
2399 ["Save all Org-mode Buffers" org-save-all-org-buffers t]
2400 "--"
2401 ["Show original entry" org-agenda-show t]
2402 ["Go To (other window)" org-agenda-goto t]
2403 ["Go To (this window)" org-agenda-switch-to t]
2404 ["Capture with cursor date" org-agenda-capture t]
2405 ["Follow Mode" org-agenda-follow-mode
2406 :style toggle :selected org-agenda-follow-mode :active t]
2407 ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2408 "--"
2409 ("TODO"
2410 ["Cycle TODO" org-agenda-todo t]
2411 ["Next TODO set" org-agenda-todo-nextset t]
2412 ["Previous TODO set" org-agenda-todo-previousset t]
2413 ["Add note" org-agenda-add-note t])
2414 ("Archive/Refile/Delete"
2415 ["Archive default" org-agenda-archive-default t]
2416 ["Archive default" org-agenda-archive-default-with-confirmation t]
2417 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2418 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2419 ["Archive subtree" org-agenda-archive t]
2420 "--"
2421 ["Refile" org-agenda-refile t]
2422 "--"
2423 ["Delete subtree" org-agenda-kill t])
2424 ("Bulk action"
2425 ["Mark entry" org-agenda-bulk-mark t]
2426 ["Mark all" org-agenda-bulk-mark-all t]
2427 ["Unmark entry" org-agenda-bulk-unmark t]
2428 ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
2429 ["Toggle mark" org-agenda-bulk-toggle t]
2430 ["Toggle all" org-agenda-bulk-toggle-all t]
2431 ["Mark regexp" org-agenda-bulk-mark-regexp t])
2432 ["Act on all marked" org-agenda-bulk-action t]
2433 "--"
2434 ("Tags and Properties"
2435 ["Show all Tags" org-agenda-show-tags t]
2436 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2437 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2438 "--"
2439 ["Column View" org-columns t])
2440 ("Deadline/Schedule"
2441 ["Schedule" org-agenda-schedule t]
2442 ["Set Deadline" org-agenda-deadline t]
2443 "--"
2444 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
2445 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
2446 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
2447 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
2448 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
2449 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
2450 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
2451 ("Clock and Effort"
2452 ["Clock in" org-agenda-clock-in t]
2453 ["Clock out" org-agenda-clock-out t]
2454 ["Clock cancel" org-agenda-clock-cancel t]
2455 ["Goto running clock" org-clock-goto t]
2456 "--"
2457 ["Set Effort" org-agenda-set-effort t]
2458 ["Change clocked effort" org-clock-modify-effort-estimate
2459 (org-clock-is-active)])
2460 ("Priority"
2461 ["Set Priority" org-agenda-priority t]
2462 ["Increase Priority" org-agenda-priority-up t]
2463 ["Decrease Priority" org-agenda-priority-down t]
2464 ["Show Priority" org-show-priority t])
2465 ("Calendar/Diary"
2466 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
2467 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
2468 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
2469 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
2470 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
2471 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
2472 "--"
2473 ["Create iCalendar File" org-icalendar-combine-agenda-files t])
2474 "--"
2475 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2476 "--"
2477 ("MobileOrg"
2478 ["Push Files and Views" org-mobile-push t]
2479 ["Get Captured and Flagged" org-mobile-pull t]
2480 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
2481 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2482 "--"
2483 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2484 "--"
2485 ["Quit" org-agenda-quit t]
2486 ["Exit and Release Buffers" org-agenda-exit t]
2489 ;;; Agenda undo
2491 (defvar org-agenda-allow-remote-undo t
2492 "Non-nil means allow remote undo from the agenda buffer.")
2493 (defvar org-agenda-undo-has-started-in nil
2494 "Buffers that have already seen `undo-start' in the current undo sequence.")
2496 (defun org-agenda-undo ()
2497 "Undo a remote editing step in the agenda.
2498 This undoes changes both in the agenda buffer and in the remote buffer
2499 that have been changed along."
2500 (interactive)
2501 (or org-agenda-allow-remote-undo
2502 (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2503 (if (not (eq this-command last-command))
2504 (setq org-agenda-undo-has-started-in nil
2505 org-agenda-pending-undo-list org-agenda-undo-list))
2506 (if (not org-agenda-pending-undo-list)
2507 (user-error "No further undo information"))
2508 (let* ((entry (pop org-agenda-pending-undo-list))
2509 buf line cmd rembuf)
2510 (setq cmd (pop entry) line (pop entry))
2511 (setq rembuf (nth 2 entry))
2512 (org-with-remote-undo rembuf
2513 (while (bufferp (setq buf (pop entry)))
2514 (if (pop entry)
2515 (with-current-buffer buf
2516 (let ((last-undo-buffer buf)
2517 (inhibit-read-only t))
2518 (unless (memq buf org-agenda-undo-has-started-in)
2519 (push buf org-agenda-undo-has-started-in)
2520 (make-local-variable 'pending-undo-list)
2521 (undo-start))
2522 (while (and pending-undo-list
2523 (listp pending-undo-list)
2524 (not (car pending-undo-list)))
2525 (pop pending-undo-list))
2526 (undo-more 1))))))
2527 (org-goto-line line)
2528 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2530 (defun org-verify-change-for-undo (l1 l2)
2531 "Verify that a real change occurred between the undo lists L1 and L2."
2532 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2533 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2534 (not (eq l1 l2)))
2536 ;;; Agenda dispatch
2538 (defvar org-agenda-restrict-begin (make-marker))
2539 (defvar org-agenda-restrict-end (make-marker))
2540 (defvar org-agenda-last-dispatch-buffer nil)
2541 (defvar org-agenda-overriding-restriction nil)
2543 (defcustom org-agenda-custom-commands-contexts nil
2544 "Alist of custom agenda keys and contextual rules.
2546 For example, if you have a custom agenda command \"p\" and you
2547 want this command to be accessible only from plain text files,
2548 use this:
2550 '((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
2552 Here are the available contexts definitions:
2554 in-file: command displayed only in matching files
2555 in-mode: command displayed only in matching modes
2556 not-in-file: command not displayed in matching files
2557 not-in-mode: command not displayed in matching modes
2558 in-buffer: command displayed only in matching buffers
2559 not-in-buffer: command not displayed in matching buffers
2560 [function]: a custom function taking no argument
2562 If you define several checks, the agenda command will be
2563 accessible if there is at least one valid check.
2565 You can also bind a key to another agenda custom command
2566 depending on contextual rules.
2568 '((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
2570 Here it means: in .txt files, use \"p\" as the key for the
2571 agenda command otherwise associated with \"q\". (The command
2572 originally associated with \"q\" is not displayed to avoid
2573 duplicates.)"
2574 :version "24.3"
2575 :group 'org-agenda-custom-commands
2576 :type '(repeat (list :tag "Rule"
2577 (string :tag " Agenda key")
2578 (string :tag "Replace by command")
2579 (repeat :tag "Available when"
2580 (choice
2581 (cons :tag "Condition"
2582 (choice
2583 (const :tag "In file" in-file)
2584 (const :tag "Not in file" not-in-file)
2585 (const :tag "In buffer" in-buffer)
2586 (const :tag "Not in buffer" not-in-buffer)
2587 (const :tag "In mode" in-mode)
2588 (const :tag "Not in mode" not-in-mode))
2589 (regexp))
2590 (function :tag "Custom function"))))))
2592 (defcustom org-agenda-max-entries nil
2593 "Maximum number of entries to display in an agenda.
2594 This can be nil (no limit) or an integer or an alist of agenda
2595 types with an associated number of entries to display in this
2596 type."
2597 :version "24.4"
2598 :package-version '(Org . "8.0")
2599 :group 'org-agenda-custom-commands
2600 :type '(choice (symbol :tag "No limit" nil)
2601 (integer :tag "Max number of entries")
2602 (repeat
2603 (cons (choice :tag "Agenda type"
2604 (const agenda)
2605 (const todo)
2606 (const tags)
2607 (const search)
2608 (const timeline))
2609 (integer :tag "Max number of entries")))))
2611 (defcustom org-agenda-max-todos nil
2612 "Maximum number of TODOs to display in an agenda.
2613 This can be nil (no limit) or an integer or an alist of agenda
2614 types with an associated number of entries to display in this
2615 type."
2616 :version "24.4"
2617 :package-version '(Org . "8.0")
2618 :group 'org-agenda-custom-commands
2619 :type '(choice (symbol :tag "No limit" nil)
2620 (integer :tag "Max number of TODOs")
2621 (repeat
2622 (cons (choice :tag "Agenda type"
2623 (const agenda)
2624 (const todo)
2625 (const tags)
2626 (const search)
2627 (const timeline))
2628 (integer :tag "Max number of TODOs")))))
2630 (defcustom org-agenda-max-tags nil
2631 "Maximum number of tagged entries to display in an agenda.
2632 This can be nil (no limit) or an integer or an alist of agenda
2633 types with an associated number of entries to display in this
2634 type."
2635 :version "24.4"
2636 :package-version '(Org . "8.0")
2637 :group 'org-agenda-custom-commands
2638 :type '(choice (symbol :tag "No limit" nil)
2639 (integer :tag "Max number of tagged entries")
2640 (repeat
2641 (cons (choice :tag "Agenda type"
2642 (const agenda)
2643 (const todo)
2644 (const tags)
2645 (const search)
2646 (const timeline))
2647 (integer :tag "Max number of tagged entries")))))
2649 (defcustom org-agenda-max-effort nil
2650 "Maximum cumulated effort duration for the agenda.
2651 This can be nil (no limit) or a number of minutes (as an integer)
2652 or an alist of agenda types with an associated number of minutes
2653 to limit entries to in this type."
2654 :version "24.4"
2655 :package-version '(Org . "8.0")
2656 :group 'org-agenda-custom-commands
2657 :type '(choice (symbol :tag "No limit" nil)
2658 (integer :tag "Max number of minutes")
2659 (repeat
2660 (cons (choice :tag "Agenda type"
2661 (const agenda)
2662 (const todo)
2663 (const tags)
2664 (const search)
2665 (const timeline))
2666 (integer :tag "Max number of minutes")))))
2668 (defvar org-keys nil)
2669 (defvar org-match nil)
2670 ;;;###autoload
2671 (defun org-agenda (&optional arg org-keys restriction)
2672 "Dispatch agenda commands to collect entries to the agenda buffer.
2673 Prompts for a command to execute. Any prefix arg will be passed
2674 on to the selected command. The default selections are:
2676 a Call `org-agenda-list' to display the agenda for current day or week.
2677 t Call `org-todo-list' to display the global todo list.
2678 T Call `org-todo-list' to display the global todo list, select only
2679 entries with a specific TODO keyword (the user gets a prompt).
2680 m Call `org-tags-view' to display headlines with tags matching
2681 a condition (the user is prompted for the condition).
2682 M Like `m', but select only TODO entries, no ordinary headlines.
2683 L Create a timeline for the current buffer.
2684 e Export views to associated files.
2685 s Search entries for keywords.
2686 S Search entries for keywords, only with TODO keywords.
2687 / Multi occur across all agenda files and also files listed
2688 in `org-agenda-text-search-extra-files'.
2689 < Restrict agenda commands to buffer, subtree, or region.
2690 Press several times to get the desired effect.
2691 > Remove a previous restriction.
2692 # List \"stuck\" projects.
2693 ! Configure what \"stuck\" means.
2694 C Configure custom agenda commands.
2696 More commands can be added by configuring the variable
2697 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2698 searches can be pre-defined in this way.
2700 If the current buffer is in Org-mode and visiting a file, you can also
2701 first press `<' once to indicate that the agenda should be temporarily
2702 \(until the next use of \\[org-agenda]) restricted to the current file.
2703 Pressing `<' twice means to restrict to the current subtree or region
2704 \(if active)."
2705 (interactive "P")
2706 (catch 'exit
2707 (let* ((prefix-descriptions nil)
2708 (org-agenda-buffer-name org-agenda-buffer-name)
2709 (org-agenda-window-setup (if (equal (buffer-name)
2710 org-agenda-buffer-name)
2711 'current-window
2712 org-agenda-window-setup))
2713 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2714 (org-agenda-custom-commands
2715 ;; normalize different versions
2716 (delq nil
2717 (mapcar
2718 (lambda (x)
2719 (cond ((stringp (cdr x))
2720 (push x prefix-descriptions)
2721 nil)
2722 ((stringp (nth 1 x)) x)
2723 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2724 (t (cons (car x) (cons "" (cdr x))))))
2725 org-agenda-custom-commands)))
2726 (org-agenda-custom-commands
2727 (org-contextualize-keys
2728 org-agenda-custom-commands org-agenda-custom-commands-contexts))
2729 (buf (current-buffer))
2730 (bfn (buffer-file-name (buffer-base-buffer)))
2731 entry key type org-match lprops ans)
2732 ;; Turn off restriction unless there is an overriding one,
2733 (unless org-agenda-overriding-restriction
2734 (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
2735 ;; There is a request to keep the file list in place
2736 (put 'org-agenda-files 'org-restrict nil))
2737 (setq org-agenda-restrict nil)
2738 (move-marker org-agenda-restrict-begin nil)
2739 (move-marker org-agenda-restrict-end nil))
2740 ;; Delete old local properties
2741 (put 'org-agenda-redo-command 'org-lprops nil)
2742 ;; Delete previously set last-arguments
2743 (put 'org-agenda-redo-command 'last-args nil)
2744 ;; Remember where this call originated
2745 (setq org-agenda-last-dispatch-buffer (current-buffer))
2746 (unless org-keys
2747 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2748 org-keys (car ans)
2749 restriction (cdr ans)))
2750 ;; If we have sticky agenda buffers, set a name for the buffer,
2751 ;; depending on the invoking keys. The user may still set this
2752 ;; as a command option, which will overwrite what we do here.
2753 (if org-agenda-sticky
2754 (setq org-agenda-buffer-name
2755 (format "*Org Agenda(%s)*" org-keys)))
2756 ;; Establish the restriction, if any
2757 (when (and (not org-agenda-overriding-restriction) restriction)
2758 (put 'org-agenda-files 'org-restrict (list bfn))
2759 (cond
2760 ((eq restriction 'region)
2761 (setq org-agenda-restrict (current-buffer))
2762 (move-marker org-agenda-restrict-begin (region-beginning))
2763 (move-marker org-agenda-restrict-end (region-end)))
2764 ((eq restriction 'subtree)
2765 (save-excursion
2766 (setq org-agenda-restrict (current-buffer))
2767 (org-back-to-heading t)
2768 (move-marker org-agenda-restrict-begin (point))
2769 (move-marker org-agenda-restrict-end
2770 (progn (org-end-of-subtree t)))))))
2772 ;; For example the todo list should not need it (but does...)
2773 (cond
2774 ((setq entry (assoc org-keys org-agenda-custom-commands))
2775 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2776 (progn
2777 (setq type (nth 2 entry) org-match (eval (nth 3 entry))
2778 lprops (nth 4 entry))
2779 (if org-agenda-sticky
2780 (setq org-agenda-buffer-name
2781 (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
2782 (format "*Org Agenda(%s)*" org-keys))))
2783 (put 'org-agenda-redo-command 'org-lprops lprops)
2784 (cond
2785 ((eq type 'agenda)
2786 (org-let lprops '(org-agenda-list current-prefix-arg)))
2787 ((eq type 'agenda*)
2788 (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
2789 ((eq type 'alltodo)
2790 (org-let lprops '(org-todo-list current-prefix-arg)))
2791 ((eq type 'search)
2792 (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
2793 ((eq type 'stuck)
2794 (org-let lprops '(org-agenda-list-stuck-projects
2795 current-prefix-arg)))
2796 ((eq type 'tags)
2797 (org-let lprops '(org-tags-view current-prefix-arg org-match)))
2798 ((eq type 'tags-todo)
2799 (org-let lprops '(org-tags-view '(4) org-match)))
2800 ((eq type 'todo)
2801 (org-let lprops '(org-todo-list org-match)))
2802 ((eq type 'tags-tree)
2803 (org-check-for-org-mode)
2804 (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
2805 ((eq type 'todo-tree)
2806 (org-check-for-org-mode)
2807 (org-let lprops
2808 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2809 (regexp-quote org-match) "\\>"))))
2810 ((eq type 'occur-tree)
2811 (org-check-for-org-mode)
2812 (org-let lprops '(org-occur org-match)))
2813 ((functionp type)
2814 (org-let lprops '(funcall type org-match)))
2815 ((fboundp type)
2816 (org-let lprops '(funcall type org-match)))
2817 (t (user-error "Invalid custom agenda command type %s" type))))
2818 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2819 ((equal org-keys "C")
2820 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2821 (customize-variable 'org-agenda-custom-commands))
2822 ((equal org-keys "a") (call-interactively 'org-agenda-list))
2823 ((equal org-keys "s") (call-interactively 'org-search-view))
2824 ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
2825 ((equal org-keys "t") (call-interactively 'org-todo-list))
2826 ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2827 ((equal org-keys "m") (call-interactively 'org-tags-view))
2828 ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2829 ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
2830 ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
2831 (org-add-hook
2832 'post-command-hook
2833 (lambda ()
2834 (unless (current-message)
2835 (let* ((m (org-agenda-get-any-marker))
2836 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2837 (when note
2838 (message (concat
2839 "FLAGGING-NOTE ([?] for more info): "
2840 (org-add-props
2841 (replace-regexp-in-string
2842 "\\\\n" "//"
2843 (copy-sequence note))
2844 nil 'face 'org-warning)))))))
2845 t t))
2846 ((equal org-keys "L")
2847 (unless (derived-mode-p 'org-mode)
2848 (user-error "This is not an Org-mode file"))
2849 (unless restriction
2850 (put 'org-agenda-files 'org-restrict (list bfn))
2851 (org-call-with-arg 'org-timeline arg)))
2852 ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2853 ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
2854 ((equal org-keys "!") (customize-variable 'org-stuck-projects))
2855 (t (user-error "Invalid agenda key"))))))
2857 (defvar org-agenda-multi)
2859 (defun org-agenda-append-agenda ()
2860 "Append another agenda view to the current one.
2861 This function allows interactive building of block agendas.
2862 Agenda views are separated by `org-agenda-block-separator'."
2863 (interactive)
2864 (unless (derived-mode-p 'org-agenda-mode)
2865 (user-error "Can only append from within agenda buffer"))
2866 (let ((org-agenda-multi t))
2867 (org-agenda)
2868 (widen)
2869 (org-agenda-finalize)
2870 (setq buffer-read-only t)
2871 (org-agenda-fit-window-to-buffer)))
2873 (defun org-agenda-normalize-custom-commands (cmds)
2874 "Normalize custom commands CMDS."
2875 (delq nil
2876 (mapcar
2877 (lambda (x)
2878 (cond ((stringp (cdr x)) nil)
2879 ((stringp (nth 1 x)) x)
2880 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2881 (t (cons (car x) (cons "" (cdr x))))))
2882 cmds)))
2884 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2885 "The user interface for selecting an agenda command."
2886 (catch 'exit
2887 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2888 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2889 (region-p (org-region-active-p))
2890 (custom org-agenda-custom-commands)
2891 (selstring "")
2892 restriction second-time
2893 c entry key type match prefixes rmheader header-end custom1 desc
2894 line lines left right n n1)
2895 (save-window-excursion
2896 (delete-other-windows)
2897 (org-switch-to-buffer-other-window " *Agenda Commands*")
2898 (erase-buffer)
2899 (insert (eval-when-compile
2900 (let ((header
2901 "Press key for an agenda command: < Buffer, subtree/region restriction
2902 -------------------------------- > Remove restriction
2903 a Agenda for current week or day e Export agenda views
2904 t List of all TODO entries T Entries with special TODO kwd
2905 m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
2906 s Search for keywords S Like s, but only TODO entries
2907 L Timeline for current buffer # List stuck projects (!=configure)
2908 / Multi-occur C Configure custom agenda commands
2909 ? Find :FLAGGED: entries * Toggle sticky agenda views
2911 (start 0))
2912 (while (string-match
2913 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2914 header start)
2915 (setq start (match-end 0))
2916 (add-text-properties (match-beginning 2) (match-end 2)
2917 '(face bold) header))
2918 header)))
2919 (setq header-end (point-marker))
2920 (while t
2921 (setq custom1 custom)
2922 (when (eq rmheader t)
2923 (org-goto-line 1)
2924 (re-search-forward ":" nil t)
2925 (delete-region (match-end 0) (point-at-eol))
2926 (forward-char 1)
2927 (looking-at "-+")
2928 (delete-region (match-end 0) (point-at-eol))
2929 (move-marker header-end (match-end 0)))
2930 (goto-char header-end)
2931 (delete-region (point) (point-max))
2933 ;; Produce all the lines that describe custom commands and prefixes
2934 (setq lines nil)
2935 (while (setq entry (pop custom1))
2936 (setq key (car entry) desc (nth 1 entry)
2937 type (nth 2 entry)
2938 match (nth 3 entry))
2939 (if (> (length key) 1)
2940 (add-to-list 'prefixes (string-to-char key))
2941 (setq line
2942 (format
2943 "%-4s%-14s"
2944 (org-add-props (copy-sequence key)
2945 '(face bold))
2946 (cond
2947 ((string-match "\\S-" desc) desc)
2948 ((eq type 'agenda) "Agenda for current week or day")
2949 ((eq type 'agenda*) "Appointments for current week or day")
2950 ((eq type 'alltodo) "List of all TODO entries")
2951 ((eq type 'search) "Word search")
2952 ((eq type 'stuck) "List of stuck projects")
2953 ((eq type 'todo) "TODO keyword")
2954 ((eq type 'tags) "Tags query")
2955 ((eq type 'tags-todo) "Tags (TODO)")
2956 ((eq type 'tags-tree) "Tags tree")
2957 ((eq type 'todo-tree) "TODO kwd tree")
2958 ((eq type 'occur-tree) "Occur tree")
2959 ((functionp type) (if (symbolp type)
2960 (symbol-name type)
2961 "Lambda expression"))
2962 (t "???"))))
2963 (if org-agenda-menu-show-matcher
2964 (setq line
2965 (concat line ": "
2966 (cond
2967 ((stringp match)
2968 (setq match (copy-sequence match))
2969 (org-add-props match nil 'face 'org-warning))
2970 ((listp type)
2971 (format "set of %d commands" (length type))))))
2972 (if (org-string-nw-p match)
2973 (add-text-properties
2974 0 (length line) (list 'help-echo
2975 (concat "Matcher: " match)) line)))
2976 (push line lines)))
2977 (setq lines (nreverse lines))
2978 (when prefixes
2979 (mapc (lambda (x)
2980 (push
2981 (format "%s %s"
2982 (org-add-props (char-to-string x)
2983 nil 'face 'bold)
2984 (or (cdr (assoc (concat selstring
2985 (char-to-string x))
2986 prefix-descriptions))
2987 "Prefix key"))
2988 lines))
2989 prefixes))
2991 ;; Check if we should display in two columns
2992 (if org-agenda-menu-two-columns
2993 (progn
2994 (setq n (length lines)
2995 n1 (+ (/ n 2) (mod n 2))
2996 right (nthcdr n1 lines)
2997 left (copy-sequence lines))
2998 (setcdr (nthcdr (1- n1) left) nil))
2999 (setq left lines right nil))
3000 (while left
3001 (insert "\n" (pop left))
3002 (when right
3003 (if (< (current-column) 40)
3004 (move-to-column 40 t)
3005 (insert " "))
3006 (insert (pop right))))
3008 ;; Make the window the right size
3009 (goto-char (point-min))
3010 (if second-time
3011 (if (not (pos-visible-in-window-p (point-max)))
3012 (org-fit-window-to-buffer))
3013 (setq second-time t)
3014 (org-fit-window-to-buffer))
3016 ;; Ask for selection
3017 (message "Press key for agenda command%s:"
3018 (if (or restrict-ok org-agenda-overriding-restriction)
3019 (if org-agenda-overriding-restriction
3020 " (restriction lock active)"
3021 (if restriction
3022 (format " (restricted to %s)" restriction)
3023 " (unrestricted)"))
3024 ""))
3025 (setq c (read-char-exclusive))
3026 (message "")
3027 (cond
3028 ((assoc (char-to-string c) custom)
3029 (setq selstring (concat selstring (char-to-string c)))
3030 (throw 'exit (cons selstring restriction)))
3031 ((memq c prefixes)
3032 (setq selstring (concat selstring (char-to-string c))
3033 prefixes nil
3034 rmheader (or rmheader t)
3035 custom (delq nil (mapcar
3036 (lambda (x)
3037 (if (or (= (length (car x)) 1)
3038 (/= (string-to-char (car x)) c))
3040 (cons (substring (car x) 1) (cdr x))))
3041 custom))))
3042 ((eq c ?*)
3043 (call-interactively 'org-toggle-sticky-agenda)
3044 (sit-for 2))
3045 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
3046 (message "Restriction is only possible in Org-mode buffers")
3047 (ding) (sit-for 1))
3048 ((eq c ?1)
3049 (org-agenda-remove-restriction-lock 'noupdate)
3050 (setq restriction 'buffer))
3051 ((eq c ?0)
3052 (org-agenda-remove-restriction-lock 'noupdate)
3053 (setq restriction (if region-p 'region 'subtree)))
3054 ((eq c ?<)
3055 (org-agenda-remove-restriction-lock 'noupdate)
3056 (setq restriction
3057 (cond
3058 ((eq restriction 'buffer)
3059 (if region-p 'region 'subtree))
3060 ((memq restriction '(subtree region))
3061 nil)
3062 (t 'buffer))))
3063 ((eq c ?>)
3064 (org-agenda-remove-restriction-lock 'noupdate)
3065 (setq restriction nil))
3066 ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
3067 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
3068 ((and (> (length selstring) 0) (eq c ?\d))
3069 (delete-window)
3070 (org-agenda-get-restriction-and-command prefix-descriptions))
3072 ((equal c ?q) (error "Abort"))
3073 (t (user-error "Invalid key %c" c))))))))
3075 (defun org-agenda-fit-window-to-buffer ()
3076 "Fit the window to the buffer size."
3077 (and (memq org-agenda-window-setup '(reorganize-frame))
3078 (fboundp 'fit-window-to-buffer)
3079 (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
3080 (= (car org-agenda-window-frame-fractions) 1.0))
3081 (delete-other-windows)
3082 (org-fit-window-to-buffer
3084 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3085 (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
3087 (defvar org-cmd nil)
3088 (defvar org-agenda-overriding-cmd nil)
3089 (defvar org-agenda-overriding-arguments nil)
3090 (defvar org-agenda-overriding-cmd-arguments nil)
3091 (defun org-agenda-run-series (name series)
3092 "Run agenda NAME as a SERIES of agenda commands."
3093 (org-let (nth 1 series) '(org-agenda-prepare name))
3094 ;; We need to reset agenda markers here, because when constructing a
3095 ;; block agenda, the individual blocks do not do that.
3096 (org-agenda-reset-markers)
3097 (let* ((org-agenda-multi t)
3098 (redo (list 'org-agenda-run-series name (list 'quote series)))
3099 (cmds (car series))
3100 (gprops (nth 1 series))
3101 match ;; The byte compiler incorrectly complains about this. Keep it!
3102 org-cmd type lprops)
3103 (while (setq org-cmd (pop cmds))
3104 (setq type (car org-cmd)
3105 match (eval (nth 1 org-cmd))
3106 lprops (nth 2 org-cmd))
3107 (let ((org-agenda-overriding-arguments
3108 (if (eq org-agenda-overriding-cmd org-cmd)
3109 (or org-agenda-overriding-arguments
3110 org-agenda-overriding-cmd-arguments))))
3111 (cond
3112 ((eq type 'agenda)
3113 (org-let2 gprops lprops
3114 '(call-interactively 'org-agenda-list)))
3115 ((eq type 'agenda*)
3116 (org-let2 gprops lprops
3117 '(funcall 'org-agenda-list nil nil t)))
3118 ((eq type 'alltodo)
3119 (org-let2 gprops lprops
3120 '(call-interactively 'org-todo-list)))
3121 ((eq type 'search)
3122 (org-let2 gprops lprops
3123 '(org-search-view current-prefix-arg match nil)))
3124 ((eq type 'stuck)
3125 (org-let2 gprops lprops
3126 '(call-interactively 'org-agenda-list-stuck-projects)))
3127 ((eq type 'tags)
3128 (org-let2 gprops lprops
3129 '(org-tags-view current-prefix-arg match)))
3130 ((eq type 'tags-todo)
3131 (org-let2 gprops lprops
3132 '(org-tags-view '(4) match)))
3133 ((eq type 'todo)
3134 (org-let2 gprops lprops
3135 '(org-todo-list match)))
3136 ((fboundp type)
3137 (org-let2 gprops lprops
3138 '(funcall type match)))
3139 (t (error "Invalid type in command series")))))
3140 (widen)
3141 (let ((inhibit-read-only t))
3142 (add-text-properties (point-min) (point-max)
3143 `(org-series t org-series-redo-cmd ,redo)))
3144 (setq org-agenda-redo-command redo)
3145 (goto-char (point-min)))
3146 (org-agenda-fit-window-to-buffer)
3147 (org-let (nth 1 series) '(org-agenda-finalize)))
3149 ;;;###autoload
3150 (defmacro org-batch-agenda (cmd-key &rest parameters)
3151 "Run an agenda command in batch mode and send the result to STDOUT.
3152 If CMD-KEY is a string of length 1, it is used as a key in
3153 `org-agenda-custom-commands' and triggers this command. If it is a
3154 longer string it is used as a tags/todo match string.
3155 Parameters are alternating variable names and values that will be bound
3156 before running the agenda command."
3157 (org-eval-in-environment (org-make-parameter-alist parameters)
3158 (let (org-agenda-sticky)
3159 (if (> (length cmd-key) 2)
3160 (org-tags-view nil cmd-key)
3161 (org-agenda nil cmd-key))))
3162 (set-buffer org-agenda-buffer-name)
3163 (princ (buffer-string)))
3165 (defvar org-agenda-info nil)
3167 ;;;###autoload
3168 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
3169 "Run an agenda command in batch mode and send the result to STDOUT.
3170 If CMD-KEY is a string of length 1, it is used as a key in
3171 `org-agenda-custom-commands' and triggers this command. If it is a
3172 longer string it is used as a tags/todo match string.
3173 Parameters are alternating variable names and values that will be bound
3174 before running the agenda command.
3176 The output gives a line for each selected agenda item. Each
3177 item is a list of comma-separated values, like this:
3179 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
3181 category The category of the item
3182 head The headline, without TODO kwd, TAGS and PRIORITY
3183 type The type of the agenda entry, can be
3184 todo selected in TODO match
3185 tagsmatch selected in tags match
3186 diary imported from diary
3187 deadline a deadline on given date
3188 scheduled scheduled on given date
3189 timestamp entry has timestamp on given date
3190 closed entry was closed on given date
3191 upcoming-deadline warning about deadline
3192 past-scheduled forwarded scheduled item
3193 block entry has date block including g. date
3194 todo The todo keyword, if any
3195 tags All tags including inherited ones, separated by colons
3196 date The relevant date, like 2007-2-14
3197 time The time, like 15:00-16:50
3198 extra Sting with extra planning info
3199 priority-l The priority letter if any was given
3200 priority-n The computed numerical priority
3201 agenda-day The day in the agenda where this is listed"
3202 (org-eval-in-environment (append '((org-agenda-remove-tags t))
3203 (org-make-parameter-alist parameters))
3204 (if (> (length cmd-key) 2)
3205 (org-tags-view nil cmd-key)
3206 (org-agenda nil cmd-key)))
3207 (set-buffer org-agenda-buffer-name)
3208 (let* ((lines (org-split-string (buffer-string) "\n"))
3209 line)
3210 (while (setq line (pop lines))
3211 (catch 'next
3212 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
3213 (setq org-agenda-info
3214 (org-fix-agenda-info (text-properties-at 0 line)))
3215 (princ
3216 (mapconcat 'org-agenda-export-csv-mapper
3217 '(org-category txt type todo tags date time extra
3218 priority-letter priority agenda-day)
3219 ","))
3220 (princ "\n")))))
3222 (defun org-fix-agenda-info (props)
3223 "Make sure all properties on an agenda item have a canonical form.
3224 This ensures the export commands can easily use it."
3225 (let (tmp re)
3226 (when (setq tmp (plist-get props 'tags))
3227 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
3228 (when (setq tmp (plist-get props 'date))
3229 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3230 (let ((calendar-date-display-form '(year "-" month "-" day)))
3231 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
3233 (setq tmp (calendar-date-string tmp)))
3234 (setq props (plist-put props 'date tmp)))
3235 (when (setq tmp (plist-get props 'day))
3236 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3237 (let ((calendar-date-display-form '(year "-" month "-" day)))
3238 (setq tmp (calendar-date-string tmp)))
3239 (setq props (plist-put props 'day tmp))
3240 (setq props (plist-put props 'agenda-day tmp)))
3241 (when (setq tmp (plist-get props 'txt))
3242 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
3243 (plist-put props 'priority-letter (match-string 1 tmp))
3244 (setq tmp (replace-match "" t t tmp)))
3245 (when (and (setq re (plist-get props 'org-todo-regexp))
3246 (setq re (concat "\\`\\.*" re " ?"))
3247 (string-match re tmp))
3248 (plist-put props 'todo (match-string 1 tmp))
3249 (setq tmp (replace-match "" t t tmp)))
3250 (plist-put props 'txt tmp)))
3251 props)
3253 (defun org-agenda-export-csv-mapper (prop)
3254 (let ((res (plist-get org-agenda-info prop)))
3255 (setq res
3256 (cond
3257 ((not res) "")
3258 ((stringp res) res)
3259 (t (prin1-to-string res))))
3260 (while (string-match "," res)
3261 (setq res (replace-match ";" t t res)))
3262 (org-trim res)))
3264 ;;;###autoload
3265 (defun org-store-agenda-views (&rest parameters)
3266 "Store agenda views."
3267 (interactive)
3268 (eval (list 'org-batch-store-agenda-views)))
3270 ;;;###autoload
3271 (defmacro org-batch-store-agenda-views (&rest parameters)
3272 "Run all custom agenda commands that have a file argument."
3273 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
3274 (pop-up-frames nil)
3275 (dir default-directory)
3276 (pars (org-make-parameter-alist parameters))
3277 cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
3278 (save-window-excursion
3279 (while cmds
3280 (setq cmd (pop cmds)
3281 thiscmdkey (car cmd)
3282 thiscmdcmd (cdr cmd)
3283 match (nth 2 thiscmdcmd)
3284 bufname (if org-agenda-sticky
3285 (or (and (stringp match)
3286 (format "*Org Agenda(%s:%s)*" thiscmdkey match))
3287 (format "*Org Agenda(%s)*" thiscmdkey))
3288 org-agenda-buffer-name)
3289 cmd-or-set (nth 2 cmd)
3290 opts (nth (if (listp cmd-or-set) 3 4) cmd)
3291 files (nth (if (listp cmd-or-set) 4 5) cmd))
3292 (if (stringp files) (setq files (list files)))
3293 (when files
3294 (org-eval-in-environment (append org-agenda-exporter-settings
3295 opts pars)
3296 (org-agenda nil thiscmdkey))
3297 (set-buffer bufname)
3298 (while files
3299 (org-eval-in-environment (append org-agenda-exporter-settings
3300 opts pars)
3301 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
3302 (and (get-buffer bufname)
3303 (kill-buffer bufname)))))))
3305 (defvar org-agenda-current-span nil
3306 "The current span used in the agenda view.") ; local variable in the agenda buffer
3307 (defun org-agenda-mark-header-line (pos)
3308 "Mark the line at POS as an agenda structure header."
3309 (save-excursion
3310 (goto-char pos)
3311 (put-text-property (point-at-bol) (point-at-eol)
3312 'org-agenda-structural-header t)
3313 (when org-agenda-title-append
3314 (put-text-property (point-at-bol) (point-at-eol)
3315 'org-agenda-title-append org-agenda-title-append))))
3317 (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
3318 (defvar org-agenda-write-buffer-name "Agenda View")
3319 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
3320 "Write the current buffer (an agenda view) as a file.
3322 Depending on the extension of the file name, plain text (.txt),
3323 HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
3324 If the extension is .ics, translate visible agenda into iCalendar
3325 format. If the extension is .org, collect all subtrees
3326 corresponding to the agenda entries and add them in an .org file.
3328 With prefix argument OPEN, open the new file immediately. If
3329 NOSETTINGS is given, do not scope the settings of
3330 `org-agenda-exporter-settings' into the export commands. This is
3331 used when the settings have already been scoped and we do not
3332 wish to overrule other, higher priority settings. If
3333 AGENDA-BUFFER-NAME is provided, use this as the buffer name for
3334 the agenda to write."
3335 (interactive "FWrite agenda to file: \nP")
3336 (if (or (not (file-writable-p file))
3337 (and (file-exists-p file)
3338 (if (org-called-interactively-p 'any)
3339 (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
3340 (user-error "Cannot write agenda to file %s" file))
3341 (org-let (if nosettings nil org-agenda-exporter-settings)
3342 '(save-excursion
3343 (save-window-excursion
3344 (let ((bs (copy-sequence (buffer-string))) beg content)
3345 (with-temp-buffer
3346 (rename-buffer org-agenda-write-buffer-name t)
3347 (set-buffer-modified-p nil)
3348 (insert bs)
3349 (org-agenda-remove-marked-text 'org-filtered)
3350 (run-hooks 'org-agenda-before-write-hook)
3351 (cond
3352 ((org-bound-and-true-p org-mobile-creating-agendas)
3353 (org-mobile-write-agenda-for-mobile file))
3354 ((string-match "\\.org\\'" file)
3355 (let (content p m message-log-max)
3356 (goto-char (point-min))
3357 (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
3358 (goto-char p)
3359 (setq m (get-text-property (point) 'org-hd-marker))
3360 (when m
3361 (push (save-excursion
3362 (set-buffer (marker-buffer m))
3363 (goto-char m)
3364 (org-copy-subtree 1 nil t t)
3365 org-subtree-clip)
3366 content)))
3367 (find-file file)
3368 (erase-buffer)
3369 (dolist (s content) (org-paste-subtree 1 s))
3370 (write-file file)
3371 (kill-buffer (current-buffer))
3372 (message "Org file written to %s" file)))
3373 ((string-match "\\.html?\\'" file)
3374 (require 'htmlize)
3375 (set-buffer (htmlize-buffer (current-buffer)))
3376 (when org-agenda-export-html-style
3377 ;; replace <style> section with org-agenda-export-html-style
3378 (goto-char (point-min))
3379 (kill-region (- (search-forward "<style") 6)
3380 (search-forward "</style>"))
3381 (insert org-agenda-export-html-style))
3382 (write-file file)
3383 (kill-buffer (current-buffer))
3384 (message "HTML written to %s" file))
3385 ((string-match "\\.ps\\'" file)
3386 (require 'ps-print)
3387 (ps-print-buffer-with-faces file)
3388 (message "Postscript written to %s" file))
3389 ((string-match "\\.pdf\\'" file)
3390 (require 'ps-print)
3391 (ps-print-buffer-with-faces
3392 (concat (file-name-sans-extension file) ".ps"))
3393 (call-process "ps2pdf" nil nil nil
3394 (expand-file-name
3395 (concat (file-name-sans-extension file) ".ps"))
3396 (expand-file-name file))
3397 (delete-file (concat (file-name-sans-extension file) ".ps"))
3398 (message "PDF written to %s" file))
3399 ((string-match "\\.ics\\'" file)
3400 (require 'ox-icalendar)
3401 (org-icalendar-export-current-agenda (expand-file-name file)))
3403 (let ((bs (buffer-string)))
3404 (find-file file)
3405 (erase-buffer)
3406 (insert bs)
3407 (save-buffer 0)
3408 (kill-buffer (current-buffer))
3409 (message "Plain text written to %s" file))))))))
3410 (set-buffer (or agenda-bufname
3411 (and (org-called-interactively-p 'any) (buffer-name))
3412 org-agenda-buffer-name)))
3413 (when open (org-open-file file)))
3415 (defun org-agenda-remove-marked-text (property &optional value)
3416 "Delete all text marked with VALUE of PROPERTY.
3417 VALUE defaults to t."
3418 (let (beg)
3419 (setq value (or value t))
3420 (while (setq beg (text-property-any (point-min) (point-max)
3421 property value))
3422 (delete-region
3423 beg (or (next-single-property-change beg property)
3424 (point-max))))))
3426 (defun org-agenda-add-entry-text ()
3427 "Add entry text to agenda lines.
3428 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3429 entry text following headings shown in the agenda.
3430 Drawers will be excluded, also the line with scheduling/deadline info."
3431 (when (and (> org-agenda-add-entry-text-maxlines 0)
3432 (not (org-bound-and-true-p org-mobile-creating-agendas)))
3433 (let (m txt)
3434 (goto-char (point-min))
3435 (while (not (eobp))
3436 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3437 (beginning-of-line 2)
3438 (setq txt (org-agenda-get-some-entry-text
3439 m org-agenda-add-entry-text-maxlines " > "))
3440 (end-of-line 1)
3441 (if (string-match "\\S-" txt)
3442 (insert "\n" txt)
3443 (or (eobp) (forward-char 1))))))))
3445 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3446 &rest keep)
3447 "Extract entry text from MARKER, at most N-LINES lines.
3448 This will ignore drawers etc, just get the text.
3449 If INDENT is given, prefix every line with this string. If KEEP is
3450 given, it is a list of symbols, defining stuff that should not be
3451 removed from the entry content. Currently only `planning' is allowed here."
3452 (let (txt drawer-re kwd-time-re ind)
3453 (save-excursion
3454 (with-current-buffer (marker-buffer marker)
3455 (if (not (derived-mode-p 'org-mode))
3456 (setq txt "")
3457 (save-excursion
3458 (save-restriction
3459 (widen)
3460 (goto-char marker)
3461 (end-of-line 1)
3462 (setq txt (buffer-substring
3463 (min (1+ (point)) (point-max))
3464 (progn (outline-next-heading) (point)))
3465 drawer-re org-drawer-regexp
3466 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3467 ".*\n?"))
3468 (with-temp-buffer
3469 (insert txt)
3470 (when org-agenda-add-entry-text-descriptive-links
3471 (goto-char (point-min))
3472 (while (org-activate-bracket-links (point-max))
3473 (add-text-properties (match-beginning 0) (match-end 0)
3474 '(face org-link))))
3475 (goto-char (point-min))
3476 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3477 (set-text-properties (match-beginning 0) (match-end 0)
3478 nil))
3479 (goto-char (point-min))
3480 (while (re-search-forward drawer-re nil t)
3481 (delete-region
3482 (match-beginning 0)
3483 (progn (re-search-forward
3484 "^[ \t]*:END:.*\n?" nil 'move)
3485 (point))))
3486 (unless (member 'planning keep)
3487 (goto-char (point-min))
3488 (while (re-search-forward kwd-time-re nil t)
3489 (replace-match "")))
3490 (goto-char (point-min))
3491 (when org-agenda-entry-text-exclude-regexps
3492 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3493 (while (setq re (pop re-list))
3494 (goto-char (point-min))
3495 (while (re-search-forward re nil t)
3496 (replace-match "")))))
3497 (goto-char (point-max))
3498 (skip-chars-backward " \t\n")
3499 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3501 ;; find and remove min common indentation
3502 (goto-char (point-min))
3503 (untabify (point-min) (point-max))
3504 (setq ind (org-get-indentation))
3505 (while (not (eobp))
3506 (unless (looking-at "[ \t]*$")
3507 (setq ind (min ind (org-get-indentation))))
3508 (beginning-of-line 2))
3509 (goto-char (point-min))
3510 (while (not (eobp))
3511 (unless (looking-at "[ \t]*$")
3512 (move-to-column ind)
3513 (delete-region (point-at-bol) (point)))
3514 (beginning-of-line 2))
3516 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3518 (goto-char (point-min))
3519 (when indent
3520 (while (and (not (eobp)) (re-search-forward "^" nil t))
3521 (replace-match indent t t)))
3522 (goto-char (point-min))
3523 (while (looking-at "[ \t]*\n") (replace-match ""))
3524 (goto-char (point-max))
3525 (when (> (org-current-line)
3526 n-lines)
3527 (org-goto-line (1+ n-lines))
3528 (backward-char 1))
3529 (setq txt (buffer-substring (point-min) (point)))))))))
3530 txt))
3532 (defun org-check-for-org-mode ()
3533 "Make sure current buffer is in org-mode. Error if not."
3534 (or (derived-mode-p 'org-mode)
3535 (error "Cannot execute org-mode agenda command on buffer in %s"
3536 major-mode)))
3538 ;;; Agenda prepare and finalize
3540 (defvar org-agenda-multi nil) ; dynamically scoped
3541 (defvar org-agenda-pre-window-conf nil)
3542 (defvar org-agenda-columns-active nil)
3543 (defvar org-agenda-name nil)
3544 (defvar org-agenda-tag-filter nil)
3545 (defvar org-agenda-category-filter nil)
3546 (defvar org-agenda-regexp-filter nil)
3547 (defvar org-agenda-effort-filter nil)
3548 (defvar org-agenda-top-headline-filter nil)
3549 (defvar org-agenda-tag-filter-preset nil
3550 "A preset of the tags filter used for secondary agenda filtering.
3551 This must be a list of strings, each string must be a single tag preceded
3552 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-category-filter-preset nil
3560 "A preset of the category filter used for secondary agenda filtering.
3561 This must be a list of strings, each string must be a single category
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 (defvar org-agenda-regexp-filter-preset nil
3570 "A preset of the regexp filter used for secondary agenda filtering.
3571 This must be a list of strings, each string must be a single regexp
3572 preceded by \"+\" or \"-\".
3573 This variable should not be set directly, but agenda custom commands can
3574 bind it in the options section. The preset filter is a global property of
3575 the entire agenda view. In a block agenda, it will not work reliably to
3576 define a filter for one of the individual blocks. You need to set it in
3577 the global options and expect it to be applied to the entire view.")
3579 (defvar org-agenda-effort-filter-preset nil
3580 "A preset of the effort condition used for secondary agenda filtering.
3581 This must be a list of strings, each string must be a single regexp
3582 preceded by \"+\" or \"-\".
3583 This variable should not be set directly, but agenda custom commands can
3584 bind it in the options section. The preset filter is a global property of
3585 the entire agenda view. In a block agenda, it will not work reliably to
3586 define a filter for one of the individual blocks. You need to set it in
3587 the global options and expect it to be applied to the entire view.")
3589 (defun org-agenda-use-sticky-p ()
3590 "Return non-nil if an agenda buffer named
3591 `org-agenda-buffer-name' exists and should be shown instead of
3592 generating a new one."
3593 (and
3594 ;; turned off by user
3595 org-agenda-sticky
3596 ;; For multi-agenda buffer already exists
3597 (not org-agenda-multi)
3598 ;; buffer found
3599 (get-buffer org-agenda-buffer-name)
3600 ;; C-u parameter is same as last call
3601 (with-current-buffer (get-buffer org-agenda-buffer-name)
3602 (and
3603 (equal current-prefix-arg
3604 org-agenda-last-prefix-arg)
3605 ;; In case user turned stickiness on, while having existing
3606 ;; Agenda buffer active, don't reuse that buffer, because it
3607 ;; does not have org variables local
3608 org-agenda-this-buffer-is-sticky))))
3610 (defun org-agenda-prepare-window (abuf filter-alist)
3611 "Setup agenda buffer in the window.
3612 ABUF is the buffer for the agenda window.
3613 FILTER-ALIST is an alist of filters we need to apply when
3614 `org-agenda-persistent-filter' is non-nil."
3615 (let* ((awin (get-buffer-window abuf)) wconf)
3616 (cond
3617 ((equal (current-buffer) abuf) nil)
3618 (awin (select-window awin))
3619 ((not (setq wconf (current-window-configuration))))
3620 ((equal org-agenda-window-setup 'current-window)
3621 (org-pop-to-buffer-same-window abuf))
3622 ((equal org-agenda-window-setup 'other-window)
3623 (org-switch-to-buffer-other-window abuf))
3624 ((equal org-agenda-window-setup 'other-frame)
3625 (switch-to-buffer-other-frame abuf))
3626 ((eq org-agenda-window-setup 'only-window)
3627 (delete-other-windows)
3628 (org-pop-to-buffer-same-window abuf))
3629 ((equal org-agenda-window-setup 'reorganize-frame)
3630 (delete-other-windows)
3631 (org-switch-to-buffer-other-window abuf)))
3632 (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
3633 (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
3634 (setq org-agenda-effort-filter (cdr (assoc 'effort filter-alist)))
3635 (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
3636 ;; Additional test in case agenda is invoked from within agenda
3637 ;; buffer via elisp link.
3638 (unless (equal (current-buffer) abuf)
3639 (org-pop-to-buffer-same-window abuf))
3640 (setq org-agenda-pre-window-conf
3641 (or wconf org-agenda-pre-window-conf))))
3643 (defun org-agenda-prepare (&optional name)
3644 (let ((filter-alist (if org-agenda-persistent-filter
3645 (with-current-buffer
3646 (get-buffer-create org-agenda-buffer-name)
3647 (list `(tag . ,org-agenda-tag-filter)
3648 `(re . ,org-agenda-regexp-filter)
3649 `(effort . ,org-agenda-effort-filter)
3650 `(cat . ,org-agenda-category-filter))))))
3651 (if (org-agenda-use-sticky-p)
3652 (progn
3653 (put 'org-agenda-tag-filter :preset-filter nil)
3654 (put 'org-agenda-category-filter :preset-filter nil)
3655 (put 'org-agenda-regexp-filter :preset-filter nil)
3656 ;; Popup existing buffer
3657 (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
3658 filter-alist)
3659 (message "Sticky Agenda buffer, use `r' to refresh")
3660 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
3661 (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
3662 (setq org-todo-keywords-for-agenda nil)
3663 (put 'org-agenda-tag-filter :preset-filter
3664 org-agenda-tag-filter-preset)
3665 (put 'org-agenda-category-filter :preset-filter
3666 org-agenda-category-filter-preset)
3667 (put 'org-agenda-regexp-filter :preset-filter
3668 org-agenda-regexp-filter-preset)
3669 (put 'org-agenda-effort-filter :preset-filter
3670 org-agenda-effort-filter-preset)
3671 (if org-agenda-multi
3672 (progn
3673 (setq buffer-read-only nil)
3674 (goto-char (point-max))
3675 (unless (or (bobp) org-agenda-compact-blocks
3676 (not org-agenda-block-separator))
3677 (insert "\n"
3678 (if (stringp org-agenda-block-separator)
3679 org-agenda-block-separator
3680 (make-string (window-width) org-agenda-block-separator))
3681 "\n"))
3682 (narrow-to-region (point) (point-max)))
3683 (setq org-done-keywords-for-agenda nil)
3684 ;; Setting any org variables that are in org-agenda-local-vars
3685 ;; list need to be done after the prepare call
3686 (org-agenda-prepare-window
3687 (get-buffer-create org-agenda-buffer-name) filter-alist)
3688 (setq buffer-read-only nil)
3689 (org-agenda-reset-markers)
3690 (let ((inhibit-read-only t)) (erase-buffer))
3691 (org-agenda-mode)
3692 (setq org-agenda-buffer (current-buffer))
3693 (setq org-agenda-contributing-files nil)
3694 (setq org-agenda-columns-active nil)
3695 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
3696 (setq org-todo-keywords-for-agenda
3697 (org-uniquify org-todo-keywords-for-agenda))
3698 (setq org-done-keywords-for-agenda
3699 (org-uniquify org-done-keywords-for-agenda))
3700 (setq org-agenda-last-prefix-arg current-prefix-arg)
3701 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3702 (and name (not org-agenda-name)
3703 (org-set-local 'org-agenda-name name)))
3704 (setq buffer-read-only nil))))
3706 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3707 (defun org-agenda-finalize ()
3708 "Finishing touch for the agenda buffer, called just before displaying it."
3709 (unless org-agenda-multi
3710 (save-excursion
3711 (let ((inhibit-read-only t))
3712 (goto-char (point-min))
3713 (save-excursion
3714 (while (org-activate-bracket-links (point-max))
3715 (add-text-properties (match-beginning 0) (match-end 0)
3716 '(face org-link))))
3717 (save-excursion
3718 (while (org-activate-plain-links (point-max))
3719 (add-text-properties (match-beginning 0) (match-end 0)
3720 '(face org-link))))
3721 (unless (eq org-agenda-remove-tags t)
3722 (org-agenda-align-tags))
3723 (unless org-agenda-with-colors
3724 (remove-text-properties (point-min) (point-max) '(face nil)))
3725 (if (and (boundp 'org-agenda-overriding-columns-format)
3726 org-agenda-overriding-columns-format)
3727 (org-set-local 'org-agenda-overriding-columns-format
3728 org-agenda-overriding-columns-format))
3729 (if (and (boundp 'org-agenda-view-columns-initially)
3730 org-agenda-view-columns-initially)
3731 (org-agenda-columns))
3732 (when org-agenda-fontify-priorities
3733 (org-agenda-fontify-priorities))
3734 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3735 (org-agenda-dim-blocked-tasks))
3736 (org-agenda-mark-clocking-task)
3737 (when org-agenda-entry-text-mode
3738 (org-agenda-entry-text-hide)
3739 (org-agenda-entry-text-show))
3740 (if (and (functionp 'org-habit-insert-consistency-graphs)
3741 (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
3742 (org-habit-insert-consistency-graphs))
3743 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3744 (unless (or (eq org-agenda-show-inherited-tags 'always)
3745 (and (listp org-agenda-show-inherited-tags)
3746 (memq org-agenda-type org-agenda-show-inherited-tags))
3747 (and (eq org-agenda-show-inherited-tags t)
3748 (or (eq org-agenda-use-tag-inheritance t)
3749 (and (listp org-agenda-use-tag-inheritance)
3750 (not (memq org-agenda-type
3751 org-agenda-use-tag-inheritance))))))
3752 (let (mrk)
3753 (save-excursion
3754 (goto-char (point-min))
3755 (while (equal (forward-line) 0)
3756 (when (setq mrk (get-text-property (point) 'org-hd-marker))
3757 (put-text-property (point-at-bol) (point-at-eol)
3758 'tags (org-with-point-at mrk
3759 (delete-dups
3760 (mapcar 'downcase (org-get-tags-at))))))))))
3761 (run-hooks 'org-agenda-finalize-hook)
3762 (when org-agenda-top-headline-filter
3763 (org-agenda-filter-top-headline-apply
3764 org-agenda-top-headline-filter))
3765 (when org-agenda-tag-filter
3766 (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
3767 (when (get 'org-agenda-tag-filter :preset-filter)
3768 (org-agenda-filter-apply
3769 (get 'org-agenda-tag-filter :preset-filter) 'tag t))
3770 (when org-agenda-category-filter
3771 (org-agenda-filter-apply org-agenda-category-filter 'category))
3772 (when (get 'org-agenda-category-filter :preset-filter)
3773 (org-agenda-filter-apply
3774 (get 'org-agenda-category-filter :preset-filter) 'category))
3775 (when org-agenda-regexp-filter
3776 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
3777 (when (get 'org-agenda-regexp-filter :preset-filter)
3778 (org-agenda-filter-apply
3779 (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
3780 (when org-agenda-effort-filter
3781 (org-agenda-filter-apply org-agenda-effort-filter 'effort))
3782 (when (get 'org-agenda-effort-filter :preset-filter)
3783 (org-agenda-filter-apply
3784 (get 'org-agenda-effort-filter :preset-filter) 'effort))
3785 (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
3787 (defun org-agenda-mark-clocking-task ()
3788 "Mark the current clock entry in the agenda if it is present."
3789 ;; We need to widen when `org-agenda-finalize' is called from
3790 ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
3791 (when org-clock-current-task
3792 (save-restriction
3793 (widen)
3794 (org-agenda-unmark-clocking-task)
3795 (when (marker-buffer org-clock-hd-marker)
3796 (save-excursion
3797 (goto-char (point-min))
3798 (let (s ov)
3799 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3800 (goto-char s)
3801 (when (equal (org-get-at-bol 'org-hd-marker)
3802 org-clock-hd-marker)
3803 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3804 (overlay-put ov 'type 'org-agenda-clocking)
3805 (overlay-put ov 'face 'org-agenda-clocking)
3806 (overlay-put ov 'help-echo
3807 "The clock is running in this item")))))))))
3809 (defun org-agenda-unmark-clocking-task ()
3810 "Unmark the current clocking task."
3811 (mapc (lambda (o)
3812 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3813 (delete-overlay o)))
3814 (overlays-in (point-min) (point-max))))
3816 (defun org-agenda-fontify-priorities ()
3817 "Make highest priority lines bold, and lowest italic."
3818 (interactive)
3819 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3820 (delete-overlay o)))
3821 (overlays-in (point-min) (point-max)))
3822 (save-excursion
3823 (let (b e p ov h l)
3824 (goto-char (point-min))
3825 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3826 (setq h (or (get-char-property (point) 'org-highest-priority)
3827 org-highest-priority)
3828 l (or (get-char-property (point) 'org-lowest-priority)
3829 org-lowest-priority)
3830 p (string-to-char (match-string 1))
3831 b (match-beginning 0)
3832 e (if (eq org-agenda-fontify-priorities 'cookies)
3833 (match-end 0)
3834 (point-at-eol))
3835 ov (make-overlay b e))
3836 (overlay-put
3837 ov 'face
3838 (let ((special-face
3839 (cond ((org-face-from-face-or-color
3840 'priority nil
3841 (cdr (assoc p org-priority-faces))))
3842 ((and (listp org-agenda-fontify-priorities)
3843 (org-face-from-face-or-color
3844 'priority nil
3845 (cdr (assoc p org-agenda-fontify-priorities)))))
3846 ((equal p l) 'italic)
3847 ((equal p h) 'bold))))
3848 (if special-face (list special-face 'org-priority) 'org-priority)))
3849 (overlay-put ov 'org-type 'org-priority)))))
3851 (defvar org-depend-tag-blocked)
3853 (defun org-agenda-dim-blocked-tasks (&optional invisible)
3854 "Dim currently blocked TODO's in the agenda display.
3855 When INVISIBLE is non-nil, hide currently blocked TODO instead of
3856 dimming them."
3857 (interactive "P")
3858 (when (org-called-interactively-p 'interactive)
3859 (message "Dim or hide blocked tasks..."))
3860 (dolist (o (overlays-in (point-min) (point-max)))
3861 (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
3862 (delete-overlay o)))
3863 (save-excursion
3864 (let ((inhibit-read-only t)
3865 (org-depend-tag-blocked nil)
3866 org-blocked-by-checkboxes)
3867 (goto-char (point-min))
3868 (while (let ((pos (text-property-not-all
3869 (point) (point-max) 'todo-state nil)))
3870 (when pos (goto-char (1+ pos))))
3871 (setq org-blocked-by-checkboxes nil)
3872 (let ((marker (org-get-at-bol 'org-hd-marker)))
3873 (when (and (markerp marker)
3874 (with-current-buffer (marker-buffer marker)
3875 (save-excursion (goto-char marker)
3876 (org-entry-blocked-p))))
3877 ;; Entries blocked by checkboxes cannot be made invisible.
3878 ;; See `org-agenda-dim-blocked-tasks' for details.
3879 (let* ((really-invisible
3880 (and (not org-blocked-by-checkboxes)
3881 (or invisible (eq org-agenda-dim-blocked-tasks
3882 'invisible))))
3883 (ov (make-overlay (if really-invisible (line-end-position 0)
3884 (line-beginning-position))
3885 (line-end-position))))
3886 (if really-invisible (overlay-put ov 'invisible t)
3887 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3888 (overlay-put ov 'org-type 'org-blocked-todo)))))))
3889 (when (org-called-interactively-p 'interactive)
3890 (message "Dim or hide blocked tasks...done")))
3892 (defvar org-agenda-skip-function nil
3893 "Function to be called at each match during agenda construction.
3894 If this function returns nil, the current match should not be skipped.
3895 Otherwise, the function must return a position from where the search
3896 should be continued.
3897 This may also be a Lisp form, it will be evaluated.
3898 Never set this variable using `setq' or so, because then it will apply
3899 to all future agenda commands. If you do want a global skipping condition,
3900 use the option `org-agenda-skip-function-global' instead.
3901 The correct usage for `org-agenda-skip-function' is to bind it with
3902 `let' to scope it dynamically into the agenda-constructing command.
3903 A good way to set it is through options in `org-agenda-custom-commands'.")
3905 (defun org-agenda-skip ()
3906 "Throw to `:skip' in places that should be skipped.
3907 Also moves point to the end of the skipped region, so that search can
3908 continue from there."
3909 (let ((p (point-at-bol)) to)
3910 (when (or
3911 (save-excursion (goto-char p) (looking-at comment-start-skip))
3912 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3913 (get-text-property p :org-archived)
3914 (org-end-of-subtree t))
3915 (and org-agenda-skip-comment-trees
3916 (get-text-property p :org-comment)
3917 (org-end-of-subtree t))
3918 (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3919 (org-agenda-skip-eval org-agenda-skip-function)))
3920 (goto-char to))
3921 (org-in-src-block-p t))
3922 (throw :skip t))))
3924 (defun org-agenda-skip-eval (form)
3925 "If FORM is a function or a list, call (or eval) it and return the result.
3926 `save-excursion' and `save-match-data' are wrapped around the call, so point
3927 and match data are returned to the previous state no matter what these
3928 functions do."
3929 (let (fp)
3930 (and form
3931 (or (setq fp (functionp form))
3932 (consp form))
3933 (save-excursion
3934 (save-match-data
3935 (if fp
3936 (funcall form)
3937 (eval form)))))))
3939 (defvar org-agenda-markers nil
3940 "List of all currently active markers created by `org-agenda'.")
3941 (defvar org-agenda-last-marker-time (org-float-time)
3942 "Creation time of the last agenda marker.")
3944 (defun org-agenda-new-marker (&optional pos)
3945 "Return a new agenda marker.
3946 Maker is at point, or at POS if non-nil. Org mode keeps a list of
3947 these markers and resets them when they are no longer in use."
3948 (let ((m (copy-marker (or pos (point)) t)))
3949 (setq org-agenda-last-marker-time (org-float-time))
3950 (if org-agenda-buffer
3951 (with-current-buffer org-agenda-buffer
3952 (push m org-agenda-markers))
3953 (push m org-agenda-markers))
3956 (defun org-agenda-reset-markers ()
3957 "Reset markers created by `org-agenda'."
3958 (while org-agenda-markers
3959 (move-marker (pop org-agenda-markers) nil)))
3961 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
3962 "Save relative positions of markers in region.
3963 This check for agenda markers in all agenda buffers currently active."
3964 (dolist (buf (buffer-list))
3965 (with-current-buffer buf
3966 (when (eq major-mode 'org-agenda-mode)
3967 (mapc (lambda (m) (org-check-and-save-marker m beg end))
3968 org-agenda-markers)))))
3970 ;;; Entry text mode
3972 (defun org-agenda-entry-text-show-here ()
3973 "Add some text from the entry as context to the current line."
3974 (let (m txt o)
3975 (setq m (org-get-at-bol 'org-hd-marker))
3976 (unless (marker-buffer m)
3977 (error "No marker points to an entry here"))
3978 (setq txt (concat "\n" (org-no-properties
3979 (org-agenda-get-some-entry-text
3980 m org-agenda-entry-text-maxlines
3981 org-agenda-entry-text-leaders))))
3982 (when (string-match "\\S-" txt)
3983 (setq o (make-overlay (point-at-bol) (point-at-eol)))
3984 (overlay-put o 'evaporate t)
3985 (overlay-put o 'org-overlay-type 'agenda-entry-content)
3986 (overlay-put o 'after-string txt))))
3988 (defun org-agenda-entry-text-show ()
3989 "Add entry context for all agenda lines."
3990 (interactive)
3991 (save-excursion
3992 (goto-char (point-max))
3993 (beginning-of-line 1)
3994 (while (not (bobp))
3995 (when (org-get-at-bol 'org-hd-marker)
3996 (org-agenda-entry-text-show-here))
3997 (beginning-of-line 0))))
3999 (defun org-agenda-entry-text-hide ()
4000 "Remove any shown entry context."
4001 (delq nil
4002 (mapcar (lambda (o)
4003 (if (eq (overlay-get o 'org-overlay-type)
4004 'agenda-entry-content)
4005 (progn (delete-overlay o) t)))
4006 (overlays-in (point-min) (point-max)))))
4008 (defun org-agenda-get-day-face (date)
4009 "Return the face DATE should be displayed with."
4010 (or (and (functionp org-agenda-day-face-function)
4011 (funcall org-agenda-day-face-function date))
4012 (cond ((org-agenda-todayp date)
4013 'org-agenda-date-today)
4014 ((member (calendar-day-of-week date) org-agenda-weekend-days)
4015 'org-agenda-date-weekend)
4016 (t 'org-agenda-date))))
4018 ;;; Agenda timeline
4020 (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
4021 (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
4023 (defun org-timeline (&optional dotodo)
4024 "Show a time-sorted view of the entries in the current org file.
4025 Only entries with a time stamp of today or later will be listed. With
4026 \\[universal-argument] prefix, all unfinished TODO items will also be shown,
4027 under the current date.
4028 If the buffer contains an active region, only check the region for
4029 dates."
4030 (interactive "P")
4031 (let* ((dopast t)
4032 (org-agenda-show-log-scoped org-agenda-show-log)
4033 (org-agenda-show-log org-agenda-show-log-scoped)
4034 (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
4035 (current-buffer))))
4036 (date (calendar-current-date))
4037 (beg (if (org-region-active-p) (region-beginning) (point-min)))
4038 (end (if (org-region-active-p) (region-end) (point-max)))
4039 (day-numbers (org-get-all-dates
4040 beg end 'no-ranges
4041 t org-agenda-show-log-scoped ; always include today
4042 org-timeline-show-empty-dates))
4043 (org-deadline-warning-days 0)
4044 (org-agenda-only-exact-dates t)
4045 (today (org-today))
4046 (past t)
4047 args
4048 s e rtn d emptyp)
4049 (setq org-agenda-redo-command
4050 (list 'let
4051 (list (list 'org-agenda-show-log 'org-agenda-show-log))
4052 (list 'org-switch-to-buffer-other-window (current-buffer))
4053 (list 'org-timeline (list 'quote dotodo))))
4054 (put 'org-agenda-redo-command 'org-lprops nil)
4055 (if (not dopast)
4056 ;; Remove past dates from the list of dates.
4057 (setq day-numbers (delq nil (mapcar (lambda(x)
4058 (if (>= x today) x nil))
4059 day-numbers))))
4060 (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
4061 (org-compile-prefix-format 'timeline)
4062 (org-set-sorting-strategy 'timeline)
4063 (if org-agenda-show-log-scoped (push :closed args))
4064 (push :timestamp args)
4065 (push :deadline args)
4066 (push :scheduled args)
4067 (push :sexp args)
4068 (if dotodo (push :todo args))
4069 (insert "Timeline of file " entry "\n")
4070 (add-text-properties (point-min) (point)
4071 (list 'face 'org-agenda-structure))
4072 (org-agenda-mark-header-line (point-min))
4073 (while (setq d (pop day-numbers))
4074 (if (and (listp d) (eq (car d) :omitted))
4075 (progn
4076 (setq s (point))
4077 (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
4078 (put-text-property s (1- (point)) 'face 'org-agenda-structure))
4079 (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
4080 (if (and (>= d today)
4081 dopast
4082 past)
4083 (progn
4084 (setq past nil)
4085 (insert (make-string 79 ?-) "\n")))
4086 (setq date (calendar-gregorian-from-absolute d))
4087 (setq s (point))
4088 (setq rtn (and (not emptyp)
4089 (apply 'org-agenda-get-day-entries entry
4090 date args)))
4091 (if (or rtn (equal d today) org-timeline-show-empty-dates)
4092 (progn
4093 (insert
4094 (if (stringp org-agenda-format-date)
4095 (format-time-string org-agenda-format-date
4096 (org-time-from-absolute date))
4097 (funcall org-agenda-format-date date))
4098 "\n")
4099 (put-text-property s (1- (point)) 'face
4100 (org-agenda-get-day-face date))
4101 (put-text-property s (1- (point)) 'org-date-line t)
4102 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4103 (if (equal d today)
4104 (put-text-property s (1- (point)) 'org-today t))
4105 (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
4106 (put-text-property s (1- (point)) 'day d)))))
4107 (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
4108 (point-min)))
4109 (add-text-properties
4110 (point-min) (point-max)
4111 `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
4112 (org-agenda-finalize)
4113 (setq buffer-read-only t)))
4115 (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
4116 "Return a list of all relevant day numbers from BEG to END buffer positions.
4117 If NO-RANGES is non-nil, include only the start and end dates of a range,
4118 not every single day in the range. If FORCE-TODAY is non-nil, make
4119 sure that TODAY is included in the list. If INACTIVE is non-nil, also
4120 inactive time stamps (those in square brackets) are included.
4121 When EMPTY is non-nil, also include days without any entries."
4122 (let ((re (concat
4123 (if pre-re pre-re "")
4124 (if inactive org-ts-regexp-both org-ts-regexp)))
4125 dates dates1 date day day1 day2 ts1 ts2 pos)
4126 (if force-today
4127 (setq dates (list (org-today))))
4128 (save-excursion
4129 (goto-char beg)
4130 (while (re-search-forward re end t)
4131 (setq day (time-to-days (org-time-string-to-time
4132 (substring (match-string 1) 0 10)
4133 (current-buffer) (match-beginning 0))))
4134 (or (memq day dates) (push day dates)))
4135 (unless no-ranges
4136 (goto-char beg)
4137 (while (re-search-forward org-tr-regexp end t)
4138 (setq pos (match-beginning 0))
4139 (setq ts1 (substring (match-string 1) 0 10)
4140 ts2 (substring (match-string 2) 0 10)
4141 day1 (time-to-days (org-time-string-to-time
4142 ts1 (current-buffer) pos))
4143 day2 (time-to-days (org-time-string-to-time
4144 ts2 (current-buffer) pos)))
4145 (while (< (setq day1 (1+ day1)) day2)
4146 (or (memq day1 dates) (push day1 dates)))))
4147 (setq dates (sort dates '<))
4148 (when empty
4149 (while (setq day (pop dates))
4150 (setq day2 (car dates))
4151 (push day dates1)
4152 (when (and day2 empty)
4153 (if (or (eq empty t)
4154 (and (numberp empty) (<= (- day2 day) empty)))
4155 (while (< (setq day (1+ day)) day2)
4156 (push (list day) dates1))
4157 (push (cons :omitted (- day2 day)) dates1))))
4158 (setq dates (nreverse dates1)))
4159 dates)))
4161 ;;; Agenda Daily/Weekly
4163 (defvar org-agenda-start-day nil ; dynamically scoped parameter
4164 "Start day for the agenda view.
4165 Custom commands can set this variable in the options section.
4166 This is usually a string like \"2007-11-01\", \"+2d\" or any other
4167 input allowed when reading a date through the Org calendar.
4168 See the docstring of `org-read-date' for details.")
4169 (defvar org-starting-day nil) ; local variable in the agenda buffer
4170 (defvar org-arg-loc nil) ; local variable
4172 (defvar org-agenda-buffer-tmp-name nil)
4173 ;;;###autoload
4174 (defun org-agenda-list (&optional arg start-day span with-hour)
4175 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
4176 The view will be for the current day or week, but from the overview buffer
4177 you will be able to go to other days/weeks.
4179 With a numeric prefix argument in an interactive call, the agenda will
4180 span ARG days. Lisp programs should instead specify SPAN to change
4181 the number of days. SPAN defaults to `org-agenda-span'.
4183 START-DAY defaults to TODAY, or to the most recent match for the weekday
4184 given in `org-agenda-start-on-weekday'.
4186 When WITH-HOUR is non-nil, only include scheduled and deadline
4187 items if they have an hour specification like [h]h:mm."
4188 (interactive "P")
4189 (if org-agenda-overriding-arguments
4190 (setq arg (car org-agenda-overriding-arguments)
4191 start-day (nth 1 org-agenda-overriding-arguments)
4192 span (nth 2 org-agenda-overriding-arguments)))
4193 (if (and (integerp arg) (> arg 0))
4194 (setq span arg arg nil))
4195 (catch 'exit
4196 (setq org-agenda-buffer-name
4197 (or org-agenda-buffer-tmp-name
4198 (if org-agenda-sticky
4199 (cond ((and org-keys (stringp org-match))
4200 (format "*Org Agenda(%s:%s)*" org-keys org-match))
4201 (org-keys
4202 (format "*Org Agenda(%s)*" org-keys))
4203 (t "*Org Agenda(a)*")))
4204 org-agenda-buffer-name))
4205 (org-agenda-prepare "Day/Week")
4206 (setq start-day (or start-day org-agenda-start-day))
4207 (if (stringp start-day)
4208 ;; Convert to an absolute day number
4209 (setq start-day (time-to-days (org-read-date nil t start-day))))
4210 (org-compile-prefix-format 'agenda)
4211 (org-set-sorting-strategy 'agenda)
4212 (let* ((span (org-agenda-ndays-to-span
4213 (or span org-agenda-ndays org-agenda-span)))
4214 (today (org-today))
4215 (sd (or start-day today))
4216 (ndays (org-agenda-span-to-ndays span sd))
4217 (org-agenda-start-on-weekday
4218 (if (or (eq ndays 7) (eq ndays 14))
4219 org-agenda-start-on-weekday))
4220 (thefiles (org-agenda-files nil 'ifmode))
4221 (files thefiles)
4222 (start (if (or (null org-agenda-start-on-weekday)
4223 (< ndays 7))
4225 (let* ((nt (calendar-day-of-week
4226 (calendar-gregorian-from-absolute sd)))
4227 (n1 org-agenda-start-on-weekday)
4228 (d (- nt n1)))
4229 (- sd (+ (if (< d 0) 7 0) d)))))
4230 (day-numbers (list start))
4231 (day-cnt 0)
4232 (inhibit-redisplay (not debug-on-error))
4233 (org-agenda-show-log-scoped org-agenda-show-log)
4234 s e rtn rtnall file date d start-pos end-pos todayp
4235 clocktable-start clocktable-end filter)
4236 (setq org-agenda-redo-command
4237 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
4238 (dotimes (n (1- ndays))
4239 (push (1+ (car day-numbers)) day-numbers))
4240 (setq day-numbers (nreverse day-numbers))
4241 (setq clocktable-start (car day-numbers)
4242 clocktable-end (1+ (or (org-last day-numbers) 0)))
4243 (org-set-local 'org-starting-day (car day-numbers))
4244 (org-set-local 'org-arg-loc arg)
4245 (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
4246 (unless org-agenda-compact-blocks
4247 (let* ((d1 (car day-numbers))
4248 (d2 (org-last day-numbers))
4249 (w1 (org-days-to-iso-week d1))
4250 (w2 (org-days-to-iso-week d2)))
4251 (setq s (point))
4252 (if org-agenda-overriding-header
4253 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4254 nil 'face 'org-agenda-structure) "\n")
4255 (insert (org-agenda-span-name span)
4256 "-agenda"
4257 (if (< (- d2 d1) 350)
4258 (if (= w1 w2)
4259 (format " (W%02d)" w1)
4260 (format " (W%02d-W%02d)" w1 w2))
4262 ":\n")))
4263 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
4264 'org-date-line t))
4265 (org-agenda-mark-header-line s))
4266 (while (setq d (pop day-numbers))
4267 (setq date (calendar-gregorian-from-absolute d)
4268 s (point))
4269 (if (or (setq todayp (= d today))
4270 (and (not start-pos) (= d sd)))
4271 (setq start-pos (point))
4272 (if (and start-pos (not end-pos))
4273 (setq end-pos (point))))
4274 (setq files thefiles
4275 rtnall nil)
4276 (while (setq file (pop files))
4277 (catch 'nextfile
4278 (org-check-agenda-file file)
4279 (let ((org-agenda-entry-types org-agenda-entry-types))
4280 ;; Starred types override non-starred equivalents
4281 (when (member :deadline* org-agenda-entry-types)
4282 (setq org-agenda-entry-types
4283 (delq :deadline org-agenda-entry-types)))
4284 (when (member :scheduled* org-agenda-entry-types)
4285 (setq org-agenda-entry-types
4286 (delq :scheduled org-agenda-entry-types)))
4287 ;; Honor with-hour
4288 (when with-hour
4289 (when (member :deadline org-agenda-entry-types)
4290 (setq org-agenda-entry-types
4291 (delq :deadline org-agenda-entry-types))
4292 (push :deadline* org-agenda-entry-types))
4293 (when (member :scheduled org-agenda-entry-types)
4294 (setq org-agenda-entry-types
4295 (delq :scheduled org-agenda-entry-types))
4296 (push :scheduled* org-agenda-entry-types)))
4297 (unless org-agenda-include-deadlines
4298 (setq org-agenda-entry-types
4299 (delq :deadline* (delq :deadline org-agenda-entry-types))))
4300 (cond
4301 ((memq org-agenda-show-log-scoped '(only clockcheck))
4302 (setq rtn (org-agenda-get-day-entries
4303 file date :closed)))
4304 (org-agenda-show-log-scoped
4305 (setq rtn (apply 'org-agenda-get-day-entries
4306 file date
4307 (append '(:closed) org-agenda-entry-types))))
4309 (setq rtn (apply 'org-agenda-get-day-entries
4310 file date
4311 org-agenda-entry-types)))))
4312 (setq rtnall (append rtnall rtn)))) ;; all entries
4313 (if org-agenda-include-diary
4314 (let ((org-agenda-search-headline-for-time t))
4315 (require 'diary-lib)
4316 (setq rtn (org-get-entries-from-diary date))
4317 (setq rtnall (append rtnall rtn))))
4318 (if (or rtnall org-agenda-show-all-dates)
4319 (progn
4320 (setq day-cnt (1+ day-cnt))
4321 (insert
4322 (if (stringp org-agenda-format-date)
4323 (format-time-string org-agenda-format-date
4324 (org-time-from-absolute date))
4325 (funcall org-agenda-format-date date))
4326 "\n")
4327 (put-text-property s (1- (point)) 'face
4328 (org-agenda-get-day-face date))
4329 (put-text-property s (1- (point)) 'org-date-line t)
4330 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4331 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
4332 (when todayp
4333 (put-text-property s (1- (point)) 'org-today t))
4334 (setq rtnall
4335 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
4336 (if rtnall (insert ;; all entries
4337 (org-agenda-finalize-entries rtnall 'agenda)
4338 "\n"))
4339 (put-text-property s (1- (point)) 'day d)
4340 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
4341 (when (and org-agenda-clockreport-mode clocktable-start)
4342 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
4343 ;; the above line is to ensure the restricted range!
4344 (p (copy-sequence org-agenda-clockreport-parameter-plist))
4345 tbl)
4346 (setq p (org-plist-delete p :block))
4347 (setq p (plist-put p :tstart clocktable-start))
4348 (setq p (plist-put p :tend clocktable-end))
4349 (setq p (plist-put p :scope 'agenda))
4350 (setq tbl (apply 'org-clock-get-clocktable p))
4351 (insert tbl)))
4352 (goto-char (point-min))
4353 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4354 (unless (and (pos-visible-in-window-p (point-min))
4355 (pos-visible-in-window-p (point-max)))
4356 (goto-char (1- (point-max)))
4357 (recenter -1)
4358 (if (not (pos-visible-in-window-p (or start-pos 1)))
4359 (progn
4360 (goto-char (or start-pos 1))
4361 (recenter 1))))
4362 (goto-char (or start-pos 1))
4363 (add-text-properties (point-min) (point-max)
4364 `(org-agenda-type agenda
4365 org-last-args (,arg ,start-day ,span)
4366 org-redo-cmd ,org-agenda-redo-command
4367 org-series-cmd ,org-cmd))
4368 (if (eq org-agenda-show-log-scoped 'clockcheck)
4369 (org-agenda-show-clocking-issues))
4370 (org-agenda-finalize)
4371 (setq buffer-read-only t)
4372 (message ""))))
4374 (defun org-agenda-ndays-to-span (n)
4375 "Return a span symbol for a span of N days, or N if none matches."
4376 (cond ((symbolp n) n)
4377 ((= n 1) 'day)
4378 ((= n 7) 'week)
4379 ((= n 14) 'fortnight)
4380 (t n)))
4382 (defun org-agenda-span-to-ndays (span &optional start-day)
4383 "Return ndays from SPAN, possibly starting at START-DAY.
4384 START-DAY is an absolute time value."
4385 (cond ((numberp span) span)
4386 ((eq span 'day) 1)
4387 ((eq span 'week) 7)
4388 ((eq span 'fortnight) 14)
4389 ((eq span 'month)
4390 (let ((date (calendar-gregorian-from-absolute start-day)))
4391 (calendar-last-day-of-month (car date) (caddr date))))
4392 ((eq span 'year)
4393 (let ((date (calendar-gregorian-from-absolute start-day)))
4394 (if (calendar-leap-year-p (caddr date)) 366 365)))))
4396 (defun org-agenda-span-name (span)
4397 "Return a SPAN name."
4398 (if (null span)
4400 (if (symbolp span)
4401 (capitalize (symbol-name span))
4402 (format "%d days" span))))
4404 ;;; Agenda word search
4406 (defvar org-agenda-search-history nil)
4408 (defvar org-search-syntax-table nil
4409 "Special syntax table for org-mode search.
4410 In this table, we have single quotes not as word constituents, to
4411 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
4413 (defvar org-mode-syntax-table) ; From org.el
4414 (defun org-search-syntax-table ()
4415 (unless org-search-syntax-table
4416 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
4417 (modify-syntax-entry ?' "." org-search-syntax-table)
4418 (modify-syntax-entry ?` "." org-search-syntax-table))
4419 org-search-syntax-table)
4421 (defvar org-agenda-last-search-view-search-was-boolean nil)
4423 ;;;###autoload
4424 (defun org-search-view (&optional todo-only string edit-at)
4425 "Show all entries that contain a phrase or words or regular expressions.
4427 With optional prefix argument TODO-ONLY, only consider entries that are
4428 TODO entries. The argument STRING can be used to pass a default search
4429 string into this function. If EDIT-AT is non-nil, it means that the
4430 user should get a chance to edit this string, with cursor at position
4431 EDIT-AT.
4433 The search string can be viewed either as a phrase that should be found as
4434 is, or it can be broken into a number of snippets, each of which must match
4435 in a Boolean way to select an entry. The default depends on the variable
4436 `org-agenda-search-view-always-boolean'.
4437 Even if this is turned off (the default) you can always switch to
4438 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4440 The default is a direct search of the whole phrase, where each space in
4441 the search string can expand to an arbitrary amount of whitespace,
4442 including newlines.
4444 If using a Boolean search, the search string is split on whitespace and
4445 each snippet is searched separately, with logical AND to select an entry.
4446 Words prefixed with a minus must *not* occur in the entry. Words without
4447 a prefix or prefixed with a plus must occur in the entry. Matching is
4448 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4449 match whole words, not parts of a word) if
4450 `org-agenda-search-view-force-full-words' is set (default is nil).
4452 Boolean search snippets enclosed by curly braces are interpreted as
4453 regular expressions that must or (when preceded with \"-\") must not
4454 match in the entry. Snippets enclosed into double quotes will be taken
4455 as a whole, to include whitespace.
4457 - If the search string starts with an asterisk, search only in headlines.
4458 - If (possibly after the leading star) the search string starts with an
4459 exclamation mark, this also means to look at TODO entries only, an effect
4460 that can also be achieved with a prefix argument.
4461 - If (possibly after star and exclamation mark) the search string starts
4462 with a colon, this will mean that the (non-regexp) snippets of the
4463 Boolean search must match as full words.
4465 This command searches the agenda files, and in addition the files listed
4466 in `org-agenda-text-search-extra-files'."
4467 (interactive "P")
4468 (if org-agenda-overriding-arguments
4469 (setq todo-only (car org-agenda-overriding-arguments)
4470 string (nth 1 org-agenda-overriding-arguments)
4471 edit-at (nth 2 org-agenda-overriding-arguments)))
4472 (let* ((props (list 'face nil
4473 'done-face 'org-agenda-done
4474 'org-not-done-regexp org-not-done-regexp
4475 'org-todo-regexp org-todo-regexp
4476 'org-complex-heading-regexp org-complex-heading-regexp
4477 'mouse-face 'highlight
4478 'help-echo (format "mouse-2 or RET jump to location")))
4479 (full-words org-agenda-search-view-force-full-words)
4480 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4481 regexp rtn rtnall files file pos inherited-tags
4482 marker category level tags c neg re boolean
4483 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4484 (unless (and (not edit-at)
4485 (stringp string)
4486 (string-match "\\S-" string))
4487 (setq string (read-string
4488 (if org-agenda-search-view-always-boolean
4489 "[+-]Word/{Regexp} ...: "
4490 "Phrase or [+-]Word/{Regexp} ...: ")
4491 (cond
4492 ((integerp edit-at) (cons string edit-at))
4493 (edit-at string))
4494 'org-agenda-search-history)))
4495 (catch 'exit
4496 (if org-agenda-sticky
4497 (setq org-agenda-buffer-name
4498 (if (stringp string)
4499 (format "*Org Agenda(%s:%s)*"
4500 (or org-keys (or (and todo-only "S") "s")) string)
4501 (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
4502 (org-agenda-prepare "SEARCH")
4503 (org-compile-prefix-format 'search)
4504 (org-set-sorting-strategy 'search)
4505 (setq org-agenda-redo-command
4506 (list 'org-search-view (if todo-only t nil)
4507 (list 'if 'current-prefix-arg nil string)))
4508 (setq org-agenda-query-string string)
4509 (if (equal (string-to-char string) ?*)
4510 (setq hdl-only t
4511 words (substring string 1))
4512 (setq words string))
4513 (when (equal (string-to-char words) ?!)
4514 (setq todo-only t
4515 words (substring words 1)))
4516 (when (equal (string-to-char words) ?:)
4517 (setq full-words t
4518 words (substring words 1)))
4519 (if (or org-agenda-search-view-always-boolean
4520 (member (string-to-char words) '(?- ?+ ?\{)))
4521 (setq boolean t))
4522 (setq words (org-split-string words))
4523 (let (www w)
4524 (while (setq w (pop words))
4525 (while (and (string-match "\\\\\\'" w) words)
4526 (setq w (concat (substring w 0 -1) " " (pop words))))
4527 (push w www))
4528 (setq words (nreverse www) www nil)
4529 (while (setq w (pop words))
4530 (when (and (string-match "\\`[-+]?{" w)
4531 (not (string-match "}\\'" w)))
4532 (while (and words (not (string-match "}\\'" (car words))))
4533 (setq w (concat w " " (pop words))))
4534 (setq w (concat w " " (pop words))))
4535 (push w www))
4536 (setq words (nreverse www)))
4537 (setq org-agenda-last-search-view-search-was-boolean boolean)
4538 (when boolean
4539 (let (wds w)
4540 (while (setq w (pop words))
4541 (if (or (equal (substring w 0 1) "\"")
4542 (and (> (length w) 1)
4543 (member (substring w 0 1) '("+" "-"))
4544 (equal (substring w 1 2) "\"")))
4545 (while (and words (not (equal (substring w -1) "\"")))
4546 (setq w (concat w " " (pop words)))))
4547 (and (string-match "\\`\\([-+]?\\)\"" w)
4548 (setq w (replace-match "\\1" nil nil w)))
4549 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4550 (push w wds))
4551 (setq words (nreverse wds))))
4552 (if boolean
4553 (mapc (lambda (w)
4554 (setq c (string-to-char w))
4555 (if (equal c ?-)
4556 (setq neg t w (substring w 1))
4557 (if (equal c ?+)
4558 (setq neg nil w (substring w 1))
4559 (setq neg nil)))
4560 (if (string-match "\\`{.*}\\'" w)
4561 (setq re (substring w 1 -1))
4562 (if full-words
4563 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4564 (setq re (regexp-quote (downcase w)))))
4565 (if neg (push re regexps-) (push re regexps+)))
4566 words)
4567 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4568 regexps+))
4569 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4570 (if (not regexps+)
4571 (setq regexp org-outline-regexp-bol)
4572 (setq regexp (pop regexps+))
4573 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4574 regexp))))
4575 (setq files (org-agenda-files nil 'ifmode))
4576 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4577 (pop org-agenda-text-search-extra-files)
4578 (setq files (org-add-archive-files files)))
4579 (setq files (append files org-agenda-text-search-extra-files)
4580 rtnall nil)
4581 (while (setq file (pop files))
4582 (setq ee nil)
4583 (catch 'nextfile
4584 (org-check-agenda-file file)
4585 (setq buffer (if (file-exists-p file)
4586 (org-get-agenda-file-buffer file)
4587 (error "No such file %s" file)))
4588 (if (not buffer)
4589 ;; If file does not exist, make sure an error message is sent
4590 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4591 file))))
4592 (with-current-buffer buffer
4593 (with-syntax-table (org-search-syntax-table)
4594 (unless (derived-mode-p 'org-mode)
4595 (error "Agenda file %s is not in `org-mode'" file))
4596 (let ((case-fold-search t))
4597 (save-excursion
4598 (save-restriction
4599 (if (eq buffer org-agenda-restrict)
4600 (narrow-to-region org-agenda-restrict-begin
4601 org-agenda-restrict-end)
4602 (widen))
4603 (goto-char (point-min))
4604 (unless (or (org-at-heading-p)
4605 (outline-next-heading))
4606 (throw 'nextfile t))
4607 (goto-char (max (point-min) (1- (point))))
4608 (while (re-search-forward regexp nil t)
4609 (org-back-to-heading t)
4610 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4611 (> (org-reduced-level (org-outline-level))
4612 org-agenda-search-view-max-outline-level)
4613 (forward-line -1)
4614 (outline-back-to-heading t)))
4615 (skip-chars-forward "* ")
4616 (setq beg (point-at-bol)
4617 beg1 (point)
4618 end (progn
4619 (outline-next-heading)
4620 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4621 (> (org-reduced-level (org-outline-level))
4622 org-agenda-search-view-max-outline-level)
4623 (forward-line 1)
4624 (outline-next-heading)))
4625 (point)))
4627 (catch :skip
4628 (goto-char beg)
4629 (org-agenda-skip)
4630 (setq str (buffer-substring-no-properties
4631 (point-at-bol)
4632 (if hdl-only (point-at-eol) end)))
4633 (mapc (lambda (wr) (when (string-match wr str)
4634 (goto-char (1- end))
4635 (throw :skip t)))
4636 regexps-)
4637 (mapc (lambda (wr) (unless (string-match wr str)
4638 (goto-char (1- end))
4639 (throw :skip t)))
4640 (if todo-only
4641 (cons (concat "^\*+[ \t]+" org-not-done-regexp)
4642 regexps+)
4643 regexps+))
4644 (goto-char beg)
4645 (setq marker (org-agenda-new-marker (point))
4646 category (org-get-category)
4647 level (make-string (org-reduced-level (org-outline-level)) ? )
4648 inherited-tags
4649 (or (eq org-agenda-show-inherited-tags 'always)
4650 (and (listp org-agenda-show-inherited-tags)
4651 (memq 'todo org-agenda-show-inherited-tags))
4652 (and (eq org-agenda-show-inherited-tags t)
4653 (or (eq org-agenda-use-tag-inheritance t)
4654 (memq 'todo org-agenda-use-tag-inheritance))))
4655 tags (org-get-tags-at nil (not inherited-tags))
4656 txt (org-agenda-format-item
4658 (buffer-substring-no-properties
4659 beg1 (point-at-eol))
4660 level category tags t))
4661 (org-add-props txt props
4662 'org-marker marker 'org-hd-marker marker
4663 'org-todo-regexp org-todo-regexp
4664 'level level
4665 'org-complex-heading-regexp org-complex-heading-regexp
4666 'priority 1000
4667 'type "search")
4668 (push txt ee)
4669 (goto-char (1- end))))))))))
4670 (setq rtn (nreverse ee))
4671 (setq rtnall (append rtnall rtn)))
4672 (if org-agenda-overriding-header
4673 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4674 nil 'face 'org-agenda-structure) "\n")
4675 (insert "Search words: ")
4676 (add-text-properties (point-min) (1- (point))
4677 (list 'face 'org-agenda-structure))
4678 (setq pos (point))
4679 (insert string "\n")
4680 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4681 (setq pos (point))
4682 (unless org-agenda-multi
4683 (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
4684 (add-text-properties pos (1- (point))
4685 (list 'face 'org-agenda-structure))))
4686 (org-agenda-mark-header-line (point-min))
4687 (when rtnall
4688 (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
4689 (goto-char (point-min))
4690 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4691 (add-text-properties (point-min) (point-max)
4692 `(org-agenda-type search
4693 org-last-args (,todo-only ,string ,edit-at)
4694 org-redo-cmd ,org-agenda-redo-command
4695 org-series-cmd ,org-cmd))
4696 (org-agenda-finalize)
4697 (setq buffer-read-only t))))
4699 ;;; Agenda TODO list
4701 (defun org-agenda-propertize-selected-todo-keywords (keywords)
4702 "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
4703 (concat
4704 (if (or (equal keywords "ALL") (not keywords))
4705 (propertize "ALL" 'face 'warning)
4706 (mapconcat
4707 (lambda (kw)
4708 (propertize kw 'face (org-get-todo-face kw)))
4709 (org-split-string keywords "|")
4710 "|"))
4711 "\n"))
4713 (defvar org-select-this-todo-keyword nil)
4714 (defvar org-last-arg nil)
4716 ;;;###autoload
4717 (defun org-todo-list (&optional arg)
4718 "Show all (not done) TODO entries from all agenda file in a single list.
4719 The prefix arg can be used to select a specific TODO keyword and limit
4720 the list to these. When using \\[universal-argument], you will be prompted
4721 for a keyword. A numeric prefix directly selects the Nth keyword in
4722 `org-todo-keywords-1'."
4723 (interactive "P")
4724 (if org-agenda-overriding-arguments
4725 (setq arg org-agenda-overriding-arguments))
4726 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4727 (let* ((today (org-today))
4728 (date (calendar-gregorian-from-absolute today))
4729 (kwds org-todo-keywords-for-agenda)
4730 (completion-ignore-case t)
4731 (org-select-this-todo-keyword
4732 (if (stringp arg) arg
4733 (and arg (integerp arg) (> arg 0)
4734 (nth (1- arg) kwds))))
4735 rtn rtnall files file pos)
4736 (when (equal arg '(4))
4737 (setq org-select-this-todo-keyword
4738 (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
4739 (mapcar 'list kwds) nil nil)))
4740 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4741 (catch 'exit
4742 (if org-agenda-sticky
4743 (setq org-agenda-buffer-name
4744 (if (stringp org-select-this-todo-keyword)
4745 (format "*Org Agenda(%s:%s)*" (or org-keys "t")
4746 org-select-this-todo-keyword)
4747 (format "*Org Agenda(%s)*" (or org-keys "t")))))
4748 (org-agenda-prepare "TODO")
4749 (org-compile-prefix-format 'todo)
4750 (org-set-sorting-strategy 'todo)
4751 (setq org-agenda-redo-command
4752 `(org-todo-list (or (and (numberp current-prefix-arg)
4753 current-prefix-arg)
4754 ,org-select-this-todo-keyword
4755 current-prefix-arg ,arg)))
4756 (setq files (org-agenda-files nil 'ifmode)
4757 rtnall nil)
4758 (while (setq file (pop files))
4759 (catch 'nextfile
4760 (org-check-agenda-file file)
4761 (setq rtn (org-agenda-get-day-entries file date :todo))
4762 (setq rtnall (append rtnall rtn))))
4763 (if org-agenda-overriding-header
4764 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4765 nil 'face 'org-agenda-structure) "\n")
4766 (insert "Global list of TODO items of type: ")
4767 (add-text-properties (point-min) (1- (point))
4768 (list 'face 'org-agenda-structure
4769 'short-heading
4770 (concat "ToDo: "
4771 (or org-select-this-todo-keyword "ALL"))))
4772 (org-agenda-mark-header-line (point-min))
4773 (insert (org-agenda-propertize-selected-todo-keywords
4774 org-select-this-todo-keyword))
4775 (setq pos (point))
4776 (unless org-agenda-multi
4777 (insert "Available with `N r': (0)[ALL]")
4778 (let ((n 0) s)
4779 (mapc (lambda (x)
4780 (setq s (format "(%d)%s" (setq n (1+ n)) x))
4781 (if (> (+ (current-column) (string-width s) 1) (frame-width))
4782 (insert "\n "))
4783 (insert " " s))
4784 kwds))
4785 (insert "\n"))
4786 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4787 (org-agenda-mark-header-line (point-min))
4788 (when rtnall
4789 (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
4790 (goto-char (point-min))
4791 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4792 (add-text-properties (point-min) (point-max)
4793 `(org-agenda-type todo
4794 org-last-args ,arg
4795 org-redo-cmd ,org-agenda-redo-command
4796 org-series-cmd ,org-cmd))
4797 (org-agenda-finalize)
4798 (setq buffer-read-only t))))
4800 ;;; Agenda tags match
4802 ;;;###autoload
4803 (defun org-tags-view (&optional todo-only match)
4804 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4805 The prefix arg TODO-ONLY limits the search to TODO entries."
4806 (interactive "P")
4807 (if org-agenda-overriding-arguments
4808 (setq todo-only (car org-agenda-overriding-arguments)
4809 match (nth 1 org-agenda-overriding-arguments)))
4810 (let* ((org-tags-match-list-sublevels
4811 org-tags-match-list-sublevels)
4812 (completion-ignore-case t)
4813 rtn rtnall files file pos matcher
4814 buffer)
4815 (when (and (stringp match) (not (string-match "\\S-" match)))
4816 (setq match nil))
4817 (catch 'exit
4818 (if org-agenda-sticky
4819 (setq org-agenda-buffer-name
4820 (if (stringp match)
4821 (format "*Org Agenda(%s:%s)*"
4822 (or org-keys (or (and todo-only "M") "m")) match)
4823 (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
4824 ;; Prepare agendas (and `org-tag-alist-for-agenda') before
4825 ;; expanding tags within `org-make-tags-matcher'
4826 (org-agenda-prepare (concat "TAGS " match))
4827 (setq matcher (org-make-tags-matcher match)
4828 match (car matcher) matcher (cdr matcher))
4829 (org-compile-prefix-format 'tags)
4830 (org-set-sorting-strategy 'tags)
4831 (setq org-agenda-query-string match)
4832 (setq org-agenda-redo-command
4833 (list 'org-tags-view `(quote ,todo-only)
4834 (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
4835 (setq files (org-agenda-files nil 'ifmode)
4836 rtnall nil)
4837 (while (setq file (pop files))
4838 (catch 'nextfile
4839 (org-check-agenda-file file)
4840 (setq buffer (if (file-exists-p file)
4841 (org-get-agenda-file-buffer file)
4842 (error "No such file %s" file)))
4843 (if (not buffer)
4844 ;; If file does not exist, error message to agenda
4845 (setq rtn (list
4846 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4847 rtnall (append rtnall rtn))
4848 (with-current-buffer buffer
4849 (unless (derived-mode-p 'org-mode)
4850 (error "Agenda file %s is not in `org-mode'" file))
4851 (save-excursion
4852 (save-restriction
4853 (if (eq buffer org-agenda-restrict)
4854 (narrow-to-region org-agenda-restrict-begin
4855 org-agenda-restrict-end)
4856 (widen))
4857 (setq rtn (org-scan-tags 'agenda matcher todo-only))
4858 (setq rtnall (append rtnall rtn))))))))
4859 (if org-agenda-overriding-header
4860 (insert (org-add-props (copy-sequence org-agenda-overriding-header)
4861 nil 'face 'org-agenda-structure) "\n")
4862 (insert "Headlines with TAGS match: ")
4863 (add-text-properties (point-min) (1- (point))
4864 (list 'face 'org-agenda-structure
4865 'short-heading
4866 (concat "Match: " match)))
4867 (setq pos (point))
4868 (insert match "\n")
4869 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4870 (setq pos (point))
4871 (unless org-agenda-multi
4872 (insert "Press `C-u r' to search again with new search string\n"))
4873 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
4874 (org-agenda-mark-header-line (point-min))
4875 (when rtnall
4876 (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
4877 (goto-char (point-min))
4878 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4879 (add-text-properties (point-min) (point-max)
4880 `(org-agenda-type tags
4881 org-last-args (,todo-only ,match)
4882 org-redo-cmd ,org-agenda-redo-command
4883 org-series-cmd ,org-cmd))
4884 (org-agenda-finalize)
4885 (setq buffer-read-only t))))
4887 ;;; Agenda Finding stuck projects
4889 (defvar org-agenda-skip-regexp nil
4890 "Regular expression used in skipping subtrees for the agenda.
4891 This is basically a temporary global variable that can be set and then
4892 used by user-defined selections using `org-agenda-skip-function'.")
4894 (defvar org-agenda-overriding-header nil
4895 "When set during agenda, todo and tags searches it replaces the header.
4896 This variable should not be set directly, but custom commands can bind it
4897 in the options section.")
4899 (defun org-agenda-skip-entry-when-regexp-matches ()
4900 "Check if the current entry contains match for `org-agenda-skip-regexp'.
4901 If yes, it returns the end position of this entry, causing agenda commands
4902 to skip the entry but continuing the search in the subtree. This is a
4903 function that can be put into `org-agenda-skip-function' for the duration
4904 of a command."
4905 (let ((end (save-excursion (org-end-of-subtree t)))
4906 skip)
4907 (save-excursion
4908 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4909 (and skip end)))
4911 (defun org-agenda-skip-subtree-when-regexp-matches ()
4912 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4913 If yes, it returns the end position of this tree, causing agenda commands
4914 to skip this subtree. This is a function that can be put into
4915 `org-agenda-skip-function' for the duration of a command."
4916 (let ((end (save-excursion (org-end-of-subtree t)))
4917 skip)
4918 (save-excursion
4919 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4920 (and skip end)))
4922 (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
4923 "Check if the current subtree contains match for `org-agenda-skip-regexp'.
4924 If yes, it returns the end position of the current entry (NOT the tree),
4925 causing agenda commands to skip the entry but continuing the search in
4926 the subtree. This is a function that can be put into
4927 `org-agenda-skip-function' for the duration of a command. An important
4928 use of this function is for the stuck project list."
4929 (let ((end (save-excursion (org-end-of-subtree t)))
4930 (entry-end (save-excursion (outline-next-heading) (1- (point))))
4931 skip)
4932 (save-excursion
4933 (setq skip (re-search-forward org-agenda-skip-regexp end t)))
4934 (and skip entry-end)))
4936 (defun org-agenda-skip-entry-if (&rest conditions)
4937 "Skip entry if any of CONDITIONS is true.
4938 See `org-agenda-skip-if' for details."
4939 (org-agenda-skip-if nil conditions))
4941 (defun org-agenda-skip-subtree-if (&rest conditions)
4942 "Skip subtree if any of CONDITIONS is true.
4943 See `org-agenda-skip-if' for details."
4944 (org-agenda-skip-if t conditions))
4946 (defun org-agenda-skip-if (subtree conditions)
4947 "Checks current entity for CONDITIONS.
4948 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4949 the entry (i.e. the text before the next heading) is checked.
4951 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4952 from different tests. Valid conditions are:
4954 scheduled Check if there is a scheduled cookie
4955 notscheduled Check if there is no scheduled cookie
4956 deadline Check if there is a deadline
4957 notdeadline Check if there is no deadline
4958 timestamp Check if there is a timestamp (also deadline or scheduled)
4959 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4960 regexp Check if regexp matches
4961 notregexp Check if regexp does not match.
4962 todo Check if TODO keyword matches
4963 nottodo Check if TODO keyword does not match
4965 The regexp is taken from the conditions list, it must come right after
4966 the `regexp' or `notregexp' element.
4968 `todo' and `nottodo' accept as an argument a list of todo
4969 keywords, which may include \"*\" to match any todo keyword.
4971 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
4973 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4975 Instead of a list, a keyword class may be given. For example:
4977 (org-agenda-skip-entry-if 'nottodo 'done)
4979 would skip entries that haven't been marked with any of \"DONE\"
4980 keywords. Possible classes are: `todo', `done', `any'.
4982 If any of these conditions is met, this function returns the end point of
4983 the entity, causing the search to continue from there. This is a function
4984 that can be put into `org-agenda-skip-function' for the duration of a command."
4985 (let (beg end m)
4986 (org-back-to-heading t)
4987 (setq beg (point)
4988 end (if subtree
4989 (progn (org-end-of-subtree t) (point))
4990 (progn (outline-next-heading) (1- (point)))))
4991 (goto-char beg)
4992 (and
4994 (and (memq 'scheduled conditions)
4995 (re-search-forward org-scheduled-time-regexp end t))
4996 (and (memq 'notscheduled conditions)
4997 (not (re-search-forward org-scheduled-time-regexp end t)))
4998 (and (memq 'deadline conditions)
4999 (re-search-forward org-deadline-time-regexp end t))
5000 (and (memq 'notdeadline conditions)
5001 (not (re-search-forward org-deadline-time-regexp end t)))
5002 (and (memq 'timestamp conditions)
5003 (re-search-forward org-ts-regexp end t))
5004 (and (memq 'nottimestamp conditions)
5005 (not (re-search-forward org-ts-regexp end t)))
5006 (and (setq m (memq 'regexp conditions))
5007 (stringp (nth 1 m))
5008 (re-search-forward (nth 1 m) end t))
5009 (and (setq m (memq 'notregexp conditions))
5010 (stringp (nth 1 m))
5011 (not (re-search-forward (nth 1 m) end t)))
5012 (and (or
5013 (setq m (memq 'nottodo conditions))
5014 (setq m (memq 'todo-unblocked conditions))
5015 (setq m (memq 'nottodo-unblocked conditions))
5016 (setq m (memq 'todo conditions)))
5017 (org-agenda-skip-if-todo m end)))
5018 end)))
5020 (defun org-agenda-skip-if-todo (args end)
5021 "Helper function for `org-agenda-skip-if', do not use it directly.
5022 ARGS is a list with first element either `todo', `nottodo',
5023 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
5024 a list of TODO keywords, or a state symbol `todo' or `done' or
5025 `any'."
5026 (let ((kw (car args))
5027 (arg (cadr args))
5028 todo-wds todo-re)
5029 (setq todo-wds
5030 (org-uniquify
5031 (cond
5032 ((listp arg) ;; list of keywords
5033 (if (member "*" arg)
5034 (mapcar 'substring-no-properties org-todo-keywords-1)
5035 arg))
5036 ((symbolp arg) ;; keyword class name
5037 (cond
5038 ((eq arg 'todo)
5039 (org-delete-all org-done-keywords
5040 (mapcar 'substring-no-properties
5041 org-todo-keywords-1)))
5042 ((eq arg 'done) org-done-keywords)
5043 ((eq arg 'any)
5044 (mapcar 'substring-no-properties org-todo-keywords-1)))))))
5045 (setq todo-re
5046 (concat "^\\*+[ \t]+\\<\\("
5047 (mapconcat 'identity todo-wds "\\|")
5048 "\\)\\>"))
5049 (cond
5050 ((eq kw 'todo) (re-search-forward todo-re end t))
5051 ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
5052 ((eq kw 'todo-unblocked)
5053 (catch 'unblocked
5054 (while (re-search-forward todo-re end t)
5055 (or (org-entry-blocked-p) (throw 'unblocked t)))
5056 nil))
5057 ((eq kw 'nottodo-unblocked)
5058 (catch 'unblocked
5059 (while (re-search-forward todo-re end t)
5060 (or (org-entry-blocked-p) (throw 'unblocked nil)))
5064 ;;;###autoload
5065 (defun org-agenda-list-stuck-projects (&rest ignore)
5066 "Create agenda view for projects that are stuck.
5067 Stuck projects are project that have no next actions. For the definitions
5068 of what a project is and how to check if it stuck, customize the variable
5069 `org-stuck-projects'."
5070 (interactive)
5071 (let* ((org-agenda-skip-function
5072 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
5073 ;; We could have used org-agenda-skip-if here.
5074 (org-agenda-overriding-header
5075 (or org-agenda-overriding-header "List of stuck projects: "))
5076 (matcher (nth 0 org-stuck-projects))
5077 (todo (nth 1 org-stuck-projects))
5078 (todo-wds (if (member "*" todo)
5079 (progn
5080 (org-agenda-prepare-buffers (org-agenda-files
5081 nil 'ifmode))
5082 (org-delete-all
5083 org-done-keywords-for-agenda
5084 (copy-sequence org-todo-keywords-for-agenda)))
5085 todo))
5086 (todo-re (concat "^\\*+[ \t]+\\("
5087 (mapconcat 'identity todo-wds "\\|")
5088 "\\)\\>"))
5089 (tags (nth 2 org-stuck-projects))
5090 (tags-re (if (member "*" tags)
5091 (concat org-outline-regexp-bol
5092 (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
5093 (if tags
5094 (concat org-outline-regexp-bol
5095 ".*:\\("
5096 (mapconcat 'identity tags "\\|")
5097 (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
5098 (gen-re (nth 3 org-stuck-projects))
5099 (re-list
5100 (delq nil
5101 (list
5102 (if todo todo-re)
5103 (if tags tags-re)
5104 (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
5105 gen-re)))))
5106 (setq org-agenda-skip-regexp
5107 (if re-list
5108 (mapconcat 'identity re-list "\\|")
5109 (error "No information how to identify unstuck projects")))
5110 (org-tags-view nil matcher)
5111 (setq org-agenda-buffer-name (buffer-name))
5112 (with-current-buffer org-agenda-buffer-name
5113 (setq org-agenda-redo-command
5114 `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
5116 ;;; Diary integration
5118 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
5119 (defvar diary-list-entries-hook)
5120 (defvar diary-time-regexp)
5121 (defun org-get-entries-from-diary (date)
5122 "Get the (Emacs Calendar) diary entries for DATE."
5123 (require 'diary-lib)
5124 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
5125 (diary-display-function 'diary-fancy-display)
5126 (pop-up-frames nil)
5127 (diary-list-entries-hook
5128 (cons 'org-diary-default-entry diary-list-entries-hook))
5129 (diary-file-name-prefix nil) ; turn this feature off
5130 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
5131 entries
5132 (org-disable-agenda-to-diary t))
5133 (save-excursion
5134 (save-window-excursion
5135 (funcall (if (fboundp 'diary-list-entries)
5136 'diary-list-entries 'list-diary-entries)
5137 date 1)))
5138 (if (not (get-buffer diary-fancy-buffer))
5139 (setq entries nil)
5140 (with-current-buffer diary-fancy-buffer
5141 (setq buffer-read-only nil)
5142 (if (zerop (buffer-size))
5143 ;; No entries
5144 (setq entries nil)
5145 ;; Omit the date and other unnecessary stuff
5146 (org-agenda-cleanup-fancy-diary)
5147 ;; Add prefix to each line and extend the text properties
5148 (if (zerop (buffer-size))
5149 (setq entries nil)
5150 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
5151 (setq entries
5152 (with-temp-buffer
5153 (insert entries) (goto-char (point-min))
5154 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
5155 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
5156 (replace-match (concat "; " (match-string 1)))))
5157 (buffer-string)))))
5158 (set-buffer-modified-p nil)
5159 (kill-buffer diary-fancy-buffer)))
5160 (when entries
5161 (setq entries (org-split-string entries "\n"))
5162 (setq entries
5163 (mapcar
5164 (lambda (x)
5165 (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
5166 ;; Extend the text properties to the beginning of the line
5167 (org-add-props x (text-properties-at (1- (length x)) x)
5168 'type "diary" 'date date 'face 'org-agenda-diary))
5169 entries)))))
5171 (defvar org-agenda-cleanup-fancy-diary-hook nil
5172 "Hook run when the fancy diary buffer is cleaned up.")
5174 (defun org-agenda-cleanup-fancy-diary ()
5175 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
5176 This gets rid of the date, the underline under the date, and
5177 the dummy entry installed by `org-mode' to ensure non-empty diary for each
5178 date. It also removes lines that contain only whitespace."
5179 (goto-char (point-min))
5180 (if (looking-at ".*?:[ \t]*")
5181 (progn
5182 (replace-match "")
5183 (re-search-forward "\n=+$" nil t)
5184 (replace-match "")
5185 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
5186 (re-search-forward "\n=+$" nil t)
5187 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
5188 (goto-char (point-min))
5189 (while (re-search-forward "^ +\n" nil t)
5190 (replace-match ""))
5191 (goto-char (point-min))
5192 (if (re-search-forward "^Org-mode dummy\n?" nil t)
5193 (replace-match ""))
5194 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
5196 ;; Make sure entries from the diary have the right text properties.
5197 (eval-after-load "diary-lib"
5198 '(if (boundp 'diary-modify-entry-list-string-function)
5199 ;; We can rely on the hook, nothing to do
5201 ;; Hook not available, must use advice to make this work
5202 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
5203 "Make the position visible."
5204 (if (and org-disable-agenda-to-diary ;; called from org-agenda
5205 (stringp string)
5206 buffer-file-name)
5207 (setq string (org-modify-diary-entry-string string))))))
5209 (defun org-modify-diary-entry-string (string)
5210 "Add text properties to string, allowing org-mode to act on it."
5211 (org-add-props string nil
5212 'mouse-face 'highlight
5213 'help-echo (if buffer-file-name
5214 (format "mouse-2 or RET jump to diary file %s"
5215 (abbreviate-file-name buffer-file-name))
5217 'org-agenda-diary-link t
5218 'org-marker (org-agenda-new-marker (point-at-bol))))
5220 (defun org-diary-default-entry ()
5221 "Add a dummy entry to the diary.
5222 Needed to avoid empty dates which mess up holiday display."
5223 ;; Catch the error if dealing with the new add-to-diary-alist
5224 (when org-disable-agenda-to-diary
5225 (condition-case nil
5226 (org-add-to-diary-list original-date "Org-mode dummy" "")
5227 (error
5228 (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
5230 (defun org-add-to-diary-list (&rest args)
5231 (if (fboundp 'diary-add-to-list)
5232 (apply 'diary-add-to-list args)
5233 (apply 'add-to-diary-list args)))
5235 (defvar org-diary-last-run-time nil)
5237 ;;;###autoload
5238 (defun org-diary (&rest args)
5239 "Return diary information from org files.
5240 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
5241 It accesses org files and extracts information from those files to be
5242 listed in the diary. The function accepts arguments specifying what
5243 items should be listed. For a list of arguments allowed here, see the
5244 variable `org-agenda-entry-types'.
5246 The call in the diary file should look like this:
5248 &%%(org-diary) ~/path/to/some/orgfile.org
5250 Use a separate line for each org file to check. Or, if you omit the file name,
5251 all files listed in `org-agenda-files' will be checked automatically:
5253 &%%(org-diary)
5255 If you don't give any arguments (as in the example above), the default value
5256 of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
5257 So the example above may also be written as
5259 &%%(org-diary :deadline :timestamp :sexp :scheduled)
5261 The function expects the lisp variables `entry' and `date' to be provided
5262 by the caller, because this is how the calendar works. Don't use this
5263 function from a program - use `org-agenda-get-day-entries' instead."
5264 (when (> (- (org-float-time)
5265 org-agenda-last-marker-time)
5267 ;; I am not sure if this works with sticky agendas, because the marker
5268 ;; list is then no longer a global variable.
5269 (org-agenda-reset-markers))
5270 (org-compile-prefix-format 'agenda)
5271 (org-set-sorting-strategy 'agenda)
5272 (setq args (or args org-agenda-entry-types))
5273 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
5274 (list entry)
5275 (org-agenda-files t)))
5276 (time (org-float-time))
5277 file rtn results)
5278 (when (or (not org-diary-last-run-time)
5279 (> (- time
5280 org-diary-last-run-time)
5282 (org-agenda-prepare-buffers files))
5283 (setq org-diary-last-run-time time)
5284 ;; If this is called during org-agenda, don't return any entries to
5285 ;; the calendar. Org Agenda will list these entries itself.
5286 (if org-disable-agenda-to-diary (setq files nil))
5287 (while (setq file (pop files))
5288 (setq rtn (apply 'org-agenda-get-day-entries file date args))
5289 (setq results (append results rtn)))
5290 (when results
5291 (setq results
5292 (mapcar (lambda (i) (replace-regexp-in-string
5293 org-bracket-link-regexp "\\3" i)) results))
5294 (concat (org-agenda-finalize-entries results) "\n"))))
5296 ;;; Agenda entry finders
5298 (defun org-agenda-get-day-entries (file date &rest args)
5299 "Does the work for `org-diary' and `org-agenda'.
5300 FILE is the path to a file to be checked for entries. DATE is date like
5301 the one returned by `calendar-current-date'. ARGS are symbols indicating
5302 which kind of entries should be extracted. For details about these, see
5303 the documentation of `org-diary'."
5304 (setq args (or args org-agenda-entry-types))
5305 (let* ((org-startup-folded nil)
5306 (org-startup-align-all-tables nil)
5307 (buffer (if (file-exists-p file)
5308 (org-get-agenda-file-buffer file)
5309 (error "No such file %s" file)))
5310 arg results rtn deadline-results)
5311 (if (not buffer)
5312 ;; If file does not exist, make sure an error message ends up in diary
5313 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
5314 (with-current-buffer buffer
5315 (unless (derived-mode-p 'org-mode)
5316 (error "Agenda file %s is not in `org-mode'" file))
5317 (setq org-agenda-buffer (or org-agenda-buffer buffer))
5318 (let ((case-fold-search nil))
5319 (save-excursion
5320 (save-restriction
5321 (if (eq buffer org-agenda-restrict)
5322 (narrow-to-region org-agenda-restrict-begin
5323 org-agenda-restrict-end)
5324 (widen))
5325 ;; The way we repeatedly append to `results' makes it O(n^2) :-(
5326 (while (setq arg (pop args))
5327 (cond
5328 ((and (eq arg :todo)
5329 (equal date (calendar-gregorian-from-absolute
5330 (org-today))))
5331 (setq rtn (org-agenda-get-todos))
5332 (setq results (append results rtn)))
5333 ((eq arg :timestamp)
5334 (setq rtn (org-agenda-get-blocks))
5335 (setq results (append results rtn))
5336 (setq rtn (org-agenda-get-timestamps deadline-results))
5337 (setq results (append results rtn)))
5338 ((eq arg :sexp)
5339 (setq rtn (org-agenda-get-sexps))
5340 (setq results (append results rtn)))
5341 ((eq arg :scheduled)
5342 (setq rtn (org-agenda-get-scheduled deadline-results))
5343 (setq results (append results rtn)))
5344 ((eq arg :scheduled*)
5345 (setq rtn (org-agenda-get-scheduled deadline-results t))
5346 (setq results (append results rtn)))
5347 ((eq arg :closed)
5348 (setq rtn (org-agenda-get-progress))
5349 (setq results (append results rtn)))
5350 ((eq arg :deadline)
5351 (setq rtn (org-agenda-get-deadlines))
5352 (setq deadline-results (copy-sequence rtn))
5353 (setq results (append results rtn)))
5354 ((eq arg :deadline*)
5355 (setq rtn (org-agenda-get-deadlines t))
5356 (setq deadline-results (copy-sequence rtn))
5357 (setq results (append results rtn))))))))
5358 results))))
5360 (defsubst org-em (x y list)
5361 "Is X or Y a member of LIST?"
5362 (or (memq x list) (memq y list)))
5364 (defvar org-heading-keyword-regexp-format) ; defined in org.el
5365 (defvar org-agenda-sorting-strategy-selected nil)
5367 (defun org-agenda-entry-get-agenda-timestamp (pom)
5368 "Retrieve timestamp information for sorting agenda views.
5369 Given a point or marker POM, returns a cons cell of the timestamp
5370 and the timestamp type relevant for the sorting strategy in
5371 `org-agenda-sorting-strategy-selected'."
5372 (let (ts ts-date-type)
5373 (save-match-data
5374 (cond ((org-em 'scheduled-up 'scheduled-down
5375 org-agenda-sorting-strategy-selected)
5376 (setq ts (org-entry-get pom "SCHEDULED")
5377 ts-date-type " scheduled"))
5378 ((org-em 'deadline-up 'deadline-down
5379 org-agenda-sorting-strategy-selected)
5380 (setq ts (org-entry-get pom "DEADLINE")
5381 ts-date-type " deadline"))
5382 ((org-em 'ts-up 'ts-down
5383 org-agenda-sorting-strategy-selected)
5384 (setq ts (org-entry-get pom "TIMESTAMP")
5385 ts-date-type " timestamp"))
5386 ((org-em 'tsia-up 'tsia-down
5387 org-agenda-sorting-strategy-selected)
5388 (setq ts (org-entry-get pom "TIMESTAMP_IA")
5389 ts-date-type " timestamp_ia"))
5390 ((org-em 'timestamp-up 'timestamp-down
5391 org-agenda-sorting-strategy-selected)
5392 (setq ts (or (org-entry-get pom "SCHEDULED")
5393 (org-entry-get pom "DEADLINE")
5394 (org-entry-get pom "TIMESTAMP")
5395 (org-entry-get pom "TIMESTAMP_IA"))
5396 ts-date-type ""))
5397 (t (setq ts-date-type "")))
5398 (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
5399 ts-date-type))))
5401 (defun org-agenda-get-todos ()
5402 "Return the TODO information for agenda display."
5403 (let* ((props (list 'face nil
5404 'done-face 'org-agenda-done
5405 'org-not-done-regexp org-not-done-regexp
5406 'org-todo-regexp org-todo-regexp
5407 'org-complex-heading-regexp org-complex-heading-regexp
5408 'mouse-face 'highlight
5409 'help-echo
5410 (format "mouse-2 or RET jump to org file %s"
5411 (abbreviate-file-name buffer-file-name))))
5412 (regexp (format org-heading-keyword-regexp-format
5413 (cond
5414 ((and org-select-this-todo-keyword
5415 (equal org-select-this-todo-keyword "*"))
5416 org-todo-regexp)
5417 (org-select-this-todo-keyword
5418 (concat "\\("
5419 (mapconcat 'identity
5420 (org-split-string
5421 org-select-this-todo-keyword
5422 "|")
5423 "\\|") "\\)"))
5424 (t org-not-done-regexp))))
5425 marker priority category level tags todo-state
5426 ts-date ts-date-type ts-date-pair
5427 ee txt beg end inherited-tags todo-state-end-pos)
5428 (goto-char (point-min))
5429 (while (re-search-forward regexp nil t)
5430 (catch :skip
5431 (save-match-data
5432 (beginning-of-line)
5433 (org-agenda-skip)
5434 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
5435 (unless (and (setq todo-state (org-get-todo-state))
5436 (setq todo-state-end-pos (match-end 2)))
5437 (goto-char end)
5438 (throw :skip nil))
5439 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
5440 (goto-char (1+ beg))
5441 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
5442 (throw :skip nil)))
5443 (goto-char (match-beginning 2))
5444 (setq marker (org-agenda-new-marker (match-beginning 0))
5445 category (org-get-category)
5446 ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
5447 ts-date (car ts-date-pair)
5448 ts-date-type (cdr ts-date-pair)
5449 txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
5450 inherited-tags
5451 (or (eq org-agenda-show-inherited-tags 'always)
5452 (and (listp org-agenda-show-inherited-tags)
5453 (memq 'todo org-agenda-show-inherited-tags))
5454 (and (eq org-agenda-show-inherited-tags t)
5455 (or (eq org-agenda-use-tag-inheritance t)
5456 (memq 'todo org-agenda-use-tag-inheritance))))
5457 tags (org-get-tags-at nil (not inherited-tags))
5458 level (make-string (org-reduced-level (org-outline-level)) ? )
5459 txt (org-agenda-format-item "" txt level category tags t)
5460 priority (1+ (org-get-priority txt)))
5461 (org-add-props txt props
5462 'org-marker marker 'org-hd-marker marker
5463 'priority priority
5464 'level level
5465 'ts-date ts-date
5466 'type (concat "todo" ts-date-type) 'todo-state todo-state)
5467 (push txt ee)
5468 (if org-agenda-todo-list-sublevels
5469 (goto-char todo-state-end-pos)
5470 (org-end-of-subtree 'invisible))))
5471 (nreverse ee)))
5473 (defun org-agenda-todo-custom-ignore-p (time n)
5474 "Check whether timestamp is farther away than n number of days.
5475 This function is invoked if `org-agenda-todo-ignore-deadlines',
5476 `org-agenda-todo-ignore-scheduled' or
5477 `org-agenda-todo-ignore-timestamp' is set to an integer."
5478 (let ((days (org-time-stamp-to-now
5479 time org-agenda-todo-ignore-time-comparison-use-seconds)))
5480 (if (>= n 0)
5481 (>= days n)
5482 (<= days n))))
5484 ;;;###autoload
5485 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
5486 (&optional end)
5487 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
5488 (when (or org-agenda-todo-ignore-with-date
5489 org-agenda-todo-ignore-scheduled
5490 org-agenda-todo-ignore-deadlines
5491 org-agenda-todo-ignore-timestamp)
5492 (setq end (or end (save-excursion (outline-next-heading) (point))))
5493 (save-excursion
5494 (or (and org-agenda-todo-ignore-with-date
5495 (re-search-forward org-ts-regexp end t))
5496 (and org-agenda-todo-ignore-scheduled
5497 (re-search-forward org-scheduled-time-regexp end t)
5498 (cond
5499 ((eq org-agenda-todo-ignore-scheduled 'future)
5500 (> (org-time-stamp-to-now
5501 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5502 ((eq org-agenda-todo-ignore-scheduled 'past)
5503 (<= (org-time-stamp-to-now
5504 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5505 ((numberp org-agenda-todo-ignore-scheduled)
5506 (org-agenda-todo-custom-ignore-p
5507 (match-string 1) org-agenda-todo-ignore-scheduled))
5508 (t)))
5509 (and org-agenda-todo-ignore-deadlines
5510 (re-search-forward org-deadline-time-regexp end t)
5511 (cond
5512 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
5513 ((eq org-agenda-todo-ignore-deadlines 'far)
5514 (not (org-deadline-close (match-string 1))))
5515 ((eq org-agenda-todo-ignore-deadlines 'future)
5516 (> (org-time-stamp-to-now
5517 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5518 ((eq org-agenda-todo-ignore-deadlines 'past)
5519 (<= (org-time-stamp-to-now
5520 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5521 ((numberp org-agenda-todo-ignore-deadlines)
5522 (org-agenda-todo-custom-ignore-p
5523 (match-string 1) org-agenda-todo-ignore-deadlines))
5524 (t (org-deadline-close (match-string 1)))))
5525 (and org-agenda-todo-ignore-timestamp
5526 (let ((buffer (current-buffer))
5527 (regexp
5528 (concat
5529 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
5530 (start (point)))
5531 ;; Copy current buffer into a temporary one
5532 (with-temp-buffer
5533 (insert-buffer-substring buffer start end)
5534 (goto-char (point-min))
5535 ;; Delete SCHEDULED and DEADLINE items
5536 (while (re-search-forward regexp end t)
5537 (delete-region (match-beginning 0) (match-end 0)))
5538 (goto-char (point-min))
5539 ;; No search for timestamp left
5540 (when (re-search-forward org-ts-regexp nil t)
5541 (cond
5542 ((eq org-agenda-todo-ignore-timestamp 'future)
5543 (> (org-time-stamp-to-now
5544 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5545 ((eq org-agenda-todo-ignore-timestamp 'past)
5546 (<= (org-time-stamp-to-now
5547 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5548 ((numberp org-agenda-todo-ignore-timestamp)
5549 (org-agenda-todo-custom-ignore-p
5550 (match-string 1) org-agenda-todo-ignore-timestamp))
5551 (t))))))))))
5553 (defun org-agenda-get-timestamps (&optional deadline-results)
5554 "Return the date stamp information for agenda display."
5555 (let* ((props (list 'face 'org-agenda-calendar-event
5556 'org-not-done-regexp org-not-done-regexp
5557 'org-todo-regexp org-todo-regexp
5558 'org-complex-heading-regexp org-complex-heading-regexp
5559 'mouse-face 'highlight
5560 'help-echo
5561 (format "mouse-2 or RET jump to org file %s"
5562 (abbreviate-file-name buffer-file-name))))
5563 (d1 (calendar-absolute-from-gregorian date))
5565 (deadline-position-alist
5566 (mapcar (lambda (a) (and (setq mm (get-text-property
5567 0 'org-hd-marker a))
5568 (cons (marker-position mm) a)))
5569 deadline-results))
5570 (remove-re org-ts-regexp)
5571 (regexp
5572 (concat
5573 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5574 (regexp-quote
5575 (substring
5576 (format-time-string
5577 (car org-time-stamp-formats)
5578 (apply 'encode-time ; DATE bound by calendar
5579 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5580 1 11))
5581 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5582 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5583 marker hdmarker deadlinep scheduledp clockp closedp inactivep
5584 donep tmp priority category level ee txt timestr tags
5585 b0 b3 e3 head todo-state end-of-match show-all warntime habitp
5586 inherited-tags ts-date)
5587 (goto-char (point-min))
5588 (while (setq end-of-match (re-search-forward regexp nil t))
5589 (setq b0 (match-beginning 0)
5590 b3 (match-beginning 3) e3 (match-end 3)
5591 todo-state (save-match-data (ignore-errors (org-get-todo-state)))
5592 habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
5593 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
5594 (member todo-state
5595 org-agenda-repeating-timestamp-show-all)))
5596 (catch :skip
5597 (and (org-at-date-range-p) (throw :skip nil))
5598 (org-agenda-skip)
5599 (if (and (match-end 1)
5600 (not (= d1 (org-time-string-to-absolute
5601 (match-string 1) d1 nil show-all
5602 (current-buffer) b0))))
5603 (throw :skip nil))
5604 (if (and e3
5605 (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
5606 (throw :skip nil))
5607 (setq tmp (buffer-substring (max (point-min)
5608 (- b0 org-ds-keyword-length))
5610 timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
5611 inactivep (= (char-after b0) ?\[)
5612 deadlinep (string-match org-deadline-regexp tmp)
5613 scheduledp (string-match org-scheduled-regexp tmp)
5614 closedp (and org-agenda-include-inactive-timestamps
5615 (string-match org-closed-string tmp))
5616 clockp (and org-agenda-include-inactive-timestamps
5617 (or (string-match org-clock-string tmp)
5618 (string-match "]-+\\'" tmp)))
5619 warntime (get-text-property (point) 'org-appt-warntime)
5620 donep (member todo-state org-done-keywords))
5621 (if (or scheduledp deadlinep closedp clockp
5622 (and donep org-agenda-skip-timestamp-if-done))
5623 (throw :skip t))
5624 (if (string-match ">" timestr)
5625 ;; substring should only run to end of time stamp
5626 (setq timestr (substring timestr 0 (match-end 0))))
5627 (setq marker (org-agenda-new-marker b0)
5628 category (org-get-category b0))
5629 (save-excursion
5630 (if (not (re-search-backward org-outline-regexp-bol nil t))
5631 (throw :skip nil)
5632 (goto-char (match-beginning 0))
5633 (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
5634 (assoc (point) deadline-position-alist))
5635 (throw :skip nil))
5636 (setq hdmarker (org-agenda-new-marker)
5637 inherited-tags
5638 (or (eq org-agenda-show-inherited-tags 'always)
5639 (and (listp org-agenda-show-inherited-tags)
5640 (memq 'agenda org-agenda-show-inherited-tags))
5641 (and (eq org-agenda-show-inherited-tags t)
5642 (or (eq org-agenda-use-tag-inheritance t)
5643 (memq 'agenda org-agenda-use-tag-inheritance))))
5644 tags (org-get-tags-at nil (not inherited-tags))
5645 level (make-string (org-reduced-level (org-outline-level)) ? ))
5646 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5647 (setq head (or (match-string 1) ""))
5648 (setq txt (org-agenda-format-item
5649 (if inactivep org-agenda-inactive-leader nil)
5650 head level category tags timestr
5651 remove-re habitp)))
5652 (setq priority (org-get-priority txt))
5653 (org-add-props txt props 'priority priority
5654 'org-marker marker 'org-hd-marker hdmarker
5655 'date date
5656 'level level
5657 'ts-date
5658 (ignore-errors (org-time-string-to-absolute timestr))
5659 'todo-state todo-state
5660 'warntime warntime
5661 'type "timestamp")
5662 (push txt ee))
5663 (if org-agenda-skip-additional-timestamps-same-entry
5664 (outline-next-heading)
5665 (goto-char end-of-match))))
5666 (nreverse ee)))
5668 (defun org-agenda-get-sexps ()
5669 "Return the sexp information for agenda display."
5670 (require 'diary-lib)
5671 (let* ((props (list 'face 'org-agenda-calendar-sexp
5672 'mouse-face 'highlight
5673 'help-echo
5674 (format "mouse-2 or RET jump to org file %s"
5675 (abbreviate-file-name buffer-file-name))))
5676 (regexp "^&?%%(")
5677 marker category extra level ee txt tags entry
5678 result beg b sexp sexp-entry todo-state warntime inherited-tags)
5679 (goto-char (point-min))
5680 (while (re-search-forward regexp nil t)
5681 (catch :skip
5682 (org-agenda-skip)
5683 (setq beg (match-beginning 0))
5684 (goto-char (1- (match-end 0)))
5685 (setq b (point))
5686 (forward-sexp 1)
5687 (setq sexp (buffer-substring b (point)))
5688 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5689 (org-trim (match-string 1))
5690 ""))
5691 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5692 (when result
5693 (setq marker (org-agenda-new-marker beg)
5694 level (make-string (org-reduced-level (org-outline-level)) ? )
5695 category (org-get-category beg)
5696 inherited-tags
5697 (or (eq org-agenda-show-inherited-tags 'always)
5698 (and (listp org-agenda-show-inherited-tags)
5699 (memq 'agenda org-agenda-show-inherited-tags))
5700 (and (eq org-agenda-show-inherited-tags t)
5701 (or (eq org-agenda-use-tag-inheritance t)
5702 (memq 'agenda org-agenda-use-tag-inheritance))))
5703 tags (org-get-tags-at nil (not inherited-tags))
5704 todo-state (org-get-todo-state)
5705 warntime (get-text-property (point) 'org-appt-warntime)
5706 extra nil)
5708 (dolist (r (if (stringp result)
5709 (list result)
5710 result)) ;; we expect a list here
5711 (when (and org-agenda-diary-sexp-prefix
5712 (string-match org-agenda-diary-sexp-prefix r))
5713 (setq extra (match-string 0 r)
5714 r (replace-match "" nil nil r)))
5715 (if (string-match "\\S-" r)
5716 (setq txt r)
5717 (setq txt "SEXP entry returned empty string"))
5718 (setq txt (org-agenda-format-item extra txt level category tags 'time))
5719 (org-add-props txt props 'org-marker marker
5720 'date date 'todo-state todo-state
5721 'level level 'type "sexp" 'warntime warntime)
5722 (push txt ee)))))
5723 (nreverse ee)))
5725 ;; Calendar sanity: define some functions that are independent of
5726 ;; `calendar-date-style'.
5727 ;; Normally I would like to use ISO format when calling the diary functions,
5728 ;; but to make sure we still have Emacs 22 compatibility we bind
5729 ;; also `european-calendar-style' and use european format
5730 (defun org-anniversary (year month day &optional mark)
5731 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5732 (org-no-warnings
5733 (let ((calendar-date-style 'european) (european-calendar-style t))
5734 (diary-anniversary day month year mark))))
5735 (defun org-cyclic (N year month day &optional mark)
5736 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5737 (org-no-warnings
5738 (let ((calendar-date-style 'european) (european-calendar-style t))
5739 (diary-cyclic N day month year mark))))
5740 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5741 "Like `diary-block', but with fixed (ISO) order of arguments."
5742 (org-no-warnings
5743 (let ((calendar-date-style 'european) (european-calendar-style t))
5744 (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
5745 (defun org-date (year month day &optional mark)
5746 "Like `diary-date', but with fixed (ISO) order of arguments."
5747 (org-no-warnings
5748 (let ((calendar-date-style 'european) (european-calendar-style t))
5749 (diary-date day month year mark))))
5751 ;; Define the `org-class' function
5752 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5753 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5754 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5755 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5756 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5757 `holidays', then any date that is known by the Emacs calendar to be a
5758 holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
5759 then those holidays will be skipped."
5760 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5761 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5762 (d (calendar-absolute-from-gregorian date))
5763 (h (when skip-weeks (calendar-check-holidays date))))
5764 (and
5765 (<= date1 d)
5766 (<= d date2)
5767 (= (calendar-day-of-week date) dayname)
5768 (or (not skip-weeks)
5769 (progn
5770 (require 'cal-iso)
5771 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5772 (not (or (and h (memq 'holidays skip-weeks))
5773 (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
5774 entry)))
5776 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
5777 "Like `org-class', but honor `calendar-date-style'.
5778 The order of the first 2 times 3 arguments depends on the variable
5779 `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
5780 So for American calendars, give this as MONTH DAY YEAR, for European as
5781 DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
5782 DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
5783 is any number of ISO weeks in the block period for which the item should
5784 be skipped.
5786 This function is here only for backward compatibility and it is deprecated,
5787 please use `org-class' instead."
5788 (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
5789 (date2 (org-order-calendar-date-args m2 d2 y2)))
5790 (org-class
5791 (nth 2 date1) (car date1) (nth 1 date1)
5792 (nth 2 date2) (car date2) (nth 1 date2)
5793 dayname skip-weeks)))
5794 (make-obsolete 'org-diary-class 'org-class "")
5796 (defalias 'org-get-closed 'org-agenda-get-progress)
5797 (defun org-agenda-get-progress ()
5798 "Return the logged TODO entries for agenda display."
5799 (let* ((props (list 'mouse-face 'highlight
5800 'org-not-done-regexp org-not-done-regexp
5801 'org-todo-regexp org-todo-regexp
5802 'org-complex-heading-regexp org-complex-heading-regexp
5803 'help-echo
5804 (format "mouse-2 or RET jump to org file %s"
5805 (abbreviate-file-name buffer-file-name))))
5806 (items (if (consp org-agenda-show-log-scoped)
5807 org-agenda-show-log-scoped
5808 (if (eq org-agenda-show-log-scoped 'clockcheck)
5809 '(clock)
5810 org-agenda-log-mode-items)))
5811 (parts
5812 (delq nil
5813 (list
5814 (if (memq 'closed items) (concat "\\<" org-closed-string))
5815 (if (memq 'clock items) (concat "\\<" org-clock-string))
5816 (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
5817 (parts-re (if parts (mapconcat 'identity parts "\\|")
5818 (error "`org-agenda-log-mode-items' is empty")))
5819 (regexp (concat
5820 "\\(" parts-re "\\)"
5821 " *\\["
5822 (regexp-quote
5823 (substring
5824 (format-time-string
5825 (car org-time-stamp-formats)
5826 (apply 'encode-time ; DATE bound by calendar
5827 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5828 1 11))))
5829 (org-agenda-search-headline-for-time nil)
5830 marker hdmarker priority category level tags closedp
5831 statep clockp state ee txt extra timestr rest clocked inherited-tags)
5832 (goto-char (point-min))
5833 (while (re-search-forward regexp nil t)
5834 (catch :skip
5835 (org-agenda-skip)
5836 (setq marker (org-agenda-new-marker (match-beginning 0))
5837 closedp (equal (match-string 1) org-closed-string)
5838 statep (equal (string-to-char (match-string 1)) ?-)
5839 clockp (not (or closedp statep))
5840 state (and statep (match-string 2))
5841 category (org-get-category (match-beginning 0))
5842 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5843 (when (string-match "\\]" timestr)
5844 ;; substring should only run to end of time stamp
5845 (setq rest (substring timestr (match-end 0))
5846 timestr (substring timestr 0 (match-end 0)))
5847 (if (and (not closedp) (not statep)
5848 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5849 rest))
5850 (progn (setq timestr (concat (substring timestr 0 -1)
5851 "-" (match-string 1 rest) "]"))
5852 (setq clocked (match-string 2 rest)))
5853 (setq clocked "-")))
5854 (save-excursion
5855 (setq extra
5856 (cond
5857 ((not org-agenda-log-mode-add-notes) nil)
5858 (statep
5859 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5860 (match-string 1)))
5861 (clockp
5862 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5863 (match-string 1)))))
5864 (if (not (re-search-backward org-outline-regexp-bol nil t))
5865 (throw :skip nil)
5866 (goto-char (match-beginning 0))
5867 (setq hdmarker (org-agenda-new-marker)
5868 inherited-tags
5869 (or (eq org-agenda-show-inherited-tags 'always)
5870 (and (listp org-agenda-show-inherited-tags)
5871 (memq 'todo org-agenda-show-inherited-tags))
5872 (and (eq org-agenda-show-inherited-tags t)
5873 (or (eq org-agenda-use-tag-inheritance t)
5874 (memq 'todo org-agenda-use-tag-inheritance))))
5875 tags (org-get-tags-at nil (not inherited-tags))
5876 level (make-string (org-reduced-level (org-outline-level)) ? ))
5877 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5878 (setq txt (match-string 1))
5879 (when extra
5880 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5881 (setq txt (concat (substring txt 0 (match-beginning 1))
5882 " - " extra " " (match-string 2 txt)))
5883 (setq txt (concat txt " - " extra))))
5884 (setq txt (org-agenda-format-item
5885 (cond
5886 (closedp "Closed: ")
5887 (statep (concat "State: (" state ")"))
5888 (t (concat "Clocked: (" clocked ")")))
5889 txt level category tags timestr)))
5890 (setq priority 100000)
5891 (org-add-props txt props
5892 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5893 'priority priority 'level level
5894 'type "closed" 'date date
5895 'undone-face 'org-warning 'done-face 'org-agenda-done)
5896 (push txt ee))
5897 (goto-char (point-at-eol))))
5898 (nreverse ee)))
5900 (defun org-agenda-show-clocking-issues ()
5901 "Add overlays, showing issues with clocking.
5902 See also the user option `org-agenda-clock-consistency-checks'."
5903 (interactive)
5904 (let* ((org-time-clocksum-use-effort-durations nil)
5905 (pl org-agenda-clock-consistency-checks)
5906 (re (concat "^[ \t]*"
5907 org-clock-string
5908 "[ \t]+"
5909 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5910 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5911 (tlstart 0.)
5912 (tlend 0.)
5913 (maxtime (org-hh:mm-string-to-minutes
5914 (or (plist-get pl :max-duration) "24:00")))
5915 (mintime (org-hh:mm-string-to-minutes
5916 (or (plist-get pl :min-duration) 0)))
5917 (maxgap (org-hh:mm-string-to-minutes
5918 ;; default 30:00 means never complain
5919 (or (plist-get pl :max-gap) "30:00")))
5920 (gapok (mapcar 'org-hh:mm-string-to-minutes
5921 (plist-get pl :gap-ok-around)))
5922 (def-face (or (plist-get pl :default-face)
5923 '((:background "DarkRed") (:foreground "white"))))
5924 issue face m te ts dt ov)
5925 (goto-char (point-min))
5926 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5927 (setq issue nil face def-face)
5928 (catch 'next
5929 (setq m (org-get-at-bol 'org-marker)
5930 te nil ts nil)
5931 (unless (and m (markerp m))
5932 (setq issue "No valid clock line") (throw 'next t))
5933 (org-with-point-at m
5934 (save-excursion
5935 (goto-char (point-at-bol))
5936 (unless (looking-at re)
5937 (error "No valid Clock line")
5938 (throw 'next t))
5939 (unless (match-end 3)
5940 (setq issue "No end time"
5941 face (or (plist-get pl :no-end-time-face) face))
5942 (throw 'next t))
5943 (setq ts (match-string 1)
5944 te (match-string 3)
5945 ts (org-float-time
5946 (apply 'encode-time (org-parse-time-string ts)))
5947 te (org-float-time
5948 (apply 'encode-time (org-parse-time-string te)))
5949 dt (- te ts))))
5950 (cond
5951 ((> dt (* 60 maxtime))
5952 ;; a very long clocking chunk
5953 (setq issue (format "Clocking interval is very long: %s"
5954 (org-minutes-to-clocksum-string
5955 (floor (/ (float dt) 60.))))
5956 face (or (plist-get pl :long-face) face)))
5957 ((< dt (* 60 mintime))
5958 ;; a very short clocking chunk
5959 (setq issue (format "Clocking interval is very short: %s"
5960 (org-minutes-to-clocksum-string
5961 (floor (/ (float dt) 60.))))
5962 face (or (plist-get pl :short-face) face)))
5963 ((and (> tlend 0) (< ts tlend))
5964 ;; Two clock entries are overlapping
5965 (setq issue (format "Clocking overlap: %d minutes"
5966 (/ (- tlend ts) 60))
5967 face (or (plist-get pl :overlap-face) face)))
5968 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5969 ;; There is a gap, lets see if we need to report it
5970 (unless (org-agenda-check-clock-gap tlend ts gapok)
5971 (setq issue (format "Clocking gap: %d minutes"
5972 (/ (- ts tlend) 60))
5973 face (or (plist-get pl :gap-face) face))))
5974 (t nil)))
5975 (setq tlend (or te tlend) tlstart (or ts tlstart))
5976 (when issue
5977 ;; OK, there was some issue, add an overlay to show the issue
5978 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5979 (overlay-put ov 'before-string
5980 (concat
5981 (org-add-props
5982 (format "%-43s" (concat " " issue))
5984 'face face)
5985 "\n"))
5986 (overlay-put ov 'evaporate t)))))
5988 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5989 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5990 (catch 'exit
5991 (unless ok-list
5992 ;; there are no OK times for gaps...
5993 (throw 'exit nil))
5994 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5995 ;; This is more than 24 hours, so it is OK.
5996 ;; because we have at least one OK time, that must be in the
5997 ;; 24 hour interval.
5998 (throw 'exit t))
5999 ;; We have a shorter gap.
6000 ;; Now we have to get the minute of the day when these times are
6001 (let* ((t1dec (decode-time (seconds-to-time t1)))
6002 (t2dec (decode-time (seconds-to-time t2)))
6003 ;; compute the minute on the day
6004 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
6005 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
6006 (when (< min2 min1)
6007 ;; if min2 is smaller than min1, this means it is on the next day.
6008 ;; Wrap it to after midnight.
6009 (setq min2 (+ min2 1440)))
6010 ;; Now check if any of the OK times is in the gap
6011 (mapc (lambda (x)
6012 ;; Wrap the time to after midnight if necessary
6013 (if (< x min1) (setq x (+ x 1440)))
6014 ;; Check if in interval
6015 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
6016 ok-list)
6017 ;; Nope, this gap is not OK
6018 nil)))
6020 (defun org-agenda-get-deadlines (&optional with-hour)
6021 "Return the deadline information for agenda display.
6022 When WITH-HOUR is non-nil, only return deadlines with an hour
6023 specification like [h]h:mm."
6024 (let* ((props (list 'mouse-face 'highlight
6025 'org-not-done-regexp org-not-done-regexp
6026 'org-todo-regexp org-todo-regexp
6027 'org-complex-heading-regexp org-complex-heading-regexp
6028 'help-echo
6029 (format "mouse-2 or RET jump to org file %s"
6030 (abbreviate-file-name buffer-file-name))))
6031 (regexp (if with-hour
6032 org-deadline-time-hour-regexp
6033 org-deadline-time-regexp))
6034 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6035 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6036 (dl0 (car org-agenda-deadline-leaders))
6037 (dl1 (nth 1 org-agenda-deadline-leaders))
6038 (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
6039 d2 diff dfrac wdays pos pos1 category level
6040 tags suppress-prewarning ee txt head face s todo-state
6041 show-all upcomingp donep timestr warntime inherited-tags ts-date)
6042 (goto-char (point-min))
6043 (while (re-search-forward regexp nil t)
6044 (catch :skip
6045 (org-agenda-skip)
6046 (setq s (match-string 1)
6047 txt nil
6048 pos (1- (match-beginning 1))
6049 todo-state (save-match-data (org-get-todo-state))
6050 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6051 (member todo-state
6052 org-agenda-repeating-timestamp-show-all))
6053 d2 (org-time-string-to-absolute
6054 s d1 'past show-all (current-buffer) pos)
6055 diff (- d2 d1))
6056 (setq suppress-prewarning
6057 (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
6058 (let ((item (buffer-substring (point-at-bol)
6059 (point-at-eol))))
6060 (save-match-data
6061 (and (string-match
6062 org-scheduled-time-regexp item)
6063 (match-string 1 item)))))))
6064 (cond
6065 ((not ds) nil)
6066 ;; The current item has a scheduled date (in ds), so
6067 ;; evaluate its prewarning lead time.
6068 ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
6069 ;; Use global prewarning-restart lead time.
6070 org-agenda-skip-deadline-prewarning-if-scheduled)
6071 ((eq org-agenda-skip-deadline-prewarning-if-scheduled
6072 'pre-scheduled)
6073 ;; Set prewarning to no earlier than scheduled.
6074 (min (- d2 (org-time-string-to-absolute
6075 ds d1 'past show-all (current-buffer) pos))
6076 org-deadline-warning-days))
6077 ;; Set prewarning to deadline.
6078 (t 0))))
6079 (setq wdays (if suppress-prewarning
6080 (let ((org-deadline-warning-days suppress-prewarning))
6081 (org-get-wdays s))
6082 (org-get-wdays s))
6083 dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
6084 upcomingp (and todayp (> diff 0)))
6085 ;; When to show a deadline in the calendar:
6086 ;; If the expiration is within wdays warning time.
6087 ;; Past-due deadlines are only shown on the current date
6088 (if (and (or (and (<= diff wdays)
6089 (and todayp (not org-agenda-only-exact-dates)))
6090 (= diff 0)))
6091 (save-excursion
6092 ;; (setq todo-state (org-get-todo-state))
6093 (setq donep (member todo-state org-done-keywords))
6094 (if (and donep
6095 (or org-agenda-skip-deadline-if-done
6096 (not (= diff 0))))
6097 (setq txt nil)
6098 (setq category (org-get-category)
6099 warntime (get-text-property (point) 'org-appt-warntime))
6100 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6101 (throw :skip nil)
6102 (goto-char (match-end 0))
6103 (setq pos1 (match-beginning 0))
6104 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6105 (setq inherited-tags
6106 (or (eq org-agenda-show-inherited-tags 'always)
6107 (and (listp org-agenda-show-inherited-tags)
6108 (memq 'agenda org-agenda-show-inherited-tags))
6109 (and (eq org-agenda-show-inherited-tags t)
6110 (or (eq org-agenda-use-tag-inheritance t)
6111 (memq 'agenda org-agenda-use-tag-inheritance))))
6112 tags (org-get-tags-at pos1 (not inherited-tags)))
6113 (setq head (buffer-substring
6114 (point)
6115 (progn (skip-chars-forward "^\r\n")
6116 (point))))
6117 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6118 (setq timestr
6119 (concat (substring s (match-beginning 1)) " "))
6120 (setq timestr 'time))
6121 (setq txt (org-agenda-format-item
6122 (cond ((= diff 0) dl0)
6123 ((> diff 0)
6124 (if (functionp dl1)
6125 (funcall dl1 diff date)
6126 (format dl1 diff)))
6128 (if (functionp dl2)
6129 (funcall dl2 diff date)
6130 (format dl2 (if (string= dl2 dl1)
6131 diff (abs diff))))))
6132 head level category tags
6133 (if (not (= diff 0)) nil timestr)))))
6134 (when txt
6135 (setq face (org-agenda-deadline-face dfrac))
6136 (org-add-props txt props
6137 'org-marker (org-agenda-new-marker pos)
6138 'warntime warntime
6139 'level level
6140 'ts-date d2
6141 'org-hd-marker (org-agenda-new-marker pos1)
6142 'priority (+ (- diff)
6143 (org-get-priority txt))
6144 'todo-state todo-state
6145 'type (if upcomingp "upcoming-deadline" "deadline")
6146 'date (if upcomingp date d2)
6147 'face (if donep 'org-agenda-done face)
6148 'undone-face face 'done-face 'org-agenda-done)
6149 (push txt ee))))))
6150 (nreverse ee)))
6152 (defun org-agenda-deadline-face (fraction)
6153 "Return the face to displaying a deadline item.
6154 FRACTION is what fraction of the head-warning time has passed."
6155 (let ((faces org-agenda-deadline-faces) f)
6156 (catch 'exit
6157 (while (setq f (pop faces))
6158 (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
6160 (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
6161 "Return the scheduled information for agenda display.
6162 When WITH-HOUR is non-nil, only return scheduled items with
6163 an hour specification like [h]h:mm."
6164 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
6165 'org-todo-regexp org-todo-regexp
6166 'org-complex-heading-regexp org-complex-heading-regexp
6167 'done-face 'org-agenda-done
6168 'mouse-face 'highlight
6169 'help-echo
6170 (format "mouse-2 or RET jump to org file %s"
6171 (abbreviate-file-name buffer-file-name))))
6172 (regexp (if with-hour
6173 org-scheduled-time-hour-regexp
6174 org-scheduled-time-regexp))
6175 (todayp (org-agenda-todayp date)) ; DATE bound by calendar
6176 (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
6178 (deadline-position-alist
6179 (mapcar (lambda (a) (and (setq mm (get-text-property
6180 0 'org-hd-marker a))
6181 (cons (marker-position mm) a)))
6182 deadline-results))
6183 d2 diff pos pos1 category level tags donep
6184 ee txt head pastschedp todo-state face timestr s habitp show-all
6185 did-habit-check-p warntime inherited-tags ts-date suppress-delay
6186 ddays)
6187 (goto-char (point-min))
6188 (while (re-search-forward regexp nil t)
6189 (catch :skip
6190 (org-agenda-skip)
6191 (setq s (match-string 1)
6192 txt nil
6193 pos (1- (match-beginning 1))
6194 todo-state (save-match-data (org-get-todo-state))
6195 show-all (or (eq org-agenda-repeating-timestamp-show-all t)
6196 (member todo-state
6197 org-agenda-repeating-timestamp-show-all))
6198 d2 (org-time-string-to-absolute
6199 s d1 'past show-all (current-buffer) pos)
6200 diff (- d2 d1)
6201 warntime (get-text-property (point) 'org-appt-warntime))
6202 (setq pastschedp (and todayp (< diff 0)))
6203 (setq did-habit-check-p nil)
6204 (setq suppress-delay
6205 (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
6206 (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
6207 (save-match-data
6208 (and (string-match
6209 org-deadline-time-regexp item)
6210 (match-string 1 item)))))))
6211 (cond
6212 ((not ds) nil)
6213 ;; The current item has a deadline date (in ds), so
6214 ;; evaluate its delay time.
6215 ((integerp org-agenda-skip-scheduled-delay-if-deadline)
6216 ;; Use global delay time.
6217 (- org-agenda-skip-scheduled-delay-if-deadline))
6218 ((eq org-agenda-skip-scheduled-delay-if-deadline
6219 'post-deadline)
6220 ;; Set delay to no later than deadline.
6221 (min (- d2 (org-time-string-to-absolute
6222 ds d1 'past show-all (current-buffer) pos))
6223 org-scheduled-delay-days))
6224 (t 0))))
6225 (setq ddays (if suppress-delay
6226 (let ((org-scheduled-delay-days suppress-delay))
6227 (org-get-wdays s t t))
6228 (org-get-wdays s t)))
6229 ;; Use a delay of 0 when there is a repeater and the delay is
6230 ;; of the form --3d
6231 (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
6232 (< (org-time-string-to-absolute s)
6233 (org-time-string-to-absolute
6234 s d2 'past nil (current-buffer) pos)))
6235 (setq ddays 0))
6236 ;; When to show a scheduled item in the calendar:
6237 ;; If it is on or past the date.
6238 (when (or (and (> ddays 0) (= diff (- ddays)))
6239 (and (zerop ddays) (= diff 0))
6240 (and (< (+ diff ddays) 0)
6241 (< (abs diff) org-scheduled-past-days)
6242 (and todayp (not org-agenda-only-exact-dates)))
6243 ;; org-is-habit-p uses org-entry-get, which is expansive
6244 ;; so we go extra mile to only call it once
6245 (and todayp
6246 (boundp 'org-habit-show-all-today)
6247 org-habit-show-all-today
6248 (setq did-habit-check-p t)
6249 (setq habitp (and (functionp 'org-is-habit-p)
6250 (org-is-habit-p)))))
6251 (save-excursion
6252 (setq donep (member todo-state org-done-keywords))
6253 (if (and donep
6254 (or org-agenda-skip-scheduled-if-done
6255 (not (= diff 0))
6256 (and (functionp 'org-is-habit-p)
6257 (org-is-habit-p))))
6258 (setq txt nil)
6259 (setq habitp (if did-habit-check-p habitp
6260 (and (functionp 'org-is-habit-p)
6261 (org-is-habit-p))))
6262 (setq category (org-get-category))
6263 (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
6264 'repeated-after-deadline)
6265 (org-get-deadline-time (point))
6266 (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
6267 (throw :skip nil))
6268 (if (not (re-search-backward "^\\*+[ \t]+" nil t))
6269 (throw :skip nil)
6270 (goto-char (match-end 0))
6271 (setq pos1 (match-beginning 0))
6272 (if habitp
6273 (if (or (not org-habit-show-habits)
6274 (and (not todayp)
6275 (boundp 'org-habit-show-habits-only-for-today)
6276 org-habit-show-habits-only-for-today))
6277 (throw :skip nil))
6278 (if (and
6279 (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
6280 (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
6281 pastschedp))
6282 (setq mm (assoc pos1 deadline-position-alist)))
6283 (throw :skip nil)))
6284 (setq inherited-tags
6285 (or (eq org-agenda-show-inherited-tags 'always)
6286 (and (listp org-agenda-show-inherited-tags)
6287 (memq 'agenda org-agenda-show-inherited-tags))
6288 (and (eq org-agenda-show-inherited-tags t)
6289 (or (eq org-agenda-use-tag-inheritance t)
6290 (memq 'agenda org-agenda-use-tag-inheritance))))
6292 tags (org-get-tags-at nil (not inherited-tags)))
6293 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6294 (setq head (buffer-substring
6295 (point)
6296 (progn (skip-chars-forward "^\r\n") (point))))
6297 (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6298 (setq timestr
6299 (concat (substring s (match-beginning 1)) " "))
6300 (setq timestr 'time))
6301 (setq txt (org-agenda-format-item
6302 (if (= diff 0)
6303 (car org-agenda-scheduled-leaders)
6304 (format (nth 1 org-agenda-scheduled-leaders)
6305 (- 1 diff)))
6306 head level category tags
6307 (if (not (= diff 0)) nil timestr)
6308 nil habitp))))
6309 (when txt
6310 (setq face
6311 (cond
6312 ((and (not habitp) pastschedp)
6313 'org-scheduled-previously)
6314 (todayp 'org-scheduled-today)
6315 (t 'org-scheduled))
6316 habitp (and habitp (org-habit-parse-todo)))
6317 (org-add-props txt props
6318 'undone-face face
6319 'face (if donep 'org-agenda-done face)
6320 'org-marker (org-agenda-new-marker pos)
6321 'org-hd-marker (org-agenda-new-marker pos1)
6322 'type (if pastschedp "past-scheduled" "scheduled")
6323 'date (if pastschedp d2 date)
6324 'ts-date d2
6325 'warntime warntime
6326 'level level
6327 'priority (if habitp
6328 (org-habit-get-priority habitp)
6329 (+ 94 (- 5 diff) (org-get-priority txt)))
6330 'org-habit-p habitp
6331 'todo-state todo-state)
6332 (push txt ee))))))
6333 (nreverse ee)))
6335 (defun org-agenda-get-blocks ()
6336 "Return the date-range information for agenda display."
6337 (let* ((props (list 'face nil
6338 'org-not-done-regexp org-not-done-regexp
6339 'org-todo-regexp org-todo-regexp
6340 'org-complex-heading-regexp org-complex-heading-regexp
6341 'mouse-face 'highlight
6342 'help-echo
6343 (format "mouse-2 or RET jump to org file %s"
6344 (abbreviate-file-name buffer-file-name))))
6345 (regexp org-tr-regexp)
6346 (d0 (calendar-absolute-from-gregorian date))
6347 marker hdmarker ee txt d1 d2 s1 s2 category
6348 level todo-state tags pos head donep inherited-tags)
6349 (goto-char (point-min))
6350 (while (re-search-forward regexp nil t)
6351 (catch :skip
6352 (org-agenda-skip)
6353 (setq pos (point))
6354 (let ((start-time (match-string 1))
6355 (end-time (match-string 2)))
6356 (setq s1 (match-string 1)
6357 s2 (match-string 2)
6358 d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
6359 d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
6360 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
6361 ;; Only allow days between the limits, because the normal
6362 ;; date stamps will catch the limits.
6363 (save-excursion
6364 (setq todo-state (org-get-todo-state))
6365 (setq donep (member todo-state org-done-keywords))
6366 (if (and donep org-agenda-skip-timestamp-if-done)
6367 (throw :skip t))
6368 (setq marker (org-agenda-new-marker (point))
6369 category (org-get-category))
6370 (if (not (re-search-backward org-outline-regexp-bol nil t))
6371 (throw :skip nil)
6372 (goto-char (match-beginning 0))
6373 (setq hdmarker (org-agenda-new-marker (point))
6374 inherited-tags
6375 (or (eq org-agenda-show-inherited-tags 'always)
6376 (and (listp org-agenda-show-inherited-tags)
6377 (memq 'agenda org-agenda-show-inherited-tags))
6378 (and (eq org-agenda-show-inherited-tags t)
6379 (or (eq org-agenda-use-tag-inheritance t)
6380 (memq 'agenda org-agenda-use-tag-inheritance))))
6382 tags (org-get-tags-at nil (not inherited-tags)))
6383 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6384 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
6385 (setq head (match-string 1))
6386 (let ((remove-re
6387 (if org-agenda-remove-timeranges-from-blocks
6388 (concat
6389 "<" (regexp-quote s1) ".*?>"
6390 "--"
6391 "<" (regexp-quote s2) ".*?>")
6392 nil)))
6393 (setq txt (org-agenda-format-item
6394 (format
6395 (nth (if (= d1 d2) 0 1)
6396 org-agenda-timerange-leaders)
6397 (1+ (- d0 d1)) (1+ (- d2 d1)))
6398 head level category tags
6399 (cond ((and (= d1 d0) (= d2 d0))
6400 (concat "<" start-time ">--<" end-time ">"))
6401 ((= d1 d0)
6402 (concat "<" start-time ">"))
6403 ((= d2 d0)
6404 (concat "<" end-time ">")))
6405 remove-re))))
6406 (org-add-props txt props
6407 'org-marker marker 'org-hd-marker hdmarker
6408 'type "block" 'date date
6409 'level level
6410 'todo-state todo-state
6411 'priority (org-get-priority txt))
6412 (push txt ee))))
6413 (goto-char pos)))
6414 ;; Sort the entries by expiration date.
6415 (nreverse ee)))
6417 ;;; Agenda presentation and sorting
6419 (defvar org-prefix-has-time nil
6420 "A flag, set by `org-compile-prefix-format'.
6421 The flag is set if the currently compiled format contains a `%t'.")
6422 (defvar org-prefix-has-tag nil
6423 "A flag, set by `org-compile-prefix-format'.
6424 The flag is set if the currently compiled format contains a `%T'.")
6425 (defvar org-prefix-has-effort nil
6426 "A flag, set by `org-compile-prefix-format'.
6427 The flag is set if the currently compiled format contains a `%e'.")
6428 (defvar org-prefix-has-breadcrumbs nil
6429 "A flag, set by `org-compile-prefix-format'.
6430 The flag is set if the currently compiled format contains a `%b'.")
6431 (defvar org-prefix-category-length nil
6432 "Used by `org-compile-prefix-format' to remember the category field width.")
6433 (defvar org-prefix-category-max-length nil
6434 "Used by `org-compile-prefix-format' to remember the category field width.")
6436 (defun org-agenda-get-category-icon (category)
6437 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
6438 (dolist (entry org-agenda-category-icon-alist)
6439 (when (org-string-match-p (car entry) category)
6440 (if (listp (cadr entry))
6441 (return (cadr entry))
6442 (return (apply 'create-image (cdr entry)))))))
6444 (defun org-agenda-format-item (extra txt &optional level category tags dotime
6445 remove-re habitp)
6446 "Format TXT to be inserted into the agenda buffer.
6447 In particular, add the prefix and corresponding text properties.
6449 EXTRA must be a string to replace the `%s' specifier in the prefix format.
6450 LEVEL may be a string to replace the `%l' specifier.
6451 CATEGORY (a string, a symbol or nil) may be used to overrule the default
6452 category taken from local variable or file name. It will replace the `%c'
6453 specifier in the format.
6454 DOTIME, when non-nil, indicates that a time-of-day should be extracted from
6455 TXT for sorting of this entry, and for the `%t' specifier in the format.
6456 When DOTIME is a string, this string is searched for a time before TXT is.
6457 TAGS can be the tags of the headline.
6458 Any match of REMOVE-RE will be removed from TXT."
6459 ;; We keep the org-prefix-* variable values along with a compiled
6460 ;; formatter, so that multiple agendas existing at the same time do
6461 ;; not step on each other toes.
6463 ;; It was inconvenient to make these variables buffer local in
6464 ;; Agenda buffers, because this function expects to be called with
6465 ;; the buffer where item comes from being current, and not agenda
6466 ;; buffer
6467 (let* ((bindings (car org-prefix-format-compiled))
6468 (formatter (cadr org-prefix-format-compiled)))
6469 (loop for (var value) in bindings
6470 do (set var value))
6471 (save-match-data
6472 ;; Diary entries sometimes have extra whitespace at the beginning
6473 (setq txt (org-trim txt))
6475 ;; Fix the tags part in txt
6476 (setq txt (org-agenda-fix-displayed-tags
6477 txt tags
6478 org-agenda-show-inherited-tags
6479 org-agenda-hide-tags-regexp))
6481 (let* ((category (or category
6482 (if buffer-file-name
6483 (file-name-sans-extension
6484 (file-name-nondirectory buffer-file-name))
6485 "")))
6486 (category-icon (org-agenda-get-category-icon category))
6487 (category-icon (if category-icon
6488 (propertize " " 'display category-icon)
6489 ""))
6490 (effort (and (not (string= txt ""))
6491 (get-text-property 1 'effort txt)))
6492 ;; time, tag, effort are needed for the eval of the prefix format
6493 (tag (if tags (nth (1- (length tags)) tags) ""))
6494 time
6495 (ts (if dotime (concat
6496 (if (stringp dotime) dotime "")
6497 (and org-agenda-search-headline-for-time txt))))
6498 (time-of-day (and dotime (org-get-time-of-day ts)))
6499 stamp plain s0 s1 s2 rtn srp l
6500 duration breadcrumbs)
6501 (and (derived-mode-p 'org-mode) buffer-file-name
6502 (add-to-list 'org-agenda-contributing-files buffer-file-name))
6503 (when (and dotime time-of-day)
6504 ;; Extract starting and ending time and move them to prefix
6505 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
6506 (setq plain (string-match org-plain-time-of-day-regexp ts)))
6507 (setq s0 (match-string 0 ts)
6508 srp (and stamp (match-end 3))
6509 s1 (match-string (if plain 1 2) ts)
6510 s2 (match-string (if plain 8 (if srp 4 6)) ts))
6512 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
6513 ;; them, we might want to remove them there to avoid duplication.
6514 ;; The user can turn this off with a variable.
6515 (if (and org-prefix-has-time
6516 org-agenda-remove-times-when-in-prefix (or stamp plain)
6517 (string-match (concat (regexp-quote s0) " *") txt)
6518 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
6519 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
6520 (= (match-beginning 0) 0)
6522 (setq txt (replace-match "" nil nil txt))))
6523 ;; Normalize the time(s) to 24 hour
6524 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
6525 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
6527 ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
6528 (let (org-time-clocksum-use-effort-durations)
6529 (when (and s1 (not s2) org-agenda-default-appointment-duration)
6530 (setq s2
6531 (org-minutes-to-clocksum-string
6532 (+ (org-hh:mm-string-to-minutes s1)
6533 org-agenda-default-appointment-duration)))))
6535 ;; Compute the duration
6536 (when s2
6537 (setq duration (- (org-hh:mm-string-to-minutes s2)
6538 (org-hh:mm-string-to-minutes s1)))))
6540 (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
6541 txt)
6542 ;; Tags are in the string
6543 (if (or (eq org-agenda-remove-tags t)
6544 (and org-agenda-remove-tags
6545 org-prefix-has-tag))
6546 (setq txt (replace-match "" t t txt))
6547 (setq txt (replace-match
6548 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
6549 (match-string 2 txt))
6550 t t txt))))
6552 (when remove-re
6553 (while (string-match remove-re txt)
6554 (setq txt (replace-match "" t t txt))))
6556 ;; Set org-heading property on `txt' to mark the start of the
6557 ;; heading.
6558 (add-text-properties 0 (length txt) '(org-heading t) txt)
6560 ;; Prepare the variables needed in the eval of the compiled format
6561 (if org-prefix-has-breadcrumbs
6562 (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
6563 (let ((s (org-display-outline-path nil nil "->" t)))
6564 (if (eq "" s) "" (concat s "->"))))))
6565 (setq time (cond (s2 (concat
6566 (org-agenda-time-of-day-to-ampm-maybe s1)
6567 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
6568 (if org-agenda-timegrid-use-ampm " ")))
6569 (s1 (concat
6570 (org-agenda-time-of-day-to-ampm-maybe s1)
6571 (if org-agenda-timegrid-use-ampm
6572 "........ "
6573 "......")))
6574 (t ""))
6575 extra (or (and (not habitp) extra) "")
6576 category (if (symbolp category) (symbol-name category) category)
6577 level (or level ""))
6578 (if (string-match org-bracket-link-regexp category)
6579 (progn
6580 (setq l (if (match-end 3)
6581 (- (match-end 3) (match-beginning 3))
6582 (- (match-end 1) (match-beginning 1))))
6583 (when (< l (or org-prefix-category-length 0))
6584 (setq category (copy-sequence category))
6585 (org-add-props category nil
6586 'extra-space (make-string
6587 (- org-prefix-category-length l 1) ?\ ))))
6588 (if (and org-prefix-category-max-length
6589 (>= (length category) org-prefix-category-max-length))
6590 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
6591 ;; Evaluate the compiled format
6592 (setq rtn (concat (eval formatter) txt))
6594 ;; And finally add the text properties
6595 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
6596 (org-add-props rtn nil
6597 'org-category category
6598 'tags (mapcar 'org-downcase-keep-props tags)
6599 'org-highest-priority org-highest-priority
6600 'org-lowest-priority org-lowest-priority
6601 'time-of-day time-of-day
6602 'duration duration
6603 'breadcrumbs breadcrumbs
6604 'txt txt
6605 'level level
6606 'time time
6607 'extra extra
6608 'format org-prefix-format-compiled
6609 'dotime dotime)))))
6611 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
6612 "Remove tags string from TXT, and add a modified list of tags.
6613 The modified list may contain inherited tags, and tags matched by
6614 `org-agenda-hide-tags-regexp' will be removed."
6615 (when (or add-inherited hide-re)
6616 (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
6617 (setq txt (substring txt 0 (match-beginning 0))))
6618 (setq tags
6619 (delq nil
6620 (mapcar (lambda (tg)
6621 (if (or (and hide-re (string-match hide-re tg))
6622 (and (not add-inherited)
6623 (get-text-property 0 'inherited tg)))
6625 tg))
6626 tags)))
6627 (when tags
6628 (let ((have-i (get-text-property 0 'inherited (car tags)))
6630 (setq txt (concat txt " :"
6631 (mapconcat
6632 (lambda (x)
6633 (setq i (get-text-property 0 'inherited x))
6634 (if (and have-i (not i))
6635 (progn
6636 (setq have-i nil)
6637 (concat ":" x))
6639 tags ":")
6640 (if have-i "::" ":"))))))
6641 txt)
6643 (defun org-downcase-keep-props (s)
6644 (let ((props (text-properties-at 0 s)))
6645 (setq s (downcase s))
6646 (add-text-properties 0 (length s) props s)
6649 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
6651 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
6652 "Add a time-grid for agenda items which need it.
6654 LIST is the list of agenda items formatted by `org-agenda-list'.
6655 NDAYS is the span of the current agenda view.
6656 TODAYP is t when the current agenda view is on today."
6657 (catch 'exit
6658 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
6659 ((and todayp (member 'today (car org-agenda-time-grid))))
6660 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
6661 ((member 'weekly (car org-agenda-time-grid)))
6662 (t (throw 'exit list)))
6663 (let* ((have (delq nil (mapcar
6664 (lambda (x) (get-text-property 1 'time-of-day x))
6665 list)))
6666 (string (nth 1 org-agenda-time-grid))
6667 (gridtimes (nth 2 org-agenda-time-grid))
6668 (req (car org-agenda-time-grid))
6669 (remove (member 'remove-match req))
6670 new time)
6671 (if (and (member 'require-timed req) (not have))
6672 ;; don't show empty grid
6673 (throw 'exit list))
6674 (while (setq time (pop gridtimes))
6675 (unless (and remove (member time have))
6676 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
6677 (push (org-agenda-format-item
6678 nil string nil "" nil
6679 (concat (substring time 0 -2) ":" (substring time -2)))
6680 new)
6681 (put-text-property
6682 2 (length (car new)) 'face 'org-time-grid (car new))))
6683 (when (and todayp org-agenda-show-current-time-in-grid)
6684 (push (org-agenda-format-item
6685 nil org-agenda-current-time-string nil "" nil
6686 (format-time-string "%H:%M "))
6687 new)
6688 (put-text-property
6689 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6691 (if (member 'time-up org-agenda-sorting-strategy-selected)
6692 (append new list)
6693 (append list new)))))
6695 (defun org-compile-prefix-format (key)
6696 "Compile the prefix format into a Lisp form that can be evaluated.
6697 The resulting form and associated variable bindings is returned
6698 and stored in the variable `org-prefix-format-compiled'."
6699 (setq org-prefix-has-time nil
6700 org-prefix-has-tag nil
6701 org-prefix-category-length nil
6702 org-prefix-has-effort nil
6703 org-prefix-has-breadcrumbs nil)
6704 (let ((s (cond
6705 ((stringp org-agenda-prefix-format)
6706 org-agenda-prefix-format)
6707 ((assq key org-agenda-prefix-format)
6708 (cdr (assq key org-agenda-prefix-format)))
6709 (t " %-12:c%?-12t% s")))
6710 (start 0)
6711 varform vars var e c f opt)
6712 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
6713 s start)
6714 (setq var (or (cdr (assoc (match-string 4 s)
6715 '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
6716 ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
6717 'eval)
6718 c (or (match-string 3 s) "")
6719 opt (match-beginning 1)
6720 start (1+ (match-beginning 0)))
6721 (if (equal var 'time) (setq org-prefix-has-time t))
6722 (if (equal var 'tag) (setq org-prefix-has-tag t))
6723 (if (equal var 'effort) (setq org-prefix-has-effort t))
6724 (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
6725 (setq f (concat "%" (match-string 2 s) "s"))
6726 (when (equal var 'category)
6727 (setq org-prefix-category-length
6728 (floor (abs (string-to-number (match-string 2 s)))))
6729 (setq org-prefix-category-max-length
6730 (let ((x (match-string 2 s)))
6731 (save-match-data
6732 (if (string-match "\\.[0-9]+" x)
6733 (string-to-number (substring (match-string 0 x) 1)))))))
6734 (if (eq var 'eval)
6735 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6736 (if opt
6737 (setq varform
6738 `(if (or (equal "" ,var) (equal nil ,var))
6740 (format ,f (concat ,var ,c))))
6741 (setq varform
6742 `(format ,f (if (or (equal ,var "")
6743 (equal ,var nil)) ""
6744 (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6745 (setq s (replace-match "%s" t nil s))
6746 (push varform vars))
6747 (setq vars (nreverse vars))
6748 (with-current-buffer (or org-agenda-buffer (current-buffer))
6749 (setq org-prefix-format-compiled
6750 (list
6751 `((org-prefix-has-time ,org-prefix-has-time)
6752 (org-prefix-has-tag ,org-prefix-has-tag)
6753 (org-prefix-category-length ,org-prefix-category-length)
6754 (org-prefix-has-effort ,org-prefix-has-effort)
6755 (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
6756 `(format ,s ,@vars))))))
6758 (defun org-set-sorting-strategy (key)
6759 (if (symbolp (car org-agenda-sorting-strategy))
6760 ;; the old format
6761 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6762 (setq org-agenda-sorting-strategy-selected
6763 (or (cdr (assq key org-agenda-sorting-strategy))
6764 (cdr (assq 'agenda org-agenda-sorting-strategy))
6765 '(time-up category-keep priority-down)))))
6767 (defun org-get-time-of-day (s &optional string mod24)
6768 "Check string S for a time of day.
6769 If found, return it as a military time number between 0 and 2400.
6770 If not found, return nil.
6771 The optional STRING argument forces conversion into a 5 character wide string
6772 HH:MM."
6773 (save-match-data
6774 (when
6775 (and
6776 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6777 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6778 (not (eq (get-text-property 1 'face s) 'org-link)))
6779 (let* ((h (string-to-number (match-string 1 s)))
6780 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6781 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6782 (am-p (equal ampm "am"))
6783 (h1 (cond ((not ampm) h)
6784 ((= h 12) (if am-p 0 12))
6785 (t (+ h (if am-p 0 12)))))
6786 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6787 (mod h1 24) h1))
6788 (t0 (+ (* 100 h2) m))
6789 (t1 (concat (if (>= h1 24) "+" " ")
6790 (if (and org-agenda-time-leading-zero
6791 (< t0 1000)) "0" "")
6792 (if (< t0 100) "0" "")
6793 (if (< t0 10) "0" "")
6794 (int-to-string t0))))
6795 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6797 (defvar org-agenda-before-sorting-filter-function nil
6798 "Function to be applied to agenda items prior to sorting.
6799 Prior to sorting also means just before they are inserted into the agenda.
6801 To aid sorting, you may revisit the original entries and add more text
6802 properties which will later be used by the sorting functions.
6804 The function should take a string argument, an agenda line.
6805 It has access to the text properties in that line, which contain among
6806 other things, the property `org-hd-marker' that points to the entry
6807 where the line comes from. Note that not all lines going into the agenda
6808 have this property, only most.
6810 The function should return the modified string. It is probably best
6811 to ONLY change text properties.
6813 You can also use this function as a filter, by returning nil for lines
6814 you don't want to have in the agenda at all. For this application, you
6815 could bind the variable in the options section of a custom command.")
6817 (defun org-agenda-finalize-entries (list &optional type)
6818 "Sort, limit and concatenate the LIST of agenda items.
6819 The optional argument TYPE tells the agenda type."
6820 (let ((max-effort (cond ((listp org-agenda-max-effort)
6821 (cdr (assoc type org-agenda-max-effort)))
6822 (t org-agenda-max-effort)))
6823 (max-todo (cond ((listp org-agenda-max-todos)
6824 (cdr (assoc type org-agenda-max-todos)))
6825 (t org-agenda-max-todos)))
6826 (max-tags (cond ((listp org-agenda-max-tags)
6827 (cdr (assoc type org-agenda-max-tags)))
6828 (t org-agenda-max-tags)))
6829 (max-entries (cond ((listp org-agenda-max-entries)
6830 (cdr (assoc type org-agenda-max-entries)))
6831 (t org-agenda-max-entries))))
6832 (when org-agenda-before-sorting-filter-function
6833 (setq list
6834 (delq nil
6835 (mapcar
6836 org-agenda-before-sorting-filter-function list))))
6837 (setq list (mapcar 'org-agenda-highlight-todo list)
6838 list (mapcar 'identity (sort list 'org-entries-lessp)))
6839 (when max-effort
6840 (setq list (org-agenda-limit-entries
6841 list 'effort-minutes max-effort
6842 (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
6843 32767 -1))))))
6844 (when max-todo
6845 (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
6846 (when max-tags
6847 (setq list (org-agenda-limit-entries list 'tags max-tags)))
6848 (when max-entries
6849 (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
6850 (mapconcat 'identity list "\n")))
6852 (defun org-agenda-limit-entries (list prop limit &optional fn)
6853 "Limit the number of agenda entries."
6854 (let ((include (and limit (< limit 0))))
6855 (if limit
6856 (let ((fun (or fn (lambda (p) (if p 1))))
6857 (lim 0))
6858 (delq nil
6859 (mapcar
6860 (lambda (e)
6861 (let ((pval (funcall
6862 fun (get-text-property (1- (length e))
6863 prop e))))
6864 (if pval (setq lim (+ lim pval)))
6865 (cond ((and pval (<= lim (abs limit))) e)
6866 ((and include (not pval)) e))))
6867 list)))
6868 list)))
6870 (defun org-agenda-limit-interactively (remove)
6871 "In agenda, interactively limit entries to various maximums."
6872 (interactive "P")
6873 (if remove
6874 (progn (setq org-agenda-max-entries nil
6875 org-agenda-max-todos nil
6876 org-agenda-max-tags nil
6877 org-agenda-max-effort nil)
6878 (org-agenda-redo))
6879 (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
6880 (msg (cond ((= max ?E) "How many minutes? ")
6881 ((= max ?e) "How many entries? ")
6882 ((= max ?t) "How many TODO entries? ")
6883 ((= max ?T) "How many tagged entries? ")
6884 (t (user-error "Wrong input"))))
6885 (num (string-to-number (read-from-minibuffer msg))))
6886 (cond ((equal max ?e)
6887 (let ((org-agenda-max-entries num)) (org-agenda-redo)))
6888 ((equal max ?t)
6889 (let ((org-agenda-max-todos num)) (org-agenda-redo)))
6890 ((equal max ?T)
6891 (let ((org-agenda-max-tags num)) (org-agenda-redo)))
6892 ((equal max ?E)
6893 (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
6894 (org-agenda-fit-window-to-buffer))
6896 (defun org-agenda-highlight-todo (x)
6897 (let ((org-done-keywords org-done-keywords-for-agenda)
6898 (case-fold-search nil)
6900 (if (eq x 'line)
6901 (save-excursion
6902 (beginning-of-line 1)
6903 (setq re (org-get-at-bol 'org-todo-regexp))
6904 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6905 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6906 (add-text-properties (match-beginning 0) (match-end 1)
6907 (list 'face (org-get-todo-face 1)))
6908 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6909 (delete-region (match-beginning 1) (1- (match-end 0)))
6910 (goto-char (match-beginning 1))
6911 (insert (format org-agenda-todo-keyword-format s)))))
6912 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6913 (setq re (get-text-property 0 'org-todo-regexp x))
6914 (when (and re
6915 ;; Test `pl' because if there's no heading content,
6916 ;; there's no point matching to highlight. Note
6917 ;; that if we didn't test `pl' first, and there
6918 ;; happened to be no keyword from `org-todo-regexp'
6919 ;; on this heading line, then the `equal' comparison
6920 ;; afterwards would spuriously succeed in the case
6921 ;; where `pl' is nil -- causing an args-out-of-range
6922 ;; error when we try to add text properties to text
6923 ;; that isn't there.
6925 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6926 x pl) pl))
6927 (add-text-properties
6928 (or (match-end 1) (match-end 0)) (match-end 0)
6929 (list 'face (org-get-todo-face (match-string 2 x)))
6931 (when (match-end 1)
6932 (setq x (concat (substring x 0 (match-end 1))
6933 (format org-agenda-todo-keyword-format
6934 (match-string 2 x))
6935 (org-add-props " " (text-properties-at 0 x))
6936 (substring x (match-end 3)))))))
6937 x)))
6939 (defsubst org-cmp-values (a b property)
6940 "Compare the numeric value of text PROPERTY for string A and B."
6941 (let ((pa (or (get-text-property (1- (length a)) property a) 0))
6942 (pb (or (get-text-property (1- (length b)) property b) 0)))
6943 (cond ((> pa pb) +1)
6944 ((< pa pb) -1))))
6946 (defsubst org-cmp-effort (a b)
6947 "Compare the effort values of string A and B."
6948 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6949 (ea (or (get-text-property (1- (length a)) 'effort-minutes a) def))
6950 (eb (or (get-text-property (1- (length b)) 'effort-minutes b) def)))
6951 (cond ((> ea eb) +1)
6952 ((< ea eb) -1))))
6954 (defsubst org-cmp-category (a b)
6955 "Compare the string values of categories of strings A and B."
6956 (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
6957 (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
6958 (cond ((string-lessp ca cb) -1)
6959 ((string-lessp cb ca) +1))))
6961 (defsubst org-cmp-todo-state (a b)
6962 "Compare the todo states of strings A and B."
6963 (let* ((ma (or (get-text-property 1 'org-marker a)
6964 (get-text-property 1 'org-hd-marker a)))
6965 (mb (or (get-text-property 1 'org-marker b)
6966 (get-text-property 1 'org-hd-marker b)))
6967 (fa (and ma (marker-buffer ma)))
6968 (fb (and mb (marker-buffer mb)))
6969 (todo-kwds
6970 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6971 (and fb (with-current-buffer fb org-todo-keywords-1))))
6972 (ta (or (get-text-property 1 'todo-state a) ""))
6973 (tb (or (get-text-property 1 'todo-state b) ""))
6974 (la (- (length (member ta todo-kwds))))
6975 (lb (- (length (member tb todo-kwds))))
6976 (donepa (member ta org-done-keywords-for-agenda))
6977 (donepb (member tb org-done-keywords-for-agenda)))
6978 (cond ((and donepa (not donepb)) -1)
6979 ((and (not donepa) donepb) +1)
6980 ((< la lb) -1)
6981 ((< lb la) +1))))
6983 (defsubst org-cmp-alpha (a b)
6984 "Compare the headlines, alphabetically."
6985 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6986 (plb (text-property-any 0 (length b) 'org-heading t b))
6987 (ta (and pla (substring a pla)))
6988 (tb (and plb (substring b plb))))
6989 (when pla
6990 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6991 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6992 (setq ta (substring ta (match-end 0))))
6993 (setq ta (downcase ta)))
6994 (when plb
6995 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6996 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6997 (setq tb (substring tb (match-end 0))))
6998 (setq tb (downcase tb)))
6999 (cond ((not ta) +1)
7000 ((not tb) -1)
7001 ((string-lessp ta tb) -1)
7002 ((string-lessp tb ta) +1))))
7004 (defsubst org-cmp-tag (a b)
7005 "Compare the string values of the first tags of A and B."
7006 (let ((ta (car (last (get-text-property 1 'tags a))))
7007 (tb (car (last (get-text-property 1 'tags b)))))
7008 (cond ((not ta) +1)
7009 ((not tb) -1)
7010 ((string-lessp ta tb) -1)
7011 ((string-lessp tb ta) +1))))
7013 (defsubst org-cmp-time (a b)
7014 "Compare the time-of-day values of strings A and B."
7015 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
7016 (ta (or (get-text-property 1 'time-of-day a) def))
7017 (tb (or (get-text-property 1 'time-of-day b) def)))
7018 (cond ((< ta tb) -1)
7019 ((< tb ta) +1))))
7021 (defsubst org-cmp-ts (a b type)
7022 "Compare the timestamps values of entries A and B.
7023 When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
7024 \"timestamp_ia\", compare within each of these type. When TYPE
7025 is the empty string, compare all timestamps without respect of
7026 their type."
7027 (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
7028 (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
7029 (get-text-property 1 'ts-date a))
7030 def))
7031 (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
7032 (get-text-property 1 'ts-date b))
7033 def)))
7034 (cond ((< ta tb) -1)
7035 ((< tb ta) +1))))
7037 (defsubst org-cmp-habit-p (a b)
7038 "Compare the todo states of strings A and B."
7039 (let ((ha (get-text-property 1 'org-habit-p a))
7040 (hb (get-text-property 1 'org-habit-p b)))
7041 (cond ((and ha (not hb)) -1)
7042 ((and (not ha) hb) +1))))
7044 (defun org-entries-lessp (a b)
7045 "Predicate for sorting agenda entries."
7046 ;; The following variables will be used when the form is evaluated.
7047 ;; So even though the compiler complains, keep them.
7048 (let* ((ss org-agenda-sorting-strategy-selected)
7049 (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
7050 (org-cmp-ts a b "")))
7051 (timestamp-down (if timestamp-up (- timestamp-up) nil))
7052 (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
7053 (org-cmp-ts a b "scheduled")))
7054 (scheduled-down (if scheduled-up (- scheduled-up) nil))
7055 (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
7056 (org-cmp-ts a b "deadline")))
7057 (deadline-down (if deadline-up (- deadline-up) nil))
7058 (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
7059 (org-cmp-ts a b "timestamp_ia")))
7060 (tsia-down (if tsia-up (- tsia-up) nil))
7061 (ts-up (and (org-em 'ts-up 'ts-down ss)
7062 (org-cmp-ts a b "timestamp")))
7063 (ts-down (if ts-up (- ts-up) nil))
7064 (time-up (and (org-em 'time-up 'time-down ss)
7065 (org-cmp-time a b)))
7066 (time-down (if time-up (- time-up) nil))
7067 (stats-up (and (org-em 'stats-up 'stats-down ss)
7068 (org-cmp-values a b 'org-stats)))
7069 (stats-down (if stats-up (- stats-up) nil))
7070 (priority-up (and (org-em 'priority-up 'priority-down ss)
7071 (org-cmp-values a b 'priority)))
7072 (priority-down (if priority-up (- priority-up) nil))
7073 (effort-up (and (org-em 'effort-up 'effort-down ss)
7074 (org-cmp-effort a b)))
7075 (effort-down (if effort-up (- effort-up) nil))
7076 (category-up (and (or (org-em 'category-up 'category-down ss)
7077 (memq 'category-keep ss))
7078 (org-cmp-category a b)))
7079 (category-down (if category-up (- category-up) nil))
7080 (category-keep (if category-up +1 nil))
7081 (tag-up (and (org-em 'tag-up 'tag-down ss)
7082 (org-cmp-tag a b)))
7083 (tag-down (if tag-up (- tag-up) nil))
7084 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
7085 (org-cmp-todo-state a b)))
7086 (todo-state-down (if todo-state-up (- todo-state-up) nil))
7087 (habit-up (and (org-em 'habit-up 'habit-down ss)
7088 (org-cmp-habit-p a b)))
7089 (habit-down (if habit-up (- habit-up) nil))
7090 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
7091 (org-cmp-alpha a b)))
7092 (alpha-down (if alpha-up (- alpha-up) nil))
7093 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
7094 user-defined-up user-defined-down)
7095 (if (and need-user-cmp org-agenda-cmp-user-defined
7096 (functionp org-agenda-cmp-user-defined))
7097 (setq user-defined-up
7098 (funcall org-agenda-cmp-user-defined a b)
7099 user-defined-down (if user-defined-up (- user-defined-up) nil)))
7100 (cdr (assoc
7101 (eval (cons 'or org-agenda-sorting-strategy-selected))
7102 '((-1 . t) (1 . nil) (nil . nil))))))
7104 ;;; Agenda restriction lock
7106 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
7107 "Overlay to mark the headline to which agenda commands are restricted.")
7108 (overlay-put org-agenda-restriction-lock-overlay
7109 'face 'org-agenda-restriction-lock)
7110 (overlay-put org-agenda-restriction-lock-overlay
7111 'help-echo "Agendas are currently limited to this subtree.")
7112 (org-detach-overlay org-agenda-restriction-lock-overlay)
7114 ;;;###autoload
7115 (defun org-agenda-set-restriction-lock (&optional type)
7116 "Set restriction lock for agenda, to current subtree or file.
7117 Restriction will be the file if TYPE is `file', or if type is the
7118 universal prefix '(4), or if the cursor is before the first headline
7119 in the file. Otherwise, restriction will be to the current subtree."
7120 (interactive "P")
7121 (org-agenda-remove-restriction-lock 'noupdate)
7122 (and (equal type '(4)) (setq type 'file))
7123 (setq type (cond
7124 (type type)
7125 ((org-at-heading-p) 'subtree)
7126 ((condition-case nil (org-back-to-heading t) (error nil))
7127 'subtree)
7128 (t 'file)))
7129 (if (eq type 'subtree)
7130 (progn
7131 (setq org-agenda-restrict (current-buffer))
7132 (setq org-agenda-overriding-restriction 'subtree)
7133 (put 'org-agenda-files 'org-restrict
7134 (list (buffer-file-name (buffer-base-buffer))))
7135 (org-back-to-heading t)
7136 (move-overlay org-agenda-restriction-lock-overlay
7137 (point)
7138 (if org-agenda-restriction-lock-highlight-subtree
7139 (save-excursion (org-end-of-subtree t t) (point))
7140 (point-at-eol)))
7141 (move-marker org-agenda-restrict-begin (point))
7142 (move-marker org-agenda-restrict-end
7143 (save-excursion (org-end-of-subtree t t)))
7144 (message "Locking agenda restriction to subtree"))
7145 (put 'org-agenda-files 'org-restrict
7146 (list (buffer-file-name (buffer-base-buffer))))
7147 (setq org-agenda-restrict nil)
7148 (setq org-agenda-overriding-restriction 'file)
7149 (move-marker org-agenda-restrict-begin nil)
7150 (move-marker org-agenda-restrict-end nil)
7151 (message "Locking agenda restriction to file"))
7152 (setq current-prefix-arg nil)
7153 (org-agenda-maybe-redo))
7155 (defun org-agenda-remove-restriction-lock (&optional noupdate)
7156 "Remove the agenda restriction lock."
7157 (interactive "P")
7158 (org-detach-overlay org-agenda-restriction-lock-overlay)
7159 (org-detach-overlay org-speedbar-restriction-lock-overlay)
7160 (setq org-agenda-overriding-restriction nil)
7161 (setq org-agenda-restrict nil)
7162 (put 'org-agenda-files 'org-restrict nil)
7163 (move-marker org-agenda-restrict-begin nil)
7164 (move-marker org-agenda-restrict-end nil)
7165 (setq current-prefix-arg nil)
7166 (message "Agenda restriction lock removed")
7167 (or noupdate (org-agenda-maybe-redo)))
7169 (defun org-agenda-maybe-redo ()
7170 "If there is any window showing the agenda view, update it."
7171 (let ((w (get-buffer-window org-agenda-buffer-name t))
7172 (w0 (selected-window)))
7173 (when w
7174 (select-window w)
7175 (org-agenda-redo)
7176 (select-window w0)
7177 (if org-agenda-overriding-restriction
7178 (message "Agenda view shifted to new %s restriction"
7179 org-agenda-overriding-restriction)
7180 (message "Agenda restriction lock removed")))))
7182 ;;; Agenda commands
7184 (defun org-agenda-check-type (error &rest types)
7185 "Check if agenda buffer is of allowed type.
7186 If ERROR is non-nil, throw an error, otherwise just return nil.
7187 Allowed types are 'agenda 'timeline 'todo 'tags 'search."
7188 (if (not org-agenda-type)
7189 (error "No Org agenda currently displayed")
7190 (if (memq org-agenda-type types)
7192 (if error
7193 (error "Not allowed in %s-type agenda buffers" org-agenda-type)
7194 nil))))
7196 (defun org-agenda-Quit ()
7197 "Exit the agenda, killing the agenda buffer.
7198 Like `org-agenda-quit', but kill the buffer even when
7199 `org-agenda-sticky' is non-nil."
7200 (interactive)
7201 (org-agenda--quit))
7203 (defun org-agenda-quit ()
7204 "Exit the agenda.
7206 When `org-agenda-sticky' is non-nil, bury the agenda buffer
7207 instead of killing it.
7209 When `org-agenda-restore-windows-after-quit' is non-nil, restore
7210 the pre-agenda window configuration.
7212 When column view is active, exit column view instead of the
7213 agenda."
7214 (interactive)
7215 (org-agenda--quit org-agenda-sticky))
7217 (defun org-agenda--quit (&optional bury)
7218 (if org-agenda-columns-active
7219 (org-columns-quit)
7220 (let ((buf (current-buffer))
7221 (wconf org-agenda-pre-window-conf)
7222 (org-agenda-last-indirect-window
7223 (and (eq org-indirect-buffer-display 'other-window)
7224 org-agenda-last-indirect-buffer
7225 (get-buffer-window org-agenda-last-indirect-buffer))))
7226 (cond
7227 ((eq org-agenda-window-setup 'other-frame)
7228 (delete-frame))
7229 ((and org-agenda-restore-windows-after-quit
7230 wconf)
7231 ;; Maybe restore the pre-agenda window configuration. Reset
7232 ;; `org-agenda-pre-window-conf' before running
7233 ;; `set-window-configuration', which loses the current buffer.
7234 (setq org-agenda-pre-window-conf nil)
7235 (set-window-configuration wconf))
7237 (when org-agenda-last-indirect-window
7238 (delete-window org-agenda-last-indirect-window))
7239 (and (not (eq org-agenda-window-setup 'current-window))
7240 (not (one-window-p))
7241 (delete-window))))
7242 (if bury
7243 (bury-buffer buf)
7244 (kill-buffer buf)
7245 (setq org-agenda-archives-mode nil
7246 org-agenda-buffer nil)))))
7248 (defun org-agenda-exit ()
7249 "Exit the agenda, killing Org buffers loaded by the agenda.
7250 Like `org-agenda-Quit', but kill any buffers that were created by
7251 the agenda. Org buffers visited directly by the user will not be
7252 touched. Also, exit the agenda even if it is in column view."
7253 (interactive)
7254 (when org-agenda-columns-active
7255 (org-columns-quit))
7256 (org-release-buffers org-agenda-new-buffers)
7257 (setq org-agenda-new-buffers nil)
7258 (org-agenda-Quit))
7260 (defun org-agenda-kill-all-agenda-buffers ()
7261 "Kill all buffers in `org-agenda-mode'.
7262 This is used when toggling sticky agendas.
7263 You can also explicitly invoke it with `C-c a C-k'."
7264 (interactive)
7265 (let (blist)
7266 (dolist (buf (buffer-list))
7267 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
7268 (push buf blist)))
7269 (mapc 'kill-buffer blist)))
7271 (defun org-agenda-execute (arg)
7272 "Execute another agenda command, keeping same window.
7273 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
7274 in the agenda."
7275 (interactive "P")
7276 (let ((org-agenda-window-setup 'current-window))
7277 (org-agenda arg)))
7279 (defun org-agenda-redo (&optional all)
7280 "Rebuild possibly ALL agenda view(s) in the current buffer."
7281 (interactive "P")
7282 (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
7283 (cpa (unless (eq all t) current-prefix-arg))
7284 (org-agenda-doing-sticky-redo org-agenda-sticky)
7285 (org-agenda-sticky nil)
7286 (org-agenda-buffer-name (or org-agenda-this-buffer-name
7287 org-agenda-buffer-name))
7288 (org-agenda-keep-modes t)
7289 (tag-filter org-agenda-tag-filter)
7290 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
7291 (top-hl-filter org-agenda-top-headline-filter)
7292 (cat-filter org-agenda-category-filter)
7293 (cat-preset (get 'org-agenda-category-filter :preset-filter))
7294 (re-filter org-agenda-regexp-filter)
7295 (re-preset (get 'org-agenda-regexp-filter :preset-filter))
7296 (effort-filter org-agenda-effort-filter)
7297 (effort-preset (get 'org-agenda-effort-filter :preset-filter))
7298 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
7299 (cols org-agenda-columns-active)
7300 (line (org-current-line))
7301 (window-line (- line (org-current-line (window-start))))
7302 (lprops (get 'org-agenda-redo-command 'org-lprops))
7303 (redo-cmd (get-text-property p 'org-redo-cmd))
7304 (last-args (get-text-property p 'org-last-args))
7305 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
7306 (org-agenda-overriding-cmd-arguments
7307 (unless (eq all t)
7308 (cond ((listp last-args)
7309 (cons (or cpa (car last-args)) (cdr last-args)))
7310 ((stringp last-args)
7311 last-args))))
7312 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
7313 (put 'org-agenda-tag-filter :preset-filter nil)
7314 (put 'org-agenda-category-filter :preset-filter nil)
7315 (put 'org-agenda-regexp-filter :preset-filter nil)
7316 (put 'org-agenda-effort-filter :preset-filter nil)
7317 (and cols (org-columns-quit))
7318 (message "Rebuilding agenda buffer...")
7319 (if series-redo-cmd
7320 (eval series-redo-cmd)
7321 (org-let lprops redo-cmd))
7322 (setq org-agenda-undo-list nil
7323 org-agenda-pending-undo-list nil
7324 org-agenda-tag-filter tag-filter
7325 org-agenda-category-filter cat-filter
7326 org-agenda-regexp-filter re-filter
7327 org-agenda-effort-filter effort-filter
7328 org-agenda-top-headline-filter top-hl-filter)
7329 (message "Rebuilding agenda buffer...done")
7330 (put 'org-agenda-tag-filter :preset-filter tag-preset)
7331 (put 'org-agenda-category-filter :preset-filter cat-preset)
7332 (put 'org-agenda-regexp-filter :preset-filter re-preset)
7333 (put 'org-agenda-effort-filter :preset-filter effort-preset)
7334 (let ((tag (or tag-filter tag-preset))
7335 (cat (or cat-filter cat-preset))
7336 (effort (or effort-filter effort-preset))
7337 (re (or re-filter re-preset)))
7338 (when tag (org-agenda-filter-apply tag 'tag t))
7339 (when cat (org-agenda-filter-apply cat 'category))
7340 (when effort (org-agenda-filter-apply effort 'effort))
7341 (when re (org-agenda-filter-apply re 'regexp)))
7342 (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
7343 (and cols (org-called-interactively-p 'any) (org-agenda-columns))
7344 (org-goto-line line)
7345 (recenter window-line)))
7347 (defvar org-global-tags-completion-table nil)
7348 (defvar org-agenda-filter-form nil)
7349 (defvar org-agenda-filtered-by-category nil)
7351 (defun org-agenda-filter-by-category (strip)
7352 "Keep only those lines in the agenda buffer that have a specific category.
7353 The category is that of the current line."
7354 (interactive "P")
7355 (if (and org-agenda-filtered-by-category
7356 org-agenda-category-filter)
7357 (org-agenda-filter-show-all-cat)
7358 (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
7359 (cond
7360 ((and cat strip)
7361 (org-agenda-filter-apply
7362 (push (concat "-" cat) org-agenda-category-filter) 'category))
7363 ((and cat)
7364 (org-agenda-filter-apply
7365 (setq org-agenda-category-filter
7366 (list (concat "+" cat))) 'category))
7367 (t (error "No category at point"))))))
7369 (defun org-find-top-headline (&optional pos)
7370 "Find the topmost parent headline and return it."
7371 (save-excursion
7372 (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
7373 (if pos (goto-char pos))
7374 ;; Skip up to the topmost parent
7375 (while (ignore-errors (outline-up-heading 1) t))
7376 (ignore-errors
7377 (nth 4 (org-heading-components))))))
7379 (defvar org-agenda-filtered-by-top-headline nil)
7380 (defun org-agenda-filter-by-top-headline (strip)
7381 "Keep only those lines that are descendants from the same top headline.
7382 The top headline is that of the current line."
7383 (interactive "P")
7384 (if org-agenda-filtered-by-top-headline
7385 (progn
7386 (setq org-agenda-filtered-by-top-headline nil
7387 org-agenda-top-headline-filter nil)
7388 (org-agenda-filter-show-all-top-filter))
7389 (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
7390 (if toph (org-agenda-filter-top-headline-apply toph strip)
7391 (error "No top-level headline at point")))))
7393 (defvar org-agenda-regexp-filter nil)
7394 (defun org-agenda-filter-by-regexp (strip)
7395 "Filter agenda entries by a regular expression.
7396 Regexp filters are cumulative.
7397 With no prefix argument, keep entries matching the regexp.
7398 With one prefix argument, filter out entries matching the regexp.
7399 With two prefix arguments, remove the regexp filters."
7400 (interactive "P")
7401 (if (not (equal strip '(16)))
7402 (let ((flt (concat (if (equal strip '(4)) "-" "+")
7403 (read-from-minibuffer
7404 (if (equal strip '(4))
7405 "Filter out entries matching regexp: "
7406 "Narrow to entries matching regexp: ")))))
7407 (push flt org-agenda-regexp-filter)
7408 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
7409 (org-agenda-filter-show-all-re)
7410 (message "Regexp filter removed")))
7412 (defvar org-agenda-effort-filter nil)
7413 (defun org-agenda-filter-by-effort (strip)
7414 "Filter agenda entries by effort.
7415 With no prefix argument, keep entries matching the effort condition.
7416 With one prefix argument, filter out entries matching the condition.
7417 With two prefix arguments, remove the effort filters."
7418 (interactive "P")
7419 (cond ((member strip '(nil 4))
7420 (let ((efforts (org-split-string
7421 (or (cdr (assoc (concat org-effort-property "_ALL")
7422 org-global-properties))
7423 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
7424 "")))
7425 (eff -1)
7426 effort-prompt op)
7427 (while (not (member op '(?< ?> ?=)))
7428 (setq op (read-char-exclusive "Effort operator? (> = or <)")))
7429 (loop for i from 0 to 9 do
7430 (setq effort-prompt
7431 (concat
7432 effort-prompt " ["
7433 (if (= i 9) "0" (int-to-string (1+ i)))
7434 "]" (nth i efforts))))
7435 (message "Effort %s%s" (char-to-string op) effort-prompt)
7436 (while (or (< eff 0) (> eff 9))
7437 (setq eff (string-to-number (char-to-string (read-char-exclusive)))))
7438 (setq org-agenda-effort-filter
7439 (list (concat (if strip "-" "+")
7440 (char-to-string op) (nth (1- eff) efforts))))
7441 (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
7442 (t (org-agenda-filter-show-all-effort)
7443 (message "Effort filter removed"))))
7445 (defun org-agenda-filter-remove-all ()
7446 "Remove all filters from the current agenda buffer."
7447 (interactive)
7448 (when org-agenda-tag-filter
7449 (org-agenda-filter-show-all-tag))
7450 (when org-agenda-category-filter
7451 (org-agenda-filter-show-all-cat))
7452 (when org-agenda-regexp-filter
7453 (org-agenda-filter-show-all-re))
7454 (when org-agenda-top-headline-filter
7455 (org-agenda-filter-show-all-top-filter))
7456 (when org-agenda-effort-filter
7457 (org-agenda-filter-show-all-effort))
7458 (org-agenda-finalize))
7460 (defun org-agenda-filter-by-tag (arg &optional char exclude)
7461 "Keep only those lines in the agenda buffer that have a specific tag.
7462 The tag is selected with its fast selection letter, as
7463 configured. With a single \\[universal-argument] prefix ARG,
7464 exclude the agenda search. With a double \\[universal-argument]
7465 prefix ARG, filter the literal tag. I.e. don't filter on all its
7466 group members.
7468 A lisp caller can specify CHAR. EXCLUDE means that the new tag should be
7469 used to exclude the search - the interactive user can also press `-' or `+'
7470 to switch between filtering and excluding."
7471 (interactive "P")
7472 (let* ((alist org-tag-alist-for-agenda)
7473 (tag-chars (mapconcat
7474 (lambda (x) (if (and (not (symbolp (car x)))
7475 (cdr x))
7476 (char-to-string (cdr x))
7477 ""))
7478 org-tag-alist-for-agenda ""))
7479 (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
7480 (string-to-list tag-chars)))
7481 (exclude (or exclude (equal arg '(4))))
7482 (expand (not (equal arg '(16))))
7483 (inhibit-read-only t)
7484 (current org-agenda-tag-filter)
7485 a n tag)
7486 (unless char
7487 (while (not (memq char valid-char-list))
7488 (message
7489 "%s by tag [%s ], [TAB], %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
7490 (if exclude "Exclude" "Filter") tag-chars
7491 (if org-agenda-auto-exclude-function "[RET], " "")
7492 (if expand "" ", no grouptag expand"))
7493 (setq char (read-char-exclusive))
7494 ;; Excluding or filtering down
7495 (cond ((eq char ?-) (setq exclude t))
7496 ((eq char ?+) (setq exclude nil)))))
7497 (when (eq char ?\t)
7498 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
7499 (org-set-local 'org-global-tags-completion-table
7500 (org-global-tags-completion-table)))
7501 (let ((completion-ignore-case t))
7502 (setq tag (org-icompleting-read
7503 "Tag: " org-global-tags-completion-table))))
7504 (cond
7505 ((eq char ?\r)
7506 (org-agenda-filter-show-all-tag)
7507 (when org-agenda-auto-exclude-function
7508 (setq org-agenda-tag-filter nil)
7509 (dolist (tag (org-agenda-get-represented-tags))
7510 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
7511 (if modifier
7512 (push modifier org-agenda-tag-filter))))
7513 (if (not (null org-agenda-tag-filter))
7514 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
7515 ((eq char ?/)
7516 (org-agenda-filter-show-all-tag)
7517 (when (get 'org-agenda-tag-filter :preset-filter)
7518 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
7519 ((eq char ?.)
7520 (setq org-agenda-tag-filter
7521 (mapcar (lambda(tag) (concat "+" tag))
7522 (org-get-at-bol 'tags)))
7523 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
7524 ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
7525 ((or (eq char ?\s)
7526 (setq a (rassoc char alist))
7527 (and tag (setq a (cons tag nil))))
7528 (org-agenda-filter-show-all-tag)
7529 (setq tag (car a))
7530 (setq org-agenda-tag-filter
7531 (cons (concat (if exclude "-" "+") tag)
7532 current))
7533 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
7534 (t (error "Invalid tag selection character %c" char)))))
7536 (defun org-agenda-get-represented-tags ()
7537 "Get a list of all tags currently represented in the agenda."
7538 (let (p tags)
7539 (save-excursion
7540 (goto-char (point-min))
7541 (while (setq p (next-single-property-change (point) 'tags))
7542 (goto-char p)
7543 (mapc (lambda (x) (add-to-list 'tags x))
7544 (get-text-property (point) 'tags))))
7545 tags))
7547 (defun org-agenda-filter-by-tag-refine (arg &optional char)
7548 "Refine the current filter. See `org-agenda-filter-by-tag'."
7549 (interactive "P")
7550 (org-agenda-filter-by-tag arg char 'refine))
7552 (defun org-agenda-filter-make-matcher (filter type &optional expand)
7553 "Create the form that tests a line for agenda filter. Optional
7554 argument EXPAND can be used for the TYPE tag and will expand the
7555 tags in the FILTER if any of the tags in FILTER are grouptags."
7556 (let (f f1)
7557 (cond
7558 ;; Tag filter
7559 ((eq type 'tag)
7560 (setq filter
7561 (delete-dups
7562 (append (get 'org-agenda-tag-filter :preset-filter)
7563 filter)))
7564 (dolist (x filter)
7565 (let ((op (string-to-char x)))
7566 (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
7567 (setq x (list x)))
7568 (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
7569 (push f1 f))))
7570 ;; Category filter
7571 ((eq type 'category)
7572 (setq filter
7573 (delete-dups
7574 (append (get 'org-agenda-category-filter :preset-filter)
7575 filter)))
7576 (dolist (x filter)
7577 (if (equal "-" (substring x 0 1))
7578 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
7579 (setq f1 (list 'equal (substring x 1) 'cat)))
7580 (push f1 f)))
7581 ;; Regexp filter
7582 ((eq type 'regexp)
7583 (setq filter
7584 (delete-dups
7585 (append (get 'org-agenda-regexp-filter :preset-filter)
7586 filter)))
7587 (dolist (x filter)
7588 (if (equal "-" (substring x 0 1))
7589 (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
7590 (setq f1 (list 'string-match (substring x 1) 'txt)))
7591 (push f1 f)))
7592 ;; Effort filter
7593 ((eq type 'effort)
7594 (setq filter
7595 (delete-dups
7596 (append (get 'org-agenda-effort-filter :preset-filter)
7597 filter)))
7598 (dolist (x filter)
7599 (push (org-agenda-filter-effort-form x) f))))
7600 (cons 'and (nreverse f))))
7602 (defun org-agenda-filter-make-matcher-tag-exp (tags op)
7603 "Create the form that tests a line for agenda filter for
7604 tag-expressions. Return a match-expression given TAGS. OP is an
7605 operator of type CHAR that allows the function to set the right
7606 switches in the returned form."
7607 (let (f f1) ;f = return expression. f1 = working-area
7608 (dolist (x tags)
7609 (let* ((tag (substring x 1))
7610 (isregexp (and (equal "{" (substring tag 0 1))
7611 (equal "}" (substring tag -1))))
7612 regexp)
7613 (cond
7614 (isregexp
7615 (setq regexp (substring tag 1 -1))
7616 (setq f1 (list 'org-match-any-p regexp 'tags)))
7618 (setq f1 (list 'member (downcase tag) 'tags))))
7619 (when (eq op ?-)
7620 (setq f1 (list 'not f1))))
7621 (push f1 f))
7622 ;; Any of the expressions can match if op = +
7623 ;; all must match if the operator is -.
7624 (if (eq op ?-)
7625 (cons 'and f)
7626 (cons 'or f))))
7628 (defun org-agenda-filter-effort-form (e)
7629 "Return the form to compare the effort of the current line with what E says.
7630 E looks like \"+<2:25\"."
7631 (let (op)
7632 (setq e (substring e 1))
7633 (setq op (string-to-char e) e (substring e 1))
7634 (setq op (cond ((equal op ?<) '<=)
7635 ((equal op ?>) '>=)
7636 ((equal op ??) op)
7637 (t '=)))
7638 (list 'org-agenda-compare-effort (list 'quote op)
7639 (org-duration-string-to-minutes e))))
7641 (defun org-agenda-compare-effort (op value)
7642 "Compare the effort of the current line with VALUE, using OP.
7643 If the line does not have an effort defined, return nil."
7644 (let ((eff (org-get-at-eol 'effort-minutes 1)))
7645 (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 -1))
7646 value)))
7648 (defun org-agenda-filter-expand-tags (filter &optional no-operator)
7649 "Expand group tags in FILTER for the agenda.
7650 When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
7651 (if org-group-tags
7652 (let ((case-fold-search t) rtn)
7653 (mapc
7654 (lambda (f)
7655 (let (f0 dir)
7656 (if (string-match "^\\([+-]\\)\\(.+\\)" f)
7657 (setq dir (match-string 1 f) f0 (match-string 2 f))
7658 (setq dir (if no-operator "" "+") f0 f))
7659 (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
7660 (org-tags-expand f0 t t))
7661 rtn))))
7662 filter)
7663 (reverse rtn))
7664 filter))
7666 (defun org-agenda-filter-apply (filter type &optional expand)
7667 "Set FILTER as the new agenda filter and apply it. Optional
7668 argument EXPAND can be used for the TYPE tag and will expand the
7669 tags in the FILTER if any of the tags in FILTER are grouptags."
7670 ;; Deactivate `org-agenda-entry-text-mode' when filtering
7671 (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
7672 (let (tags cat txt)
7673 (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
7674 ;; Only set `org-agenda-filtered-by-category' to t when a unique
7675 ;; category is used as the filter:
7676 (setq org-agenda-filtered-by-category
7677 (and (eq type 'category)
7678 (not (equal (substring (car filter) 0 1) "-"))))
7679 (org-agenda-set-mode-name)
7680 (save-excursion
7681 (goto-char (point-min))
7682 (while (not (eobp))
7683 (if (org-get-at-bol 'org-marker)
7684 (progn
7685 (setq tags (org-get-at-bol 'tags)
7686 cat (org-get-at-eol 'org-category 1)
7687 txt (org-get-at-eol 'txt 1))
7688 (if (not (eval org-agenda-filter-form))
7689 (org-agenda-filter-hide-line type))
7690 (beginning-of-line 2))
7691 (beginning-of-line 2))))
7692 (if (get-char-property (point) 'invisible)
7693 (ignore-errors (org-agenda-previous-line)))))
7695 (defun org-agenda-filter-top-headline-apply (hl &optional negative)
7696 "Filter by top headline HL."
7697 (org-agenda-set-mode-name)
7698 (save-excursion
7699 (goto-char (point-min))
7700 (while (not (eobp))
7701 (let* ((pos (org-get-at-bol 'org-hd-marker))
7702 (tophl (and pos (org-find-top-headline pos))))
7703 (if (and tophl (funcall (if negative 'identity 'not)
7704 (string= hl tophl)))
7705 (org-agenda-filter-hide-line 'top-headline)))
7706 (beginning-of-line 2)))
7707 (if (get-char-property (point) 'invisible)
7708 (org-agenda-previous-line))
7709 (setq org-agenda-top-headline-filter hl
7710 org-agenda-filtered-by-top-headline t))
7712 (defun org-agenda-filter-hide-line (type)
7713 "Hide lines with TYPE in the agenda buffer."
7714 (let* ((b (max (point-min) (1- (point-at-bol))))
7715 (e (point-at-eol)))
7716 (let ((inhibit-read-only t))
7717 (add-text-properties
7718 b e `(invisible org-filtered org-filter-type ,type)))))
7720 (defun org-agenda-remove-filter (type)
7721 (interactive)
7722 "Remove filter of type TYPE from the agenda buffer."
7723 (save-excursion
7724 (goto-char (point-min))
7725 (let ((inhibit-read-only t) pos)
7726 (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
7727 (goto-char pos)
7728 (remove-text-properties
7729 (point) (next-single-property-change (point) 'org-filter-type)
7730 `(invisible org-filtered org-filter-type ,type))))
7731 (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
7732 (setq org-agenda-filter-form nil)
7733 (org-agenda-set-mode-name)
7734 (org-agenda-finalize)))
7736 (defun org-agenda-filter-show-all-tag nil
7737 (org-agenda-remove-filter 'tag))
7738 (defun org-agenda-filter-show-all-re nil
7739 (org-agenda-remove-filter 'regexp))
7740 (defun org-agenda-filter-show-all-effort nil
7741 (org-agenda-remove-filter 'effort))
7742 (defun org-agenda-filter-show-all-cat nil
7743 (org-agenda-remove-filter 'category))
7744 (defun org-agenda-filter-show-all-top-filter nil
7745 (org-agenda-remove-filter 'top-headline))
7747 (defun org-agenda-manipulate-query-add ()
7748 "Manipulate the query by adding a search term with positive selection.
7749 Positive selection means the term must be matched for selection of an entry."
7750 (interactive)
7751 (org-agenda-manipulate-query ?\[))
7752 (defun org-agenda-manipulate-query-subtract ()
7753 "Manipulate the query by adding a search term with negative selection.
7754 Negative selection means term must not be matched for selection of an entry."
7755 (interactive)
7756 (org-agenda-manipulate-query ?\]))
7757 (defun org-agenda-manipulate-query-add-re ()
7758 "Manipulate the query by adding a search regexp with positive selection.
7759 Positive selection means the regexp must match for selection of an entry."
7760 (interactive)
7761 (org-agenda-manipulate-query ?\{))
7762 (defun org-agenda-manipulate-query-subtract-re ()
7763 "Manipulate the query by adding a search regexp with negative selection.
7764 Negative selection means regexp must not match for selection of an entry."
7765 (interactive)
7766 (org-agenda-manipulate-query ?\}))
7767 (defun org-agenda-manipulate-query (char)
7768 (cond
7769 ((memq org-agenda-type '(timeline agenda))
7770 (let ((org-agenda-include-inactive-timestamps t))
7771 (org-agenda-redo))
7772 (message "Display now includes inactive timestamps as well"))
7773 ((eq org-agenda-type 'search)
7774 (org-add-to-string
7775 'org-agenda-query-string
7776 (if org-agenda-last-search-view-search-was-boolean
7777 (cdr (assoc char '((?\[ . " +") (?\] . " -")
7778 (?\{ . " +{}") (?\} . " -{}"))))
7779 " "))
7780 (setq org-agenda-redo-command
7781 (list 'org-search-view
7782 (car (get-text-property (min (1- (point-max)) (point))
7783 'org-last-args))
7784 org-agenda-query-string
7785 (+ (length org-agenda-query-string)
7786 (if (member char '(?\{ ?\})) 0 1))))
7787 (set-register org-agenda-query-register org-agenda-query-string)
7788 (let ((org-agenda-overriding-arguments
7789 (cdr org-agenda-redo-command)))
7790 (org-agenda-redo)))
7791 (t (error "Cannot manipulate query for %s-type agenda buffers"
7792 org-agenda-type))))
7794 (defun org-add-to-string (var string)
7795 (set var (concat (symbol-value var) string)))
7797 (defun org-agenda-goto-date (span)
7798 "Jump to DATE in agenda."
7799 (interactive "P")
7800 (let* ((org-read-date-prefer-future
7801 (eval org-agenda-jump-prefer-future))
7802 (date (org-read-date))
7803 (day (time-to-days (org-time-string-to-time date)))
7804 (org-agenda-sticky-orig org-agenda-sticky)
7805 (org-agenda-buffer-tmp-name (buffer-name))
7806 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7807 (0-arg (or current-prefix-arg (car args)))
7808 (2-arg (nth 2 args))
7809 (with-hour-p (nth 4 org-agenda-redo-command))
7810 (newcmd (list 'org-agenda-list 0-arg date
7811 (org-agenda-span-to-ndays
7812 2-arg (org-time-string-to-absolute date))
7813 with-hour-p))
7814 (newargs (cdr newcmd))
7815 (inhibit-read-only t)
7816 org-agenda-sticky)
7817 (if (not (org-agenda-check-type t 'agenda))
7818 (error "Not available in non-agenda views")
7819 (add-text-properties (point-min) (point-max)
7820 `(org-redo-cmd ,newcmd org-last-args ,newargs))
7821 (org-agenda-redo)
7822 (goto-char (point-min))
7823 (while (not (or (= (or (get-text-property (point) 'day) 0) day)
7824 (save-excursion (move-beginning-of-line 2) (eobp))))
7825 (move-beginning-of-line 2))
7826 (setq org-agenda-sticky org-agenda-sticky-orig
7827 org-agenda-this-buffer-is-sticky org-agenda-sticky))))
7829 (defun org-agenda-goto-today ()
7830 "Go to today."
7831 (interactive)
7832 (org-agenda-check-type t 'timeline 'agenda)
7833 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7834 (curspan (nth 2 args))
7835 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
7836 (cond
7837 (tdpos (goto-char tdpos))
7838 ((eq org-agenda-type 'agenda)
7839 (let* ((sd (org-agenda-compute-starting-span
7840 (org-today) (or curspan org-agenda-ndays org-agenda-span)))
7841 (org-agenda-overriding-arguments args))
7842 (setf (nth 1 org-agenda-overriding-arguments) sd)
7843 (org-agenda-redo)
7844 (org-agenda-find-same-or-today-or-agenda)))
7845 (t (error "Cannot find today")))))
7847 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
7848 (goto-char
7849 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
7850 (text-property-any (point-min) (point-max) 'org-today t)
7851 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
7852 (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
7853 (org-agenda-backward-block))
7854 (point-min))))
7856 (defun org-agenda-backward-block ()
7857 "Move backward by one agenda block."
7858 (interactive)
7859 (org-agenda-forward-block 'backward))
7861 (defun org-agenda-forward-block (&optional backward)
7862 "Move forward by one agenda block.
7863 When optional argument BACKWARD is set, go backward"
7864 (interactive)
7865 (cond ((not (derived-mode-p 'org-agenda-mode))
7866 (user-error
7867 "Cannot execute this command outside of org-agenda-mode buffers"))
7868 ((looking-at (if backward "\\`" "\\'"))
7869 (message "Already at the %s block" (if backward "first" "last")))
7870 (t (let ((pos (prog1 (point)
7871 (ignore-errors (if backward (backward-char 1)
7872 (move-end-of-line 1)))))
7873 (f (if backward
7874 'previous-single-property-change
7875 'next-single-property-change))
7876 moved dest)
7877 (while (and (setq dest (funcall
7878 f (point) 'org-agenda-structural-header))
7879 (not (get-text-property
7880 (point) 'org-agenda-structural-header)))
7881 (setq moved t)
7882 (goto-char dest))
7883 (if moved (move-beginning-of-line 1)
7884 (goto-char (if backward (point-min) (point-max)))
7885 (move-beginning-of-line 1)
7886 (message "No %s block" (if backward "previous" "further")))))))
7888 (defun org-agenda-later (arg)
7889 "Go forward in time by the current span.
7890 With prefix ARG, go forward that many times the current span."
7891 (interactive "p")
7892 (org-agenda-check-type t 'agenda)
7893 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7894 (span (or (nth 2 args) org-agenda-current-span))
7895 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
7896 (greg (calendar-gregorian-from-absolute sd))
7897 (cnt (org-get-at-bol 'org-day-cnt))
7898 greg2)
7899 (cond
7900 ((numberp span)
7901 (setq sd (+ (* span arg) sd)))
7902 ((eq span 'day)
7903 (setq sd (+ arg sd)))
7904 ((eq span 'week)
7905 (setq sd (+ (* 7 arg) sd)))
7906 ((eq span 'fortnight)
7907 (setq sd (+ (* 14 arg) sd)))
7908 ((eq span 'month)
7909 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
7910 sd (calendar-absolute-from-gregorian greg2))
7911 (setcar greg2 (1+ (car greg2))))
7912 ((eq span 'year)
7913 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
7914 sd (calendar-absolute-from-gregorian greg2))
7915 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
7917 (setq sd (+ (* span arg) sd))))
7918 (let ((org-agenda-overriding-cmd
7919 ;; `cmd' may have been set by `org-agenda-run-series' which
7920 ;; uses `org-agenda-overriding-cmd' to decide whether
7921 ;; overriding is allowed for `cmd'
7922 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7923 (org-agenda-overriding-arguments
7924 (list (car args) sd span)))
7925 (org-agenda-redo)
7926 (org-agenda-find-same-or-today-or-agenda cnt))))
7928 (defun org-agenda-earlier (arg)
7929 "Go backward in time by the current span.
7930 With prefix ARG, go backward that many times the current span."
7931 (interactive "p")
7932 (org-agenda-later (- arg)))
7934 (defun org-agenda-view-mode-dispatch ()
7935 "Call one of the view mode commands."
7936 (interactive)
7937 (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
7938 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
7939 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
7940 (let ((a (read-char-exclusive)))
7941 (case a
7942 (?\ (call-interactively 'org-agenda-reset-view))
7943 (?d (call-interactively 'org-agenda-day-view))
7944 (?w (call-interactively 'org-agenda-week-view))
7945 (?t (call-interactively 'org-agenda-fortnight-view))
7946 (?m (call-interactively 'org-agenda-month-view))
7947 (?y (call-interactively 'org-agenda-year-view))
7948 (?l (call-interactively 'org-agenda-log-mode))
7949 (?L (org-agenda-log-mode '(4)))
7950 (?c (org-agenda-log-mode 'clockcheck))
7951 ((?F ?f) (call-interactively 'org-agenda-follow-mode))
7952 (?a (call-interactively 'org-agenda-archives-mode))
7953 (?A (org-agenda-archives-mode 'files))
7954 ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
7955 ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
7956 (?G (call-interactively 'org-agenda-toggle-time-grid))
7957 (?D (call-interactively 'org-agenda-toggle-diary))
7958 (?\! (call-interactively 'org-agenda-toggle-deadlines))
7959 (?\[ (let ((org-agenda-include-inactive-timestamps t))
7960 (org-agenda-check-type t 'timeline 'agenda)
7961 (org-agenda-redo))
7962 (message "Display now includes inactive timestamps as well"))
7963 (?q (message "Abort"))
7964 (otherwise (error "Invalid key" )))))
7966 (defun org-agenda-reset-view ()
7967 "Switch to default view for agenda."
7968 (interactive)
7969 (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
7970 (defun org-agenda-day-view (&optional day-of-month)
7971 "Switch to daily view for agenda.
7972 With argument DAY-OF-MONTH, switch to that day of the month."
7973 (interactive "P")
7974 (org-agenda-change-time-span 'day day-of-month))
7975 (defun org-agenda-week-view (&optional iso-week)
7976 "Switch to daily view for agenda.
7977 With argument ISO-WEEK, switch to the corresponding ISO week.
7978 If ISO-WEEK has more then 2 digits, only the last two encode the
7979 week. Any digits before this encode a year. So 200712 means
7980 week 12 of year 2007. Years in the range 1938-2037 can also be
7981 written as 2-digit years."
7982 (interactive "P")
7983 (org-agenda-change-time-span 'week iso-week))
7984 (defun org-agenda-fortnight-view (&optional iso-week)
7985 "Switch to daily view for agenda.
7986 With argument ISO-WEEK, switch to the corresponding ISO week.
7987 If ISO-WEEK has more then 2 digits, only the last two encode the
7988 week. Any digits before this encode a year. So 200712 means
7989 week 12 of year 2007. Years in the range 1938-2037 can also be
7990 written as 2-digit years."
7991 (interactive "P")
7992 (org-agenda-change-time-span 'fortnight iso-week))
7993 (defun org-agenda-month-view (&optional month)
7994 "Switch to monthly view for agenda.
7995 With argument MONTH, switch to that month."
7996 (interactive "P")
7997 (org-agenda-change-time-span 'month month))
7998 (defun org-agenda-year-view (&optional year)
7999 "Switch to yearly view for agenda.
8000 With argument YEAR, switch to that year.
8001 If MONTH has more then 2 digits, only the last two encode the
8002 month. Any digits before this encode a year. So 200712 means
8003 December year 2007. Years in the range 1938-2037 can also be
8004 written as 2-digit years."
8005 (interactive "P")
8006 (when year
8007 (setq year (org-small-year-to-year year)))
8008 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
8009 (org-agenda-change-time-span 'year year)
8010 (error "Abort")))
8012 (defun org-agenda-change-time-span (span &optional n)
8013 "Change the agenda view to SPAN.
8014 SPAN may be `day', `week', `fortnight', `month', `year'."
8015 (org-agenda-check-type t 'agenda)
8016 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
8017 (curspan (nth 2 args)))
8018 (if (and (not n) (equal curspan span))
8019 (error "Viewing span is already \"%s\"" span))
8020 (let* ((sd (or (org-get-at-bol 'day)
8021 (nth 1 args)
8022 org-starting-day))
8023 (sd (org-agenda-compute-starting-span sd span n))
8024 (org-agenda-overriding-cmd
8025 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
8026 (org-agenda-overriding-arguments
8027 (list (car args) sd span)))
8028 (org-agenda-redo)
8029 (org-agenda-find-same-or-today-or-agenda))
8030 (org-agenda-set-mode-name)
8031 (message "Switched to %s view" span)))
8033 (defun org-agenda-compute-starting-span (sd span &optional n)
8034 "Compute starting date for agenda.
8035 SPAN may be `day', `week', `fortnight', `month', `year'. The return value
8036 is a cons cell with the starting date and the number of days,
8037 so that the date SD will be in that range."
8038 (let* ((greg (calendar-gregorian-from-absolute sd))
8039 (dg (nth 1 greg))
8040 (mg (car greg))
8041 (yg (nth 2 greg)))
8042 (cond
8043 ((eq span 'day)
8044 (when n
8045 (setq sd (+ (calendar-absolute-from-gregorian
8046 (list mg 1 yg))
8047 n -1))))
8048 ((or (eq span 'week) (eq span 'fortnight))
8049 (let* ((nt (calendar-day-of-week
8050 (calendar-gregorian-from-absolute sd)))
8051 (d (if org-agenda-start-on-weekday
8052 (- nt org-agenda-start-on-weekday)
8055 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
8056 (when n
8057 (require 'cal-iso)
8058 (when (> n 99)
8059 (setq y1 (org-small-year-to-year (/ n 100))
8060 n (mod n 100)))
8061 (setq sd
8062 (calendar-iso-to-absolute
8063 (list n 1
8064 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
8065 ((eq span 'month)
8066 (let (y1)
8067 (when (and n (> n 99))
8068 (setq y1 (org-small-year-to-year (/ n 100))
8069 n (mod n 100)))
8070 (setq sd (calendar-absolute-from-gregorian
8071 (list (or n mg) 1 (or y1 yg))))))
8072 ((eq span 'year)
8073 (setq sd (calendar-absolute-from-gregorian
8074 (list 1 1 (or n yg))))))
8075 sd))
8077 (defun org-agenda-next-date-line (&optional arg)
8078 "Jump to the next line indicating a date in agenda buffer."
8079 (interactive "p")
8080 (org-agenda-check-type t 'agenda 'timeline)
8081 (beginning-of-line 1)
8082 ;; This does not work if user makes date format that starts with a blank
8083 (if (looking-at "^\\S-") (forward-char 1))
8084 (if (not (re-search-forward "^\\S-" nil t arg))
8085 (progn
8086 (backward-char 1)
8087 (error "No next date after this line in this buffer")))
8088 (goto-char (match-beginning 0)))
8090 (defun org-agenda-previous-date-line (&optional arg)
8091 "Jump to the previous line indicating a date in agenda buffer."
8092 (interactive "p")
8093 (org-agenda-check-type t 'agenda 'timeline)
8094 (beginning-of-line 1)
8095 (if (not (re-search-backward "^\\S-" nil t arg))
8096 (error "No previous date before this line in this buffer")))
8098 ;; Initialize the highlight
8099 (defvar org-hl (make-overlay 1 1))
8100 (overlay-put org-hl 'face 'highlight)
8102 (defun org-highlight (begin end &optional buffer)
8103 "Highlight a region with overlay."
8104 (move-overlay org-hl begin end (or buffer (current-buffer))))
8106 (defun org-unhighlight ()
8107 "Detach overlay INDEX."
8108 (org-detach-overlay org-hl))
8110 (defun org-unhighlight-once ()
8111 "Remove the highlight from its position, and this function from the hook."
8112 (remove-hook 'pre-command-hook 'org-unhighlight-once)
8113 (org-unhighlight))
8115 (defvar org-agenda-pre-follow-window-conf nil)
8116 (defun org-agenda-follow-mode ()
8117 "Toggle follow mode in an agenda buffer."
8118 (interactive)
8119 (unless org-agenda-follow-mode
8120 (setq org-agenda-pre-follow-window-conf
8121 (current-window-configuration)))
8122 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
8123 (unless org-agenda-follow-mode
8124 (set-window-configuration org-agenda-pre-follow-window-conf))
8125 (org-agenda-set-mode-name)
8126 (org-agenda-do-context-action)
8127 (message "Follow mode is %s"
8128 (if org-agenda-follow-mode "on" "off")))
8130 (defun org-agenda-entry-text-mode (&optional arg)
8131 "Toggle entry text mode in an agenda buffer."
8132 (interactive "P")
8133 (if (or org-agenda-tag-filter
8134 org-agenda-category-filter
8135 org-agenda-regexp-filter
8136 org-agenda-top-headline-filter)
8137 (user-error "Can't show entry text in filtered views")
8138 (setq org-agenda-entry-text-mode (or (integerp arg)
8139 (not org-agenda-entry-text-mode)))
8140 (org-agenda-entry-text-hide)
8141 (and org-agenda-entry-text-mode
8142 (let ((org-agenda-entry-text-maxlines
8143 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
8144 (org-agenda-entry-text-show)))
8145 (org-agenda-set-mode-name)
8146 (message "Entry text mode is %s%s"
8147 (if org-agenda-entry-text-mode "on" "off")
8148 (if (not org-agenda-entry-text-mode) ""
8149 (format " (maximum number of lines is %d)"
8150 (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
8152 (defun org-agenda-clockreport-mode ()
8153 "Toggle clocktable mode in an agenda buffer."
8154 (interactive)
8155 (org-agenda-check-type t 'agenda)
8156 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
8157 (setq org-agenda-start-with-clockreport-mode org-agenda-clockreport-mode)
8158 (org-agenda-set-mode-name)
8159 (org-agenda-redo)
8160 (message "Clocktable mode is %s"
8161 (if org-agenda-clockreport-mode "on" "off")))
8163 (defun org-agenda-log-mode (&optional special)
8164 "Toggle log mode in an agenda buffer.
8165 With argument SPECIAL, show all possible log items, not only the ones
8166 configured in `org-agenda-log-mode-items'.
8167 With a double `C-u' prefix arg, show *only* log items, nothing else."
8168 (interactive "P")
8169 (org-agenda-check-type t 'agenda 'timeline)
8170 (setq org-agenda-show-log
8171 (cond
8172 ((equal special '(16)) 'only)
8173 ((eq special 'clockcheck)
8174 (if (eq org-agenda-show-log 'clockcheck)
8175 nil 'clockcheck))
8176 (special '(closed clock state))
8177 (t (not org-agenda-show-log))))
8178 (setq org-agenda-start-with-log-mode org-agenda-show-log)
8179 (org-agenda-set-mode-name)
8180 (org-agenda-redo)
8181 (message "Log mode is %s"
8182 (if org-agenda-show-log "on" "off")))
8184 (defun org-agenda-archives-mode (&optional with-files)
8185 "Toggle inclusion of items in trees marked with :ARCHIVE:.
8186 When called with a prefix argument, include all archive files as well."
8187 (interactive "P")
8188 (setq org-agenda-archives-mode
8189 (if with-files t (if org-agenda-archives-mode nil 'trees)))
8190 (org-agenda-set-mode-name)
8191 (org-agenda-redo)
8192 (message
8193 "%s"
8194 (cond
8195 ((eq org-agenda-archives-mode nil)
8196 "No archives are included")
8197 ((eq org-agenda-archives-mode 'trees)
8198 (format "Trees with :%s: tag are included" org-archive-tag))
8199 ((eq org-agenda-archives-mode t)
8200 (format "Trees with :%s: tag and all active archive files are included"
8201 org-archive-tag)))))
8203 (defun org-agenda-toggle-diary ()
8204 "Toggle diary inclusion in an agenda buffer."
8205 (interactive)
8206 (org-agenda-check-type t 'agenda)
8207 (setq org-agenda-include-diary (not org-agenda-include-diary))
8208 (org-agenda-redo)
8209 (org-agenda-set-mode-name)
8210 (message "Diary inclusion turned %s"
8211 (if org-agenda-include-diary "on" "off")))
8213 (defun org-agenda-toggle-deadlines ()
8214 "Toggle inclusion of entries with a deadline in an agenda buffer."
8215 (interactive)
8216 (org-agenda-check-type t 'agenda)
8217 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
8218 (org-agenda-redo)
8219 (org-agenda-set-mode-name)
8220 (message "Deadlines inclusion turned %s"
8221 (if org-agenda-include-deadlines "on" "off")))
8223 (defun org-agenda-toggle-time-grid ()
8224 "Toggle time grid in an agenda buffer."
8225 (interactive)
8226 (org-agenda-check-type t 'agenda)
8227 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
8228 (org-agenda-redo)
8229 (org-agenda-set-mode-name)
8230 (message "Time-grid turned %s"
8231 (if org-agenda-use-time-grid "on" "off")))
8233 (defun org-agenda-set-mode-name ()
8234 "Set the mode name to indicate all the small mode settings."
8235 (setq mode-name
8236 (list "Org-Agenda"
8237 (if (get 'org-agenda-files 'org-restrict) " []" "")
8239 '(:eval (org-agenda-span-name org-agenda-current-span))
8240 (if org-agenda-follow-mode " Follow" "")
8241 (if org-agenda-entry-text-mode " ETxt" "")
8242 (if org-agenda-include-diary " Diary" "")
8243 (if org-agenda-include-deadlines " Ddl" "")
8244 (if org-agenda-use-time-grid " Grid" "")
8245 (if (and (boundp 'org-habit-show-habits)
8246 org-habit-show-habits) " Habit" "")
8247 (cond
8248 ((consp org-agenda-show-log) " LogAll")
8249 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
8250 (org-agenda-show-log " Log")
8251 (t ""))
8252 (if (or org-agenda-category-filter
8253 (get 'org-agenda-category-filter :preset-filter))
8254 '(:eval (org-propertize
8255 (concat " <"
8256 (mapconcat
8257 'identity
8258 (append
8259 (get 'org-agenda-category-filter :preset-filter)
8260 org-agenda-category-filter)
8262 ">")
8263 'face 'org-agenda-filter-category
8264 'help-echo "Category used in filtering")) "")
8265 (if (or org-agenda-tag-filter
8266 (get 'org-agenda-tag-filter :preset-filter))
8267 '(:eval (org-propertize
8268 (concat " {"
8269 (mapconcat
8270 'identity
8271 (append
8272 (get 'org-agenda-tag-filter :preset-filter)
8273 org-agenda-tag-filter)
8275 "}")
8276 'face 'org-agenda-filter-tags
8277 'help-echo "Tags used in filtering")) "")
8278 (if (or org-agenda-effort-filter
8279 (get 'org-agenda-effort-filter :preset-filter))
8280 '(:eval (org-propertize
8281 (concat " {"
8282 (mapconcat
8283 'identity
8284 (append
8285 (get 'org-agenda-effort-filter :preset-filter)
8286 org-agenda-effort-filter)
8288 "}")
8289 'face 'org-agenda-filter-effort
8290 'help-echo "Effort conditions used in filtering")) "")
8291 (if (or org-agenda-regexp-filter
8292 (get 'org-agenda-regexp-filter :preset-filter))
8293 '(:eval (org-propertize
8294 (concat " ["
8295 (mapconcat
8296 'identity
8297 (append
8298 (get 'org-agenda-regexp-filter :preset-filter)
8299 org-agenda-regexp-filter)
8301 "]")
8302 'face 'org-agenda-filter-regexp
8303 'help-echo "Regexp used in filtering")) "")
8304 (if org-agenda-archives-mode
8305 (if (eq org-agenda-archives-mode t)
8306 " Archives"
8307 (format " :%s:" org-archive-tag))
8309 (if org-agenda-clockreport-mode " Clock" "")))
8310 (force-mode-line-update))
8312 (define-obsolete-function-alias
8313 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
8315 (defun org-agenda-update-agenda-type ()
8316 "Update the agenda type after each command."
8317 (setq org-agenda-type
8318 (or (get-text-property (point) 'org-agenda-type)
8319 (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
8321 (defun org-agenda-next-line ()
8322 "Move cursor to the next line, and show if follow mode is active."
8323 (interactive)
8324 (call-interactively 'next-line)
8325 (org-agenda-do-context-action))
8327 (defun org-agenda-previous-line ()
8328 "Move cursor to the previous line, and show if follow-mode is active."
8329 (interactive)
8330 (call-interactively 'previous-line)
8331 (org-agenda-do-context-action))
8333 (defun org-agenda-next-item (n)
8334 "Move cursor to next agenda item."
8335 (interactive "p")
8336 (let ((col (current-column)))
8337 (dotimes (c n)
8338 (when (next-single-property-change (point-at-eol) 'org-marker)
8339 (move-end-of-line 1)
8340 (goto-char (next-single-property-change (point) 'org-marker))))
8341 (org-move-to-column col))
8342 (org-agenda-do-context-action))
8344 (defun org-agenda-previous-item (n)
8345 "Move cursor to next agenda item."
8346 (interactive "p")
8347 (dotimes (c n)
8348 (let ((col (current-column))
8349 (goto (save-excursion
8350 (move-end-of-line 0)
8351 (previous-single-property-change (point) 'org-marker))))
8352 (if goto (goto-char goto))
8353 (org-move-to-column col)))
8354 (org-agenda-do-context-action))
8356 (defun org-agenda-do-context-action ()
8357 "Show outline path and, maybe, follow mode window."
8358 (let ((m (org-get-at-bol 'org-marker)))
8359 (when (and (markerp m) (marker-buffer m))
8360 (and org-agenda-follow-mode
8361 (if org-agenda-follow-indirect
8362 (org-agenda-tree-to-indirect-buffer nil)
8363 (org-agenda-show)))
8364 (and org-agenda-show-outline-path
8365 (org-with-point-at m (org-display-outline-path t))))))
8367 (defun org-agenda-show-tags ()
8368 "Show the tags applicable to the current item."
8369 (interactive)
8370 (let* ((tags (org-get-at-bol 'tags)))
8371 (if tags
8372 (message "Tags are :%s:"
8373 (org-no-properties (mapconcat 'identity tags ":")))
8374 (message "No tags associated with this line"))))
8376 (defun org-agenda-goto (&optional highlight)
8377 "Go to the entry at point in the corresponding Org-mode file."
8378 (interactive)
8379 (let* ((marker (or (org-get-at-bol 'org-marker)
8380 (org-agenda-error)))
8381 (buffer (marker-buffer marker))
8382 (pos (marker-position marker)))
8383 (switch-to-buffer-other-window buffer)
8384 (widen)
8385 (push-mark)
8386 (goto-char pos)
8387 (when (derived-mode-p 'org-mode)
8388 (org-show-context 'agenda)
8389 (save-excursion
8390 (and (outline-next-heading)
8391 (org-flag-heading nil)))) ; show the next heading
8392 (when (outline-invisible-p)
8393 (show-entry)) ; display invisible text
8394 (recenter (/ (window-height) 2))
8395 (org-back-to-heading t)
8396 (if (re-search-forward org-complex-heading-regexp nil t)
8397 (goto-char (match-beginning 4)))
8398 (run-hooks 'org-agenda-after-show-hook)
8399 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
8401 (defvar org-agenda-after-show-hook nil
8402 "Normal hook run after an item has been shown from the agenda.
8403 Point is in the buffer where the item originated.")
8405 (defun org-agenda-kill ()
8406 "Kill the entry or subtree belonging to the current agenda entry."
8407 (interactive)
8408 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8409 (let* ((bufname-orig (buffer-name))
8410 (marker (or (org-get-at-bol 'org-marker)
8411 (org-agenda-error)))
8412 (buffer (marker-buffer marker))
8413 (pos (marker-position marker))
8414 (type (org-get-at-bol 'type))
8415 dbeg dend (n 0) conf)
8416 (org-with-remote-undo buffer
8417 (with-current-buffer buffer
8418 (save-excursion
8419 (goto-char pos)
8420 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
8421 (setq dbeg (progn (org-back-to-heading t) (point))
8422 dend (org-end-of-subtree t t))
8423 (setq dbeg (point-at-bol)
8424 dend (min (point-max) (1+ (point-at-eol)))))
8425 (goto-char dbeg)
8426 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
8427 (setq conf (or (eq t org-agenda-confirm-kill)
8428 (and (numberp org-agenda-confirm-kill)
8429 (> n org-agenda-confirm-kill))))
8430 (and conf
8431 (not (y-or-n-p
8432 (format "Delete entry with %d lines in buffer \"%s\"? "
8433 n (buffer-name buffer))))
8434 (error "Abort"))
8435 (let ((org-agenda-buffer-name bufname-orig))
8436 (org-remove-subtree-entries-from-agenda buffer dbeg dend))
8437 (with-current-buffer buffer (delete-region dbeg dend))
8438 (message "Agenda item and source killed"))))
8440 (defvar org-archive-default-command) ; defined in org-archive.el
8441 (defun org-agenda-archive-default ()
8442 "Archive the entry or subtree belonging to the current agenda entry."
8443 (interactive)
8444 (require 'org-archive)
8445 (org-agenda-archive-with org-archive-default-command))
8447 (defun org-agenda-archive-default-with-confirmation ()
8448 "Archive the entry or subtree belonging to the current agenda entry."
8449 (interactive)
8450 (require 'org-archive)
8451 (org-agenda-archive-with org-archive-default-command 'confirm))
8453 (defun org-agenda-archive ()
8454 "Archive the entry or subtree belonging to the current agenda entry."
8455 (interactive)
8456 (org-agenda-archive-with 'org-archive-subtree))
8458 (defun org-agenda-archive-to-archive-sibling ()
8459 "Move the entry to the archive sibling."
8460 (interactive)
8461 (org-agenda-archive-with 'org-archive-to-archive-sibling))
8463 (defun org-agenda-archive-with (cmd &optional confirm)
8464 "Move the entry to the archive sibling."
8465 (interactive)
8466 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8467 (let* ((bufname-orig (buffer-name))
8468 (marker (or (org-get-at-bol 'org-marker)
8469 (org-agenda-error)))
8470 (buffer (marker-buffer marker))
8471 (pos (marker-position marker)))
8472 (org-with-remote-undo buffer
8473 (with-current-buffer buffer
8474 (if (derived-mode-p 'org-mode)
8475 (if (and confirm
8476 (not (y-or-n-p "Archive this subtree or entry? ")))
8477 (error "Abort")
8478 (save-window-excursion
8479 (goto-char pos)
8480 (let ((org-agenda-buffer-name bufname-orig))
8481 (org-remove-subtree-entries-from-agenda))
8482 (org-back-to-heading t)
8483 (funcall cmd)))
8484 (error "Archiving works only in Org-mode files"))))))
8486 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
8487 "Remove all lines in the agenda that correspond to a given subtree.
8488 The subtree is the one in buffer BUF, starting at BEG and ending at END.
8489 If this information is not given, the function uses the tree at point."
8490 (let ((buf (or buf (current-buffer))) m p)
8491 (save-excursion
8492 (unless (and beg end)
8493 (org-back-to-heading t)
8494 (setq beg (point))
8495 (org-end-of-subtree t)
8496 (setq end (point)))
8497 (set-buffer (get-buffer org-agenda-buffer-name))
8498 (save-excursion
8499 (goto-char (point-max))
8500 (beginning-of-line 1)
8501 (while (not (bobp))
8502 (when (and (setq m (org-get-at-bol 'org-marker))
8503 (equal buf (marker-buffer m))
8504 (setq p (marker-position m))
8505 (>= p beg)
8506 (< p end))
8507 (let ((inhibit-read-only t))
8508 (delete-region (point-at-bol) (1+ (point-at-eol)))))
8509 (beginning-of-line 0))))))
8511 (defun org-agenda-refile (&optional goto rfloc no-update)
8512 "Refile the item at point.
8514 When GOTO is 0 or '(64) or \\[universal-argument] \\[universal-argument] \\[universal-argument], clear the refile cache.
8515 When GOTO is '(16) or \\[universal-argument] \\[universal-argument], go to the location of the last refiled item.
8516 RFLOC can be a refile location obtained in a different way.
8517 When NO-UPDATE is non-nil, don't redo the agenda buffer."
8518 (interactive "P")
8519 (cond
8520 ((member goto '(0 (64)))
8521 (org-refile-cache-clear))
8522 ((equal goto '(16))
8523 (org-refile-goto-last-stored))
8525 (let* ((buffer-orig (buffer-name))
8526 (marker (or (org-get-at-bol 'org-hd-marker)
8527 (org-agenda-error)))
8528 (buffer (marker-buffer marker))
8529 (pos (marker-position marker))
8530 (rfloc (or rfloc
8531 (org-refile-get-location
8532 (if goto "Goto" "Refile to") buffer
8533 org-refile-allow-creating-parent-nodes))))
8534 (with-current-buffer buffer
8535 (save-excursion
8536 (save-restriction
8537 (widen)
8538 (goto-char marker)
8539 (let ((org-agenda-buffer-name buffer-orig))
8540 (org-remove-subtree-entries-from-agenda))
8541 (org-refile goto buffer rfloc)))))
8542 (unless no-update (org-agenda-redo)))))
8544 (defun org-agenda-open-link (&optional arg)
8545 "Open the link(s) in the current entry, if any.
8546 This looks for a link in the displayed line in the agenda.
8547 It also looks at the text of the entry itself."
8548 (interactive "P")
8549 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
8550 (org-get-at-bol 'org-marker)))
8551 (buffer (and marker (marker-buffer marker)))
8552 (prefix (buffer-substring (point-at-bol) (point-at-eol)))
8553 (lkall (and buffer (org-offer-links-in-entry
8554 buffer marker arg prefix)))
8555 (lk0 (car lkall))
8556 (lk (if (stringp lk0) (list lk0) lk0))
8557 (lkend (cdr lkall))
8558 trg)
8559 (cond
8560 ((and buffer lk)
8561 (mapcar (lambda(l)
8562 (with-current-buffer buffer
8563 (setq trg (and (string-match org-bracket-link-regexp l)
8564 (match-string 1 l)))
8565 (if (or (not trg) (string-match org-any-link-re trg))
8566 (save-excursion
8567 (save-restriction
8568 (widen)
8569 (goto-char marker)
8570 (when (search-forward l nil lkend)
8571 (goto-char (match-beginning 0))
8572 (org-open-at-point))))
8573 ;; This is an internal link, widen the buffer
8574 (switch-to-buffer-other-window buffer)
8575 (widen)
8576 (goto-char marker)
8577 (when (search-forward l nil lkend)
8578 (goto-char (match-beginning 0))
8579 (org-open-at-point)))))
8580 lk))
8581 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
8582 (save-excursion
8583 (beginning-of-line 1)
8584 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
8585 (org-open-link-from-string (match-string 1)))
8586 (t (message "No link to open here")))))
8588 (defun org-agenda-copy-local-variable (var)
8589 "Get a variable from a referenced buffer and install it here."
8590 (let ((m (org-get-at-bol 'org-marker)))
8591 (when (and m (buffer-live-p (marker-buffer m)))
8592 (org-set-local var (with-current-buffer (marker-buffer m)
8593 (symbol-value var))))))
8595 (defun org-agenda-switch-to (&optional delete-other-windows)
8596 "Go to the Org mode file which contains the item at point.
8597 When optional argument DELETE-OTHER-WINDOWS is non-nil, the
8598 displayed Org file fills the frame."
8599 (interactive)
8600 (if (and org-return-follows-link
8601 (not (org-get-at-bol 'org-marker))
8602 (org-in-regexp org-bracket-link-regexp))
8603 (org-open-link-from-string (match-string 0))
8604 (let* ((marker (or (org-get-at-bol 'org-marker)
8605 (org-agenda-error)))
8606 (buffer (marker-buffer marker))
8607 (pos (marker-position marker)))
8608 (unless buffer (user-error "Trying to switch to non-existent buffer"))
8609 (org-pop-to-buffer-same-window buffer)
8610 (when delete-other-windows (delete-other-windows))
8611 (widen)
8612 (goto-char pos)
8613 (when (derived-mode-p 'org-mode)
8614 (org-show-context 'agenda)
8615 (run-hooks 'org-agenda-after-show-hook)))))
8617 (defun org-agenda-goto-mouse (ev)
8618 "Go to the Org-mode file which contains the item at the mouse click."
8619 (interactive "e")
8620 (mouse-set-point ev)
8621 (org-agenda-goto))
8623 (defun org-agenda-show (&optional full-entry)
8624 "Display the Org-mode file which contains the item at point.
8625 With prefix argument FULL-ENTRY, make the entire entry visible
8626 if it was hidden in the outline."
8627 (interactive "P")
8628 (let ((win (selected-window)))
8629 (org-agenda-goto t)
8630 (when full-entry (org-show-entry))
8631 (select-window win)))
8633 (defvar org-agenda-show-window nil)
8634 (defun org-agenda-show-and-scroll-up (&optional arg)
8635 "Display the Org-mode file which contains the item at point.
8636 When called repeatedly, scroll the window that is displaying the buffer.
8637 With a \\[universal-argument] prefix, use `org-show-entry' instead of
8638 `show-subtree' to display the item, so that drawers and logbooks stay
8639 folded."
8640 (interactive "P")
8641 (let ((win (selected-window)))
8642 (if (and (window-live-p org-agenda-show-window)
8643 (eq this-command last-command))
8644 (progn
8645 (select-window org-agenda-show-window)
8646 (ignore-errors (scroll-up)))
8647 (org-agenda-goto t)
8648 (if arg (org-show-entry) (show-subtree))
8649 (setq org-agenda-show-window (selected-window)))
8650 (select-window win)))
8652 (defun org-agenda-show-scroll-down ()
8653 "Scroll down the window showing the agenda."
8654 (interactive)
8655 (let ((win (selected-window)))
8656 (when (window-live-p org-agenda-show-window)
8657 (select-window org-agenda-show-window)
8658 (ignore-errors (scroll-down))
8659 (select-window win))))
8661 (defun org-agenda-show-1 (&optional more)
8662 "Display the Org-mode file which contains the item at point.
8663 The prefix arg selects the amount of information to display:
8665 0 hide the subtree
8666 1 just show the entry according to defaults.
8667 2 show the children view
8668 3 show the subtree view
8669 4 show the entire subtree and any LOGBOOK drawers
8670 5 show the entire subtree and any drawers
8671 With prefix argument FULL-ENTRY, make the entire entry visible
8672 if it was hidden in the outline."
8673 (interactive "p")
8674 (let ((win (selected-window)))
8675 (org-agenda-goto t)
8676 (org-back-to-heading)
8677 (set-window-start (selected-window) (point-at-bol))
8678 (cond
8679 ((= more 0)
8680 (hide-subtree)
8681 (save-excursion
8682 (org-back-to-heading)
8683 (run-hook-with-args 'org-cycle-hook 'folded))
8684 (message "Remote: FOLDED"))
8685 ((and (org-called-interactively-p 'any) (= more 1))
8686 (message "Remote: show with default settings"))
8687 ((= more 2)
8688 (show-entry)
8689 (show-children)
8690 (save-excursion
8691 (org-back-to-heading)
8692 (run-hook-with-args 'org-cycle-hook 'children))
8693 (message "Remote: CHILDREN"))
8694 ((= more 3)
8695 (show-subtree)
8696 (save-excursion
8697 (org-back-to-heading)
8698 (run-hook-with-args 'org-cycle-hook 'subtree))
8699 (message "Remote: SUBTREE"))
8700 ((= more 4)
8701 (show-subtree)
8702 (save-excursion
8703 (org-back-to-heading)
8704 (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
8705 (message "Remote: SUBTREE AND LOGBOOK"))
8706 ((> more 4)
8707 (show-subtree)
8708 (message "Remote: SUBTREE AND ALL DRAWERS")))
8709 (select-window win)))
8711 (defvar org-agenda-cycle-counter nil)
8712 (defun org-agenda-cycle-show (&optional n)
8713 "Show the current entry in another window, with default settings.
8715 Default settings are taken from `org-show-context-detail'. When
8716 use repeatedly in immediate succession, the remote entry will
8717 cycle through visibility
8719 children -> subtree -> folded
8721 When called with a numeric prefix arg, that arg will be passed through to
8722 `org-agenda-show-1'. For the interpretation of that argument, see the
8723 docstring of `org-agenda-show-1'."
8724 (interactive "P")
8725 (if (integerp n)
8726 (setq org-agenda-cycle-counter n)
8727 (if (not (eq last-command this-command))
8728 (setq org-agenda-cycle-counter 1)
8729 (if (equal org-agenda-cycle-counter 0)
8730 (setq org-agenda-cycle-counter 2)
8731 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
8732 (if (> org-agenda-cycle-counter 3)
8733 (setq org-agenda-cycle-counter 0)))))
8734 (org-agenda-show-1 org-agenda-cycle-counter))
8736 (defun org-agenda-recenter (arg)
8737 "Display the Org-mode file which contains the item at point and recenter."
8738 (interactive "P")
8739 (let ((win (selected-window)))
8740 (org-agenda-goto t)
8741 (recenter arg)
8742 (select-window win)))
8744 (defun org-agenda-show-mouse (ev)
8745 "Display the Org-mode file which contains the item at the mouse click."
8746 (interactive "e")
8747 (mouse-set-point ev)
8748 (org-agenda-show))
8750 (defun org-agenda-check-no-diary ()
8751 "Check if the entry is a diary link and abort if yes."
8752 (if (org-get-at-bol 'org-agenda-diary-link)
8753 (org-agenda-error)))
8755 (defun org-agenda-error ()
8756 "Throw an error when a command is not allowed in the agenda."
8757 (user-error "Command not allowed in this line"))
8759 (defun org-agenda-tree-to-indirect-buffer (arg)
8760 "Show the subtree corresponding to the current entry in an indirect buffer.
8761 This calls the command `org-tree-to-indirect-buffer' from the original buffer.
8763 With a numerical prefix ARG, go up to this level and then take that tree.
8764 With a negative numeric ARG, go up by this number of levels.
8765 With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
8766 use the dedicated frame)."
8767 (interactive "P")
8768 (if current-prefix-arg
8769 (org-agenda-do-tree-to-indirect-buffer arg)
8770 (let ((agenda-buffer (buffer-name))
8771 (agenda-window (selected-window))
8772 (indirect-window
8773 (and org-last-indirect-buffer
8774 (get-buffer-window org-last-indirect-buffer))))
8775 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
8776 (unless (or (eq org-indirect-buffer-display 'new-frame)
8777 (eq org-indirect-buffer-display 'dedicated-frame))
8778 (unwind-protect
8779 (unless (and indirect-window (window-live-p indirect-window))
8780 (setq indirect-window (split-window agenda-window)))
8781 (and indirect-window (select-window indirect-window))
8782 (switch-to-buffer org-last-indirect-buffer :norecord)
8783 (fit-window-to-buffer indirect-window)))
8784 (select-window (get-buffer-window agenda-buffer))
8785 (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
8787 (defun org-agenda-do-tree-to-indirect-buffer (arg)
8788 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
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 (with-current-buffer buffer
8795 (save-excursion
8796 (goto-char pos)
8797 (funcall 'org-tree-to-indirect-buffer arg)))))
8799 (defvar org-last-heading-marker (make-marker)
8800 "Marker pointing to the headline that last changed its TODO state
8801 by a remote command from the agenda.")
8803 (defun org-agenda-todo-nextset ()
8804 "Switch TODO entry to next sequence."
8805 (interactive)
8806 (org-agenda-todo 'nextset))
8808 (defun org-agenda-todo-previousset ()
8809 "Switch TODO entry to previous sequence."
8810 (interactive)
8811 (org-agenda-todo 'previousset))
8813 (defun org-agenda-todo (&optional arg)
8814 "Cycle TODO state of line at point, also in Org-mode file.
8815 This changes the line at point, all other lines in the agenda referring to
8816 the same tree node, and the headline of the tree node in the Org-mode file."
8817 (interactive "P")
8818 (org-agenda-check-no-diary)
8819 (let* ((col (current-column))
8820 (marker (or (org-get-at-bol 'org-marker)
8821 (org-agenda-error)))
8822 (buffer (marker-buffer marker))
8823 (pos (marker-position marker))
8824 (hdmarker (org-get-at-bol 'org-hd-marker))
8825 (todayp (org-agenda-todayp (org-get-at-bol 'day)))
8826 (inhibit-read-only t)
8827 org-agenda-headline-snapshot-before-repeat newhead just-one)
8828 (org-with-remote-undo buffer
8829 (with-current-buffer buffer
8830 (widen)
8831 (goto-char pos)
8832 (org-show-context 'agenda)
8833 (save-excursion
8834 (and (outline-next-heading)
8835 (org-flag-heading nil))) ; show the next heading
8836 (let ((current-prefix-arg arg))
8837 (call-interactively 'org-todo))
8838 (and (bolp) (forward-char 1))
8839 (setq newhead (org-get-heading))
8840 (when (and (org-bound-and-true-p
8841 org-agenda-headline-snapshot-before-repeat)
8842 (not (equal org-agenda-headline-snapshot-before-repeat
8843 newhead))
8844 todayp)
8845 (setq newhead org-agenda-headline-snapshot-before-repeat
8846 just-one t))
8847 (save-excursion
8848 (org-back-to-heading)
8849 (move-marker org-last-heading-marker (point))))
8850 (beginning-of-line 1)
8851 (save-window-excursion
8852 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
8853 (when (org-bound-and-true-p org-clock-out-when-done)
8854 (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
8855 newhead)
8856 (org-agenda-unmark-clocking-task))
8857 (org-move-to-column col)
8858 (org-agenda-mark-clocking-task))))
8860 (defun org-agenda-add-note (&optional arg)
8861 "Add a time-stamped note to the entry at point."
8862 (interactive "P")
8863 (org-agenda-check-no-diary)
8864 (let* ((marker (or (org-get-at-bol 'org-marker)
8865 (org-agenda-error)))
8866 (buffer (marker-buffer marker))
8867 (pos (marker-position marker))
8868 (hdmarker (org-get-at-bol 'org-hd-marker))
8869 (inhibit-read-only t))
8870 (with-current-buffer buffer
8871 (widen)
8872 (goto-char pos)
8873 (org-show-context 'agenda)
8874 (save-excursion
8875 (and (outline-next-heading)
8876 (org-flag-heading nil))) ; show the next heading
8877 (org-add-note))))
8879 (defun org-agenda-change-all-lines (newhead hdmarker
8880 &optional fixface just-this)
8881 "Change all lines in the agenda buffer which match HDMARKER.
8882 The new content of the line will be NEWHEAD (as modified by
8883 `org-agenda-format-item'). HDMARKER is checked with
8884 `equal' against all `org-hd-marker' text properties in the file.
8885 If FIXFACE is non-nil, the face of each item is modified according to
8886 the new TODO state.
8887 If JUST-THIS is non-nil, change just the current line, not all.
8888 If FORCE-TAGS is non nil, the car of it returns the new tags."
8889 (let* ((inhibit-read-only t)
8890 (line (org-current-line))
8891 (org-agenda-buffer (current-buffer))
8892 (thetags (with-current-buffer (marker-buffer hdmarker)
8893 (save-excursion (save-restriction (widen)
8894 (goto-char hdmarker)
8895 (org-get-tags-at)))))
8896 props m pl undone-face done-face finish new dotime level cat tags)
8897 (save-excursion
8898 (goto-char (point-max))
8899 (beginning-of-line 1)
8900 (while (not finish)
8901 (setq finish (bobp))
8902 (when (and (setq m (org-get-at-bol 'org-hd-marker))
8903 (or (not just-this) (= (org-current-line) line))
8904 (equal m hdmarker))
8905 (setq props (text-properties-at (point))
8906 dotime (org-get-at-bol 'dotime)
8907 cat (org-get-at-eol 'org-category 1)
8908 level (org-get-at-bol 'level)
8909 tags thetags
8911 (let ((org-prefix-format-compiled
8912 (or (get-text-property (min (1- (point-max)) (point)) 'format)
8913 org-prefix-format-compiled))
8914 (extra (org-get-at-bol 'extra)))
8915 (with-current-buffer (marker-buffer hdmarker)
8916 (save-excursion
8917 (save-restriction
8918 (widen)
8919 (org-agenda-format-item extra newhead level cat tags dotime)))))
8920 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
8921 undone-face (org-get-at-bol 'undone-face)
8922 done-face (org-get-at-bol 'done-face))
8923 (beginning-of-line 1)
8924 (cond
8925 ((equal new "")
8926 (and (looking-at ".*\n?") (replace-match "")))
8927 ((looking-at ".*")
8928 (replace-match new t t)
8929 (beginning-of-line 1)
8930 (add-text-properties (point-at-bol) (point-at-eol) props)
8931 (when fixface
8932 (add-text-properties
8933 (point-at-bol) (point-at-eol)
8934 (list 'face
8935 (if org-last-todo-state-is-todo
8936 undone-face done-face))))
8937 (org-agenda-highlight-todo 'line)
8938 (beginning-of-line 1))
8939 (t (error "Line update did not work")))
8940 (save-restriction
8941 (narrow-to-region (point-at-bol) (point-at-eol))
8942 (org-agenda-finalize)))
8943 (beginning-of-line 0)))))
8945 (defun org-agenda-align-tags (&optional line)
8946 "Align all tags in agenda items to `org-agenda-tags-column'."
8947 (let ((inhibit-read-only t) l c)
8948 (save-excursion
8949 (goto-char (if line (point-at-bol) (point-min)))
8950 (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
8951 (if line (point-at-eol) nil) t)
8952 (add-text-properties
8953 (match-beginning 2) (match-end 2)
8954 (list 'face (delq nil (let ((prop (get-text-property
8955 (match-beginning 2) 'face)))
8956 (or (listp prop) (setq prop (list prop)))
8957 (if (memq 'org-tag prop)
8958 prop
8959 (cons 'org-tag prop))))))
8960 (setq l (- (match-end 2) (match-beginning 2))
8961 c (if (< org-agenda-tags-column 0)
8962 (- (abs org-agenda-tags-column) l)
8963 org-agenda-tags-column))
8964 (delete-region (match-beginning 1) (match-end 1))
8965 (goto-char (match-beginning 1))
8966 (insert (org-add-props
8967 (make-string (max 1 (- c (current-column))) ?\ )
8968 (plist-put (copy-sequence (text-properties-at (point)))
8969 'face nil))))
8970 (goto-char (point-min))
8971 (org-font-lock-add-tag-faces (point-max)))))
8973 (defun org-agenda-priority-up ()
8974 "Increase the priority of line at point, also in Org-mode file."
8975 (interactive)
8976 (org-agenda-priority 'up))
8978 (defun org-agenda-priority-down ()
8979 "Decrease the priority of line at point, also in Org-mode file."
8980 (interactive)
8981 (org-agenda-priority 'down))
8983 (defun org-agenda-priority (&optional force-direction)
8984 "Set the priority of line at point, also in Org-mode file.
8985 This changes the line at point, all other lines in the agenda referring to
8986 the same tree node, and the headline of the tree node in the Org-mode file.
8987 Called with a universal prefix arg, show the priority instead of setting it."
8988 (interactive "P")
8989 (if (equal force-direction '(4))
8990 (org-show-priority)
8991 (unless org-enable-priority-commands
8992 (error "Priority commands are disabled"))
8993 (org-agenda-check-no-diary)
8994 (let* ((col (current-column))
8995 (marker (or (org-get-at-bol 'org-marker)
8996 (org-agenda-error)))
8997 (hdmarker (org-get-at-bol 'org-hd-marker))
8998 (buffer (marker-buffer hdmarker))
8999 (pos (marker-position hdmarker))
9000 (inhibit-read-only t)
9001 newhead)
9002 (org-with-remote-undo buffer
9003 (with-current-buffer buffer
9004 (widen)
9005 (goto-char pos)
9006 (org-show-context 'agenda)
9007 (save-excursion
9008 (and (outline-next-heading)
9009 (org-flag-heading nil))) ; show the next heading
9010 (funcall 'org-priority force-direction)
9011 (end-of-line 1)
9012 (setq newhead (org-get-heading)))
9013 (org-agenda-change-all-lines newhead hdmarker)
9014 (org-move-to-column col)))))
9016 ;; FIXME: should fix the tags property of the agenda line.
9017 (defun org-agenda-set-tags (&optional tag onoff)
9018 "Set tags for the current headline."
9019 (interactive)
9020 (org-agenda-check-no-diary)
9021 (if (and (org-region-active-p) (org-called-interactively-p 'any))
9022 (call-interactively 'org-change-tag-in-region)
9023 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9024 (org-agenda-error)))
9025 (buffer (marker-buffer hdmarker))
9026 (pos (marker-position hdmarker))
9027 (inhibit-read-only t)
9028 newhead)
9029 (org-with-remote-undo buffer
9030 (with-current-buffer buffer
9031 (widen)
9032 (goto-char pos)
9033 (save-excursion
9034 (org-show-context 'agenda))
9035 (save-excursion
9036 (and (outline-next-heading)
9037 (org-flag-heading nil))) ; show the next heading
9038 (goto-char pos)
9039 (if tag
9040 (org-toggle-tag tag onoff)
9041 (call-interactively 'org-set-tags))
9042 (end-of-line 1)
9043 (setq newhead (org-get-heading)))
9044 (org-agenda-change-all-lines newhead hdmarker)
9045 (beginning-of-line 1)))))
9047 (defun org-agenda-set-property ()
9048 "Set a property for the current headline."
9049 (interactive)
9050 (org-agenda-check-no-diary)
9051 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9052 (org-agenda-error)))
9053 (buffer (marker-buffer hdmarker))
9054 (pos (marker-position hdmarker))
9055 (inhibit-read-only t)
9056 newhead)
9057 (org-with-remote-undo buffer
9058 (with-current-buffer buffer
9059 (widen)
9060 (goto-char pos)
9061 (save-excursion
9062 (org-show-context 'agenda))
9063 (save-excursion
9064 (and (outline-next-heading)
9065 (org-flag-heading nil))) ; show the next heading
9066 (goto-char pos)
9067 (call-interactively 'org-set-property)))))
9069 (defun org-agenda-set-effort ()
9070 "Set the effort property for the current headline."
9071 (interactive)
9072 (org-agenda-check-no-diary)
9073 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9074 (org-agenda-error)))
9075 (buffer (marker-buffer hdmarker))
9076 (pos (marker-position hdmarker))
9077 (inhibit-read-only t)
9078 newhead)
9079 (org-with-remote-undo buffer
9080 (with-current-buffer buffer
9081 (widen)
9082 (goto-char pos)
9083 (save-excursion
9084 (org-show-context 'agenda))
9085 (save-excursion
9086 (and (outline-next-heading)
9087 (org-flag-heading nil))) ; show the next heading
9088 (goto-char pos)
9089 (call-interactively 'org-set-effort)
9090 (end-of-line 1)
9091 (setq newhead (org-get-heading)))
9092 (org-agenda-change-all-lines newhead hdmarker))))
9094 (defun org-agenda-toggle-archive-tag ()
9095 "Toggle the archive tag for the current entry."
9096 (interactive)
9097 (org-agenda-check-no-diary)
9098 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9099 (org-agenda-error)))
9100 (buffer (marker-buffer hdmarker))
9101 (pos (marker-position hdmarker))
9102 (inhibit-read-only t)
9103 newhead)
9104 (org-with-remote-undo buffer
9105 (with-current-buffer buffer
9106 (widen)
9107 (goto-char pos)
9108 (org-show-context 'agenda)
9109 (save-excursion
9110 (and (outline-next-heading)
9111 (org-flag-heading nil))) ; show the next heading
9112 (call-interactively 'org-toggle-archive-tag)
9113 (end-of-line 1)
9114 (setq newhead (org-get-heading)))
9115 (org-agenda-change-all-lines newhead hdmarker)
9116 (beginning-of-line 1))))
9118 (defun org-agenda-do-date-later (arg)
9119 (interactive "P")
9120 (cond
9121 ((or (equal arg '(16))
9122 (memq last-command
9123 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9124 (setq this-command 'org-agenda-date-later-minutes)
9125 (org-agenda-date-later-minutes 1))
9126 ((or (equal arg '(4))
9127 (memq last-command
9128 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9129 (setq this-command 'org-agenda-date-later-hours)
9130 (org-agenda-date-later-hours 1))
9132 (org-agenda-date-later (prefix-numeric-value arg)))))
9134 (defun org-agenda-do-date-earlier (arg)
9135 (interactive "P")
9136 (cond
9137 ((or (equal arg '(16))
9138 (memq last-command
9139 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9140 (setq this-command 'org-agenda-date-earlier-minutes)
9141 (org-agenda-date-earlier-minutes 1))
9142 ((or (equal arg '(4))
9143 (memq last-command
9144 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9145 (setq this-command 'org-agenda-date-earlier-hours)
9146 (org-agenda-date-earlier-hours 1))
9148 (org-agenda-date-earlier (prefix-numeric-value arg)))))
9150 (defun org-agenda-date-later (arg &optional what)
9151 "Change the date of this item to ARG day(s) later."
9152 (interactive "p")
9153 (org-agenda-check-type t 'agenda 'timeline)
9154 (org-agenda-check-no-diary)
9155 (let* ((marker (or (org-get-at-bol 'org-marker)
9156 (org-agenda-error)))
9157 (buffer (marker-buffer marker))
9158 (pos (marker-position marker))
9159 cdate today)
9160 (org-with-remote-undo buffer
9161 (with-current-buffer buffer
9162 (widen)
9163 (goto-char pos)
9164 (if (not (org-at-timestamp-p))
9165 (error "Cannot find time stamp"))
9166 (when (and org-agenda-move-date-from-past-immediately-to-today
9167 (equal arg 1)
9168 (or (not what) (eq what 'day))
9169 (not (save-match-data (org-at-date-range-p))))
9170 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
9171 cdate (calendar-absolute-from-gregorian
9172 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
9173 today (org-today))
9174 (if (> today cdate)
9175 ;; immediately shift to today
9176 (setq arg (- today cdate))))
9177 (org-timestamp-change arg (or what 'day))
9178 (when (and (org-at-date-range-p)
9179 (re-search-backward org-tr-regexp-both (point-at-bol)))
9180 (let ((end org-last-changed-timestamp))
9181 (org-timestamp-change arg (or what 'day))
9182 (setq org-last-changed-timestamp
9183 (concat org-last-changed-timestamp "--" end)))))
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-date-earlier (arg &optional what)
9188 "Change the date of this item to ARG day(s) earlier."
9189 (interactive "p")
9190 (org-agenda-date-later (- arg) what))
9192 (defun org-agenda-date-later-minutes (arg)
9193 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9194 (interactive "p")
9195 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9196 (org-agenda-date-later arg 'minute))
9198 (defun org-agenda-date-earlier-minutes (arg)
9199 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9200 (interactive "p")
9201 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9202 (org-agenda-date-earlier arg 'minute))
9204 (defun org-agenda-date-later-hours (arg)
9205 "Change the time of this item, in hour steps."
9206 (interactive "p")
9207 (org-agenda-date-later arg 'hour))
9209 (defun org-agenda-date-earlier-hours (arg)
9210 "Change the time of this item, in hour steps."
9211 (interactive "p")
9212 (org-agenda-date-earlier arg 'hour))
9214 (defun org-agenda-show-new-time (marker stamp &optional prefix)
9215 "Show new date stamp via text properties."
9216 ;; We use text properties to make this undoable
9217 (let ((inhibit-read-only t))
9218 (setq stamp (concat prefix " => " stamp " "))
9219 (save-excursion
9220 (goto-char (point-max))
9221 (while (not (bobp))
9222 (when (equal marker (org-get-at-bol 'org-marker))
9223 (remove-text-properties (point-at-bol) (point-at-eol) '(display))
9224 (org-move-to-column (- (window-width) (length stamp)) t)
9225 (if (featurep 'xemacs)
9226 ;; Use `duplicable' property to trigger undo recording
9227 (let ((ex (make-extent nil nil))
9228 (gl (make-glyph stamp)))
9229 (set-glyph-face gl 'secondary-selection)
9230 (set-extent-properties
9231 ex (list 'invisible t 'end-glyph gl 'duplicable t))
9232 (insert-extent ex (1- (point)) (point-at-eol)))
9233 (add-text-properties
9234 (1- (point)) (point-at-eol)
9235 (list 'display (org-add-props stamp nil
9236 'face '(secondary-selection default)))))
9237 (beginning-of-line 1))
9238 (beginning-of-line 0)))))
9240 (defun org-agenda-date-prompt (arg)
9241 "Change the date of this item. Date is prompted for, with default today.
9242 The prefix ARG is passed to the `org-time-stamp' command and can therefore
9243 be used to request time specification in the time stamp."
9244 (interactive "P")
9245 (org-agenda-check-type t 'agenda 'timeline)
9246 (org-agenda-check-no-diary)
9247 (let* ((marker (or (org-get-at-bol 'org-marker)
9248 (org-agenda-error)))
9249 (buffer (marker-buffer marker))
9250 (pos (marker-position marker)))
9251 (org-with-remote-undo buffer
9252 (with-current-buffer buffer
9253 (widen)
9254 (goto-char pos)
9255 (if (not (org-at-timestamp-p t))
9256 (error "Cannot find time stamp"))
9257 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
9258 (org-agenda-show-new-time marker org-last-changed-timestamp))
9259 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9261 (defun org-agenda-schedule (arg &optional time)
9262 "Schedule the item at point.
9263 ARG is passed through to `org-schedule'."
9264 (interactive "P")
9265 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9266 (org-agenda-check-no-diary)
9267 (let* ((marker (or (org-get-at-bol 'org-marker)
9268 (org-agenda-error)))
9269 (type (marker-insertion-type marker))
9270 (buffer (marker-buffer marker))
9271 (pos (marker-position marker))
9273 (set-marker-insertion-type marker t)
9274 (org-with-remote-undo buffer
9275 (with-current-buffer buffer
9276 (widen)
9277 (goto-char pos)
9278 (setq ts (org-schedule arg time)))
9279 (org-agenda-show-new-time marker ts " S"))
9280 (message "%s" ts)))
9282 (defun org-agenda-deadline (arg &optional time)
9283 "Schedule the item at point.
9284 ARG is passed through to `org-deadline'."
9285 (interactive "P")
9286 (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
9287 (org-agenda-check-no-diary)
9288 (let* ((marker (or (org-get-at-bol 'org-marker)
9289 (org-agenda-error)))
9290 (buffer (marker-buffer marker))
9291 (pos (marker-position marker))
9293 (org-with-remote-undo buffer
9294 (with-current-buffer buffer
9295 (widen)
9296 (goto-char pos)
9297 (setq ts (org-deadline arg time)))
9298 (org-agenda-show-new-time marker ts " D"))
9299 (message "%s" ts)))
9301 (defun org-agenda-clock-in (&optional arg)
9302 "Start the clock on the currently selected item."
9303 (interactive "P")
9304 (org-agenda-check-no-diary)
9305 (if (equal arg '(4))
9306 (org-clock-in arg)
9307 (let* ((marker (or (org-get-at-bol 'org-marker)
9308 (org-agenda-error)))
9309 (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
9310 (pos (marker-position marker))
9311 (col (current-column))
9312 newhead)
9313 (org-with-remote-undo (marker-buffer marker)
9314 (with-current-buffer (marker-buffer marker)
9315 (widen)
9316 (goto-char pos)
9317 (org-show-context 'agenda)
9318 (org-show-entry)
9319 (org-cycle-hide-drawers 'children)
9320 (org-clock-in arg)
9321 (setq newhead (org-get-heading)))
9322 (org-agenda-change-all-lines newhead hdmarker))
9323 (org-move-to-column col))))
9325 (defun org-agenda-clock-out ()
9326 "Stop the currently running clock."
9327 (interactive)
9328 (unless (marker-buffer org-clock-marker)
9329 (error "No running clock"))
9330 (let ((marker (make-marker)) (col (current-column)) newhead)
9331 (org-with-remote-undo (marker-buffer org-clock-marker)
9332 (with-current-buffer (marker-buffer org-clock-marker)
9333 (save-excursion
9334 (save-restriction
9335 (widen)
9336 (goto-char org-clock-marker)
9337 (org-back-to-heading t)
9338 (move-marker marker (point))
9339 (org-clock-out)
9340 (setq newhead (org-get-heading))))))
9341 (org-agenda-change-all-lines newhead marker)
9342 (move-marker marker nil)
9343 (org-move-to-column col)
9344 (org-agenda-unmark-clocking-task)))
9346 (defun org-agenda-clock-cancel (&optional arg)
9347 "Cancel the currently running clock."
9348 (interactive "P")
9349 (unless (marker-buffer org-clock-marker)
9350 (user-error "No running clock"))
9351 (org-with-remote-undo (marker-buffer org-clock-marker)
9352 (org-clock-cancel)))
9354 (defun org-agenda-clock-goto ()
9355 "Jump to the currently clocked in task within the agenda.
9356 If the currently clocked in task is not listed in the agenda
9357 buffer, display it in another window."
9358 (interactive)
9359 (let (pos)
9360 (mapc (lambda (o)
9361 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
9362 (setq pos (overlay-start o))))
9363 (overlays-in (point-min) (point-max)))
9364 (cond (pos (goto-char pos))
9365 ;; If the currently clocked entry is not in the agenda
9366 ;; buffer, we visit it in another window:
9367 (org-clock-current-task
9368 (org-switch-to-buffer-other-window (org-clock-goto)))
9369 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
9371 (defun org-agenda-diary-entry-in-org-file ()
9372 "Make a diary entry in the file `org-agenda-diary-file'."
9373 (let (d1 d2 char (text "") dp1 dp2)
9374 (if (equal (buffer-name) "*Calendar*")
9375 (setq d1 (calendar-cursor-to-date t)
9376 d2 (car calendar-mark-ring))
9377 (setq dp1 (get-text-property (point-at-bol) 'day))
9378 (unless dp1 (user-error "No date defined in current line"))
9379 (setq d1 (calendar-gregorian-from-absolute dp1)
9380 d2 (and (ignore-errors (mark))
9381 (save-excursion
9382 (goto-char (mark))
9383 (setq dp2 (get-text-property (point-at-bol) 'day)))
9384 (calendar-gregorian-from-absolute dp2))))
9385 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
9386 (setq char (read-char-exclusive))
9387 (cond
9388 ((equal char ?d)
9389 (setq text (read-string "Day entry: "))
9390 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
9391 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9392 ((equal char ?a)
9393 (setq d1 (list (car d1) (nth 1 d1)
9394 (read-number (format "Reference year [%d]: " (nth 2 d1))
9395 (nth 2 d1))))
9396 (setq text (read-string "Anniversary (use %d to show years): "))
9397 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
9398 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9399 ((equal char ?b)
9400 (setq text (read-string "Block entry: "))
9401 (unless (and d1 d2 (not (equal d1 d2)))
9402 (user-error "No block of days selected"))
9403 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
9404 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9405 ((equal char ?j)
9406 (org-switch-to-buffer-other-window
9407 (find-file-noselect org-agenda-diary-file))
9408 (require 'org-datetree)
9409 (org-datetree-find-date-create d1)
9410 (org-reveal t))
9411 (t (user-error "Invalid selection character `%c'" char)))))
9413 (defcustom org-agenda-insert-diary-strategy 'date-tree
9414 "Where in `org-agenda-diary-file' should new entries be added?
9415 Valid values:
9417 date-tree in the date tree, as child of the date
9418 top-level as top-level entries at the end of the file."
9419 :group 'org-agenda
9420 :type '(choice
9421 (const :tag "in a date tree" date-tree)
9422 (const :tag "as top level at end of file" top-level)))
9424 (defcustom org-agenda-insert-diary-extract-time nil
9425 "Non-nil means extract any time specification from the diary entry."
9426 :group 'org-agenda
9427 :version "24.1"
9428 :type 'boolean)
9430 (defcustom org-agenda-bulk-mark-char ">"
9431 "A single-character string to be used as the bulk mark."
9432 :group 'org-agenda
9433 :version "24.1"
9434 :type 'string)
9436 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
9437 "Add a diary entry with TYPE to `org-agenda-diary-file'.
9438 If TEXT is not empty, it will become the headline of the new entry, and
9439 the resulting entry will not be shown. When TEXT is empty, switch to
9440 `org-agenda-diary-file' and let the user finish the entry there."
9441 (let ((cw (current-window-configuration)))
9442 (org-switch-to-buffer-other-window
9443 (find-file-noselect org-agenda-diary-file))
9444 (widen)
9445 (goto-char (point-min))
9446 (cond
9447 ((eq type 'anniversary)
9448 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
9449 (progn
9450 (or (org-at-heading-p t)
9451 (progn
9452 (outline-next-heading)
9453 (insert "* Anniversaries\n\n")
9454 (beginning-of-line -1)))))
9455 (outline-next-heading)
9456 (org-back-over-empty-lines)
9457 (backward-char 1)
9458 (insert "\n")
9459 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
9460 (nth 2 d1) (car d1) (nth 1 d1) text)))
9461 ((eq type 'day)
9462 (let ((org-prefix-has-time t)
9463 (org-agenda-time-leading-zero t)
9464 fmt time time2)
9465 (if org-agenda-insert-diary-extract-time
9466 ;; Use org-agenda-format-item to parse text for a time-range and
9467 ;; remove it. FIXME: This is a hack, we should refactor
9468 ;; that function to make time extraction available separately
9469 (setq fmt (org-agenda-format-item nil text nil nil nil t)
9470 time (get-text-property 0 'time fmt)
9471 time2 (if (> (length time) 0)
9472 ;; split-string removes trailing ...... if
9473 ;; no end time given. First space
9474 ;; separates time from date.
9475 (concat " " (car (split-string time "\\.")))
9476 nil)
9477 text (get-text-property 0 'txt fmt)))
9478 (if (eq org-agenda-insert-diary-strategy 'top-level)
9479 (org-agenda-insert-diary-as-top-level text)
9480 (require 'org-datetree)
9481 (org-datetree-find-date-create d1)
9482 (org-agenda-insert-diary-make-new-entry text))
9483 (org-insert-time-stamp (org-time-from-absolute
9484 (calendar-absolute-from-gregorian d1))
9485 nil nil nil nil time2))
9486 (end-of-line 0))
9487 ((eq type 'block)
9488 (if (> (calendar-absolute-from-gregorian d1)
9489 (calendar-absolute-from-gregorian d2))
9490 (setq d1 (prog1 d2 (setq d2 d1))))
9491 (if (eq org-agenda-insert-diary-strategy 'top-level)
9492 (org-agenda-insert-diary-as-top-level text)
9493 (require 'org-datetree)
9494 (org-datetree-find-date-create d1)
9495 (org-agenda-insert-diary-make-new-entry text))
9496 (org-insert-time-stamp (org-time-from-absolute
9497 (calendar-absolute-from-gregorian d1)))
9498 (insert "--")
9499 (org-insert-time-stamp (org-time-from-absolute
9500 (calendar-absolute-from-gregorian d2)))
9501 (end-of-line 0)))
9502 (if (string-match "\\S-" text)
9503 (progn
9504 (set-window-configuration cw)
9505 (message "%s entry added to %s"
9506 (capitalize (symbol-name type))
9507 (abbreviate-file-name org-agenda-diary-file)))
9508 (org-reveal t)
9509 (message "Please finish entry here"))))
9511 (defun org-agenda-insert-diary-as-top-level (text)
9512 "Make new entry as a top-level entry at the end of the file.
9513 Add TEXT as headline, and position the cursor in the second line so that
9514 a timestamp can be added there."
9515 (widen)
9516 (goto-char (point-max))
9517 (unless (bolp) (insert "\n"))
9518 (org-insert-heading nil t t)
9519 (insert text)
9520 (org-end-of-meta-data)
9521 (unless (bolp) (insert "\n"))
9522 (when org-adapt-indentation (org-indent-to-column 2)))
9524 (defun org-agenda-insert-diary-make-new-entry (text)
9525 "Make a new entry with TEXT as the first child of the current subtree.
9526 Position the point in the heading's first body line so that
9527 a timestamp can be added there."
9528 (outline-next-heading)
9529 (org-back-over-empty-lines)
9530 (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
9531 (org-insert-heading nil t)
9532 (org-do-demote)
9533 (let ((col (current-column)))
9534 (insert text)
9535 (org-end-of-meta-data)
9536 ;; Ensure point is left on a blank line, at proper indentation.
9537 (unless (bolp) (insert "\n"))
9538 (unless (org-looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
9539 (when org-adapt-indentation (org-indent-to-column col)))
9540 (org-show-set-visibility 'lineage))
9542 (defun org-agenda-diary-entry ()
9543 "Make a diary entry, like the `i' command from the calendar.
9544 All the standard commands work: block, weekly etc.
9545 When `org-agenda-diary-file' points to a file,
9546 `org-agenda-diary-entry-in-org-file' is called instead to create
9547 entries in that Org-mode file."
9548 (interactive)
9549 (if (not (eq org-agenda-diary-file 'diary-file))
9550 (org-agenda-diary-entry-in-org-file)
9551 (require 'diary-lib)
9552 (let* ((char (progn
9553 (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
9554 (read-char-exclusive)))
9555 (cmd (cdr (assoc char
9556 '((?d . diary-insert-entry)
9557 (?w . diary-insert-weekly-entry)
9558 (?m . diary-insert-monthly-entry)
9559 (?y . diary-insert-yearly-entry)
9560 (?a . diary-insert-anniversary-entry)
9561 (?b . diary-insert-block-entry)
9562 (?c . diary-insert-cyclic-entry)))))
9563 (oldf (symbol-function 'calendar-cursor-to-date))
9564 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
9565 (point (point))
9566 (mark (or (mark t) (point))))
9567 (unless cmd
9568 (user-error "No command associated with <%c>" char))
9569 (unless (and (get-text-property point 'day)
9570 (or (not (equal ?b char))
9571 (get-text-property mark 'day)))
9572 (user-error "Don't know which date to use for diary entry"))
9573 ;; We implement this by hacking the `calendar-cursor-to-date' function
9574 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
9575 (let ((calendar-mark-ring
9576 (list (calendar-gregorian-from-absolute
9577 (or (get-text-property mark 'day)
9578 (get-text-property point 'day))))))
9579 (unwind-protect
9580 (progn
9581 (fset 'calendar-cursor-to-date
9582 (lambda (&optional error dummy)
9583 (calendar-gregorian-from-absolute
9584 (get-text-property point 'day))))
9585 (call-interactively cmd))
9586 (fset 'calendar-cursor-to-date oldf))))))
9588 (defun org-agenda-execute-calendar-command (cmd)
9589 "Execute a calendar command from the agenda with date from cursor."
9590 (org-agenda-check-type t 'agenda 'timeline)
9591 (require 'diary-lib)
9592 (unless (get-text-property (min (1- (point-max)) (point)) 'day)
9593 (user-error "Don't know which date to use for the calendar command"))
9594 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
9595 (point (point))
9596 (date (calendar-gregorian-from-absolute
9597 (get-text-property point 'day)))
9598 ;; the following 2 vars are needed in the calendar
9599 (displayed-month (car date))
9600 (displayed-year (nth 2 date)))
9601 (unwind-protect
9602 (progn
9603 (fset 'calendar-cursor-to-date
9604 (lambda (&optional error dummy)
9605 (calendar-gregorian-from-absolute
9606 (get-text-property point 'day))))
9607 (call-interactively cmd))
9608 (fset 'calendar-cursor-to-date oldf))))
9610 (defun org-agenda-phases-of-moon ()
9611 "Display the phases of the moon for the 3 months around the cursor date."
9612 (interactive)
9613 (org-agenda-execute-calendar-command 'calendar-lunar-phases))
9615 (defun org-agenda-holidays ()
9616 "Display the holidays for the 3 months around the cursor date."
9617 (interactive)
9618 (org-agenda-execute-calendar-command 'calendar-list-holidays))
9620 (defvar calendar-longitude) ; defined in calendar.el
9621 (defvar calendar-latitude) ; defined in calendar.el
9622 (defvar calendar-location-name) ; defined in calendar.el
9624 (defun org-agenda-sunrise-sunset (arg)
9625 "Display sunrise and sunset for the cursor date.
9626 Latitude and longitude can be specified with the variables
9627 `calendar-latitude' and `calendar-longitude'. When called with prefix
9628 argument, latitude and longitude will be prompted for."
9629 (interactive "P")
9630 (require 'solar)
9631 (let ((calendar-longitude (if arg nil calendar-longitude))
9632 (calendar-latitude (if arg nil calendar-latitude))
9633 (calendar-location-name
9634 (if arg "the given coordinates" calendar-location-name)))
9635 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
9637 (defun org-agenda-goto-calendar ()
9638 "Open the Emacs calendar with the date at the cursor."
9639 (interactive)
9640 (org-agenda-check-type t 'agenda 'timeline)
9641 (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
9642 (user-error "Don't know which date to open in calendar")))
9643 (date (calendar-gregorian-from-absolute day))
9644 (calendar-move-hook nil)
9645 (calendar-view-holidays-initially-flag nil)
9646 (calendar-view-diary-initially-flag nil))
9647 (calendar)
9648 (calendar-goto-date date)))
9650 ;;;###autoload
9651 (defun org-calendar-goto-agenda ()
9652 "Compute the Org-mode agenda for the calendar date displayed at the cursor.
9653 This is a command that has to be installed in `calendar-mode-map'."
9654 (interactive)
9655 ;; Temporarily disable sticky agenda since user clearly wants to
9656 ;; refresh view anyway.
9657 (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
9658 (org-agenda-sticky nil))
9659 (org-agenda-list nil (calendar-absolute-from-gregorian
9660 (calendar-cursor-to-date))
9661 nil)))
9663 (defun org-agenda-convert-date ()
9664 (interactive)
9665 (org-agenda-check-type t 'agenda 'timeline)
9666 (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
9667 date s)
9668 (unless day
9669 (user-error "Don't know which date to convert"))
9670 (setq date (calendar-gregorian-from-absolute day))
9671 (setq s (concat
9672 "Gregorian: " (calendar-date-string date) "\n"
9673 "ISO: " (calendar-iso-date-string date) "\n"
9674 "Day of Yr: " (calendar-day-of-year-string date) "\n"
9675 "Julian: " (calendar-julian-date-string date) "\n"
9676 "Astron. JD: " (calendar-astro-date-string date)
9677 " (Julian date number at noon UTC)\n"
9678 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
9679 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
9680 "French: " (calendar-french-date-string date) "\n"
9681 "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
9682 "Mayan: " (calendar-mayan-date-string date) "\n"
9683 "Coptic: " (calendar-coptic-date-string date) "\n"
9684 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
9685 "Persian: " (calendar-persian-date-string date) "\n"
9686 "Chinese: " (calendar-chinese-date-string date) "\n"))
9687 (with-output-to-temp-buffer "*Dates*"
9688 (princ s))
9689 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
9691 ;;; Bulk commands
9693 (defun org-agenda-bulk-marked-p ()
9694 (eq (get-char-property (point-at-bol) 'type)
9695 'org-marked-entry-overlay))
9697 (defun org-agenda-bulk-mark (&optional arg)
9698 "Mark the entry at point for future bulk action."
9699 (interactive "p")
9700 (dotimes (i (or arg 1))
9701 (unless (org-get-at-bol 'org-agenda-diary-link)
9702 (let* ((m (org-get-at-bol 'org-hd-marker))
9704 (unless (org-agenda-bulk-marked-p)
9705 (unless m (user-error "Nothing to mark at point"))
9706 (push m org-agenda-bulk-marked-entries)
9707 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
9708 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
9709 (org-get-todo-face "TODO")
9710 'evaporate)
9711 (overlay-put ov 'type 'org-marked-entry-overlay))
9712 (end-of-line 1)
9713 (or (ignore-errors
9714 (goto-char (next-single-property-change (point) 'org-hd-marker)))
9715 (beginning-of-line 2))
9716 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9717 (beginning-of-line 2))
9718 (message "%d entries marked for bulk action"
9719 (length org-agenda-bulk-marked-entries))))))
9721 (defun org-agenda-bulk-mark-all ()
9722 "Mark all entries for future agenda bulk action."
9723 (interactive)
9724 (org-agenda-bulk-mark-regexp "."))
9726 (defun org-agenda-bulk-mark-regexp (regexp)
9727 "Mark entries matching REGEXP for future agenda bulk action."
9728 (interactive "sMark entries matching regexp: ")
9729 (let ((entries-marked 0) txt-at-point)
9730 (save-excursion
9731 (goto-char (point-min))
9732 (goto-char (next-single-property-change (point) 'org-hd-marker))
9733 (while (and (re-search-forward regexp nil t)
9734 (setq txt-at-point (get-text-property (point) 'txt)))
9735 (when (string-match regexp txt-at-point)
9736 (setq entries-marked (1+ entries-marked))
9737 (call-interactively 'org-agenda-bulk-mark))))
9738 (if (not entries-marked)
9739 (message "No entry matching this regexp."))))
9741 (defun org-agenda-bulk-unmark (&optional arg)
9742 "Unmark the entry at point for future bulk action."
9743 (interactive "P")
9744 (if arg
9745 (org-agenda-bulk-unmark-all)
9746 (cond ((org-agenda-bulk-marked-p)
9747 (org-agenda-bulk-remove-overlays
9748 (point-at-bol) (+ 2 (point-at-bol)))
9749 (setq org-agenda-bulk-marked-entries
9750 (delete (org-get-at-bol 'org-hd-marker)
9751 org-agenda-bulk-marked-entries))
9752 (end-of-line 1)
9753 (or (ignore-errors
9754 (goto-char (next-single-property-change (point) 'txt)))
9755 (beginning-of-line 2))
9756 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9757 (beginning-of-line 2))
9758 (message "%d entries left marked for bulk action"
9759 (length org-agenda-bulk-marked-entries)))
9760 (t (message "No entry to unmark here")))))
9762 (defun org-agenda-bulk-toggle-all ()
9763 "Toggle all marks for bulk action."
9764 (interactive)
9765 (save-excursion
9766 (goto-char (point-min))
9767 (while (ignore-errors
9768 (goto-char (next-single-property-change (point) 'org-hd-marker)))
9769 (org-agenda-bulk-toggle))))
9771 (defun org-agenda-bulk-toggle ()
9772 "Toggle the mark at point for bulk action."
9773 (interactive)
9774 (if (org-agenda-bulk-marked-p)
9775 (org-agenda-bulk-unmark)
9776 (org-agenda-bulk-mark)))
9778 (defun org-agenda-bulk-remove-overlays (&optional beg end)
9779 "Remove the mark overlays between BEG and END in the agenda buffer.
9780 BEG and END default to the buffer limits.
9782 This only removes the overlays, it does not remove the markers
9783 from the list in `org-agenda-bulk-marked-entries'."
9784 (interactive)
9785 (mapc (lambda (ov)
9786 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
9787 (delete-overlay ov)))
9788 (overlays-in (or beg (point-min)) (or end (point-max)))))
9790 (defun org-agenda-bulk-unmark-all ()
9791 "Remove all marks in the agenda buffer.
9792 This will remove the markers and the overlays."
9793 (interactive)
9794 (if (null org-agenda-bulk-marked-entries)
9795 (message "No entry to unmark")
9796 (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
9797 (setq org-agenda-bulk-marked-entries nil)
9798 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
9800 (defcustom org-agenda-persistent-marks nil
9801 "Non-nil means marked items will stay marked after a bulk action.
9802 You can toggle this interactively by typing `p' when prompted for a
9803 bulk action."
9804 :group 'org-agenda
9805 :version "24.1"
9806 :type 'boolean)
9808 (defun org-agenda-bulk-action (&optional arg)
9809 "Execute an remote-editing action on all marked entries.
9810 The prefix arg is passed through to the command if possible."
9811 (interactive "P")
9812 ;; Make sure we have markers, and only valid ones
9813 (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
9814 (mapc
9815 (lambda (m)
9816 (unless (and (markerp m)
9817 (marker-buffer m)
9818 (buffer-live-p (marker-buffer m))
9819 (marker-position m))
9820 (user-error "Marker %s for bulk command is invalid" m)))
9821 org-agenda-bulk-marked-entries)
9823 ;; Prompt for the bulk command
9824 (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
9825 (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
9826 "[S]catter [f]unction "
9827 (when org-agenda-bulk-custom-functions
9828 (concat " Custom: ["
9829 (mapconcat (lambda(f) (char-to-string (car f)))
9830 org-agenda-bulk-custom-functions "")
9831 "]"))))
9832 (catch 'exit
9833 (let* ((action (read-char-exclusive))
9834 (org-log-refile (if org-log-refile 'time nil))
9835 (entries (reverse org-agenda-bulk-marked-entries))
9836 (org-overriding-default-time
9837 (if (get-text-property (point) 'org-agenda-date-header)
9838 (org-get-cursor-date)))
9839 redo-at-end
9840 cmd rfloc state e tag pos (cnt 0) (cntskip 0))
9841 (cond
9842 ((equal action ?p)
9843 (let ((org-agenda-persistent-marks
9844 (not org-agenda-persistent-marks)))
9845 (org-agenda-bulk-action)
9846 (throw 'exit nil)))
9848 ((equal action ?$)
9849 (setq cmd '(org-agenda-archive)))
9851 ((equal action ?A)
9852 (setq cmd '(org-agenda-archive-to-archive-sibling)))
9854 ((member action '(?r ?w))
9855 (setq rfloc (org-refile-get-location
9856 "Refile to"
9857 (marker-buffer (car entries))
9858 org-refile-allow-creating-parent-nodes))
9859 (if (nth 3 rfloc)
9860 (setcar (nthcdr 3 rfloc)
9861 (move-marker (make-marker) (nth 3 rfloc)
9862 (or (get-file-buffer (nth 1 rfloc))
9863 (find-buffer-visiting (nth 1 rfloc))
9864 (error "This should not happen")))))
9866 (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
9867 redo-at-end t))
9869 ((equal action ?t)
9870 (setq state (org-icompleting-read
9871 "Todo state: "
9872 (with-current-buffer (marker-buffer (car entries))
9873 (mapcar 'list org-todo-keywords-1))))
9874 (setq cmd `(let ((org-inhibit-blocking t)
9875 (org-inhibit-logging 'note))
9876 (org-agenda-todo ,state))))
9878 ((memq action '(?- ?+))
9879 (setq tag (org-icompleting-read
9880 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
9881 (with-current-buffer (marker-buffer (car entries))
9882 (delq nil
9883 (mapcar (lambda (x)
9884 (if (stringp (car x)) x)) org-tag-alist)))))
9885 (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
9887 ((memq action '(?s ?d))
9888 (let* ((time
9889 (unless arg
9890 (org-read-date
9891 nil nil nil
9892 (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
9893 org-overriding-default-time)))
9894 (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
9895 (setq cmd `(eval '(,c1 arg ,time)))))
9897 ((equal action ?S)
9898 (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
9899 (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
9900 (let ((days (read-number
9901 (format "Scatter tasks across how many %sdays: "
9902 (if arg "week" "")) 7)))
9903 (setq cmd
9904 `(let ((distance (1+ (random ,days))))
9905 (if arg
9906 (let ((dist distance)
9907 (day-of-week
9908 (calendar-day-of-week
9909 (calendar-gregorian-from-absolute (org-today)))))
9910 (dotimes (i (1+ dist))
9911 (while (member day-of-week org-agenda-weekend-days)
9912 (incf distance)
9913 (incf day-of-week)
9914 (if (= day-of-week 7)
9915 (setq day-of-week 0)))
9916 (incf day-of-week)
9917 (if (= day-of-week 7)
9918 (setq day-of-week 0)))))
9919 ;; silently fail when try to replan a sexp entry
9920 (condition-case nil
9921 (let* ((date (calendar-gregorian-from-absolute
9922 (+ (org-today) distance)))
9923 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
9924 (nth 2 date))))
9925 (org-agenda-schedule nil time))
9926 (error nil)))))))
9928 ((assoc action org-agenda-bulk-custom-functions)
9929 (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
9930 redo-at-end t))
9932 ((equal action ?f)
9933 (setq cmd (list (intern
9934 (org-icompleting-read "Function: "
9935 obarray 'fboundp t nil nil)))))
9937 (t (user-error "Invalid bulk action")))
9939 ;; Sort the markers, to make sure that parents are handled before children
9940 (setq entries (sort entries
9941 (lambda (a b)
9942 (cond
9943 ((equal (marker-buffer a) (marker-buffer b))
9944 (< (marker-position a) (marker-position b)))
9946 (string< (buffer-name (marker-buffer a))
9947 (buffer-name (marker-buffer b))))))))
9949 ;; Now loop over all markers and apply cmd
9950 (while (setq e (pop entries))
9951 (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
9952 (if (not pos)
9953 (progn (message "Skipping removed entry at %s" e)
9954 (setq cntskip (1+ cntskip)))
9955 (goto-char pos)
9956 (let (org-loop-over-headlines-in-active-region)
9957 (eval cmd))
9958 ;; `post-command-hook' is not run yet. We make sure any
9959 ;; pending log note is processed.
9960 (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
9961 (memq 'org-add-log-note post-command-hook))
9962 (org-add-log-note))
9963 (setq cnt (1+ cnt))))
9964 (when redo-at-end (org-agenda-redo))
9965 (unless org-agenda-persistent-marks
9966 (org-agenda-bulk-unmark-all))
9967 (message "Acted on %d entries%s%s"
9969 (if (= cntskip 0)
9971 (format ", skipped %d (disappeared before their turn)"
9972 cntskip))
9973 (if (not org-agenda-persistent-marks)
9974 "" " (kept marked)"))))))
9976 (defun org-agenda-capture (&optional with-time)
9977 "Call `org-capture' with the date at point.
9978 With a `C-1' prefix, use the HH:MM value at point (if any) or the
9979 current HH:MM time."
9980 (interactive "P")
9981 (if (not (eq major-mode 'org-agenda-mode))
9982 (user-error "You cannot do this outside of agenda buffers")
9983 (let ((org-overriding-default-time
9984 (org-get-cursor-date (equal with-time 1))))
9985 (call-interactively 'org-capture))))
9987 ;;; Dragging agenda lines forward/backward
9989 (defun org-agenda-reapply-filters ()
9990 "Re-apply all agenda filters."
9991 (mapcar
9992 (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
9993 `((,org-agenda-tag-filter tag)
9994 (,org-agenda-category-filter category)
9995 (,org-agenda-regexp-filter regexp)
9996 (,org-agenda-effort-filter effort)
9997 (,(get 'org-agenda-tag-filter :preset-filter) tag)
9998 (,(get 'org-agenda-category-filter :preset-filter) category)
9999 (,(get 'org-agenda-effort-filter :preset-filter) effort)
10000 (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
10002 (defun org-agenda-drag-line-forward (arg &optional backward)
10003 "Drag an agenda line forward by ARG lines.
10004 When the optional argument `backward' is non-nil, move backward."
10005 (interactive "p")
10006 (let ((inhibit-read-only t) lst line)
10007 (if (or (not (get-text-property (point) 'txt))
10008 (save-excursion
10009 (dotimes (n arg)
10010 (move-beginning-of-line (if backward 0 2))
10011 (push (not (get-text-property (point) 'txt)) lst))
10012 (delq nil lst)))
10013 (message "Cannot move line forward")
10014 (let ((end (save-excursion (move-beginning-of-line 2) (point))))
10015 (move-beginning-of-line 1)
10016 (setq line (buffer-substring (point) end))
10017 (delete-region (point) end)
10018 (move-beginning-of-line (funcall (if backward '1- '1+) arg))
10019 (insert line)
10020 (org-agenda-reapply-filters)
10021 (org-agenda-mark-clocking-task)
10022 (move-beginning-of-line 0)))))
10024 (defun org-agenda-drag-line-backward (arg)
10025 "Drag an agenda line backward by ARG lines."
10026 (interactive "p")
10027 (org-agenda-drag-line-forward arg t))
10029 ;;; Flagging notes
10031 (defun org-agenda-show-the-flagging-note ()
10032 "Display the flagging note in the other window.
10033 When called a second time in direct sequence, offer to remove the FLAGGING
10034 tag and (if present) the flagging note."
10035 (interactive)
10036 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
10037 (win (selected-window))
10038 note heading newhead)
10039 (unless hdmarker
10040 (user-error "No linked entry at point"))
10041 (if (and (eq this-command last-command)
10042 (y-or-n-p "Unflag and remove any flagging note? "))
10043 (progn
10044 (org-agenda-remove-flag hdmarker)
10045 (let ((win (get-buffer-window "*Flagging Note*")))
10046 (and win (delete-window win)))
10047 (message "Entry unflagged"))
10048 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
10049 (unless note
10050 (user-error "No flagging note"))
10051 (org-kill-new note)
10052 (org-switch-to-buffer-other-window "*Flagging Note*")
10053 (erase-buffer)
10054 (insert note)
10055 (goto-char (point-min))
10056 (while (re-search-forward "\\\\n" nil t)
10057 (replace-match "\n" t t))
10058 (goto-char (point-min))
10059 (select-window win)
10060 (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
10062 (defun org-agenda-remove-flag (marker)
10063 "Remove the FLAGGED tag and any flagging note in the entry."
10064 (let (newhead)
10065 (org-with-point-at marker
10066 (org-toggle-tag "FLAGGED" 'off)
10067 (org-entry-delete nil "THEFLAGGINGNOTE")
10068 (setq newhead (org-get-heading)))
10069 (org-agenda-change-all-lines newhead marker)
10070 (message "Entry unflagged")))
10072 (defun org-agenda-get-any-marker (&optional pos)
10073 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
10074 (get-text-property (or pos (point-at-bol)) 'org-marker)))
10076 ;;; Appointment reminders
10078 (defvar appt-time-msg-list) ; defined in appt.el
10080 ;;;###autoload
10081 (defun org-agenda-to-appt (&optional refresh filter &rest args)
10082 "Activate appointments found in `org-agenda-files'.
10083 With a \\[universal-argument] prefix, refresh the list of
10084 appointments.
10086 If FILTER is t, interactively prompt the user for a regular
10087 expression, and filter out entries that don't match it.
10089 If FILTER is a string, use this string as a regular expression
10090 for filtering entries out.
10092 If FILTER is a function, filter out entries against which
10093 calling the function returns nil. This function takes one
10094 argument: an entry from `org-agenda-get-day-entries'.
10096 FILTER can also be an alist with the car of each cell being
10097 either 'headline or 'category. For example:
10099 '((headline \"IMPORTANT\")
10100 (category \"Work\"))
10102 will only add headlines containing IMPORTANT or headlines
10103 belonging to the \"Work\" category.
10105 ARGS are symbols indicating what kind of entries to consider.
10106 By default `org-agenda-to-appt' will use :deadline*, :scheduled*
10107 \(i.e., deadlines and scheduled items with a hh:mm specification)
10108 and :timestamp entries. See the docstring of `org-diary' for
10109 details and examples.
10111 If an entry has a APPT_WARNTIME property, its value will be used
10112 to override `appt-message-warning-time'."
10113 (interactive "P")
10114 (if refresh (setq appt-time-msg-list nil))
10115 (if (eq filter t)
10116 (setq filter (read-from-minibuffer "Regexp filter: ")))
10117 (let* ((cnt 0) ; count added events
10118 (scope (or args '(:deadline* :scheduled* :timestamp)))
10119 (org-agenda-new-buffers nil)
10120 (org-deadline-warning-days 0)
10121 ;; Do not use `org-today' here because appt only takes
10122 ;; time and without date as argument, so it may pass wrong
10123 ;; information otherwise
10124 (today (org-date-to-gregorian
10125 (time-to-days (current-time))))
10126 (org-agenda-restrict nil)
10127 (files (org-agenda-files 'unrestricted)) entries file
10128 (org-agenda-buffer nil))
10129 ;; Get all entries which may contain an appt
10130 (org-agenda-prepare-buffers files)
10131 (while (setq file (pop files))
10132 (setq entries
10133 (delq nil
10134 (append entries
10135 (apply 'org-agenda-get-day-entries
10136 file today scope)))))
10137 ;; Map thru entries and find if we should filter them out
10138 (mapc
10139 (lambda(x)
10140 (let* ((evt (org-trim
10141 (replace-regexp-in-string
10142 org-bracket-link-regexp "\\3"
10143 (or (get-text-property 1 'txt x) ""))))
10144 (cat (get-text-property (1- (length x)) 'org-category x))
10145 (tod (get-text-property 1 'time-of-day x))
10146 (ok (or (null filter)
10147 (and (stringp filter) (string-match filter evt))
10148 (and (functionp filter) (funcall filter x))
10149 (and (listp filter)
10150 (let ((cat-filter (cadr (assoc 'category filter)))
10151 (evt-filter (cadr (assoc 'headline filter))))
10152 (or (and (stringp cat-filter)
10153 (string-match cat-filter cat))
10154 (and (stringp evt-filter)
10155 (string-match evt-filter evt)))))))
10156 (wrn (get-text-property 1 'warntime x)))
10157 ;; FIXME: Shall we remove text-properties for the appt text?
10158 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
10159 (when (and ok tod)
10160 (setq tod (concat "00" (number-to-string tod))
10161 tod (when (string-match
10162 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
10163 (concat (match-string 1 tod) ":"
10164 (match-string 2 tod))))
10165 (if (version< emacs-version "23.3")
10166 (appt-add tod evt)
10167 (appt-add tod evt wrn))
10168 (setq cnt (1+ cnt))))) entries)
10169 (org-release-buffers org-agenda-new-buffers)
10170 (if (eq cnt 0)
10171 (message "No event to add")
10172 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
10174 (defun org-agenda-todayp (date)
10175 "Does DATE mean today, when considering `org-extend-today-until'?"
10176 (let ((today (org-today))
10177 (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
10178 date)))
10179 (eq date today)))
10181 (defun org-agenda-todo-yesterday (&optional arg)
10182 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
10183 (interactive "P")
10184 (let* ((org-use-effective-time t)
10185 (hour (third (decode-time
10186 (org-current-time))))
10187 (org-extend-today-until (1+ hour)))
10188 (org-agenda-todo arg)))
10190 (provide 'org-agenda)
10192 ;;; org-agenda.el ends here