Fix org-babel-js-initiate-session
[org-mode/org-tableheadings.git] / lisp / org-agenda.el
blob649f5e2aac86f7586bb7a24a4a6e83866241175a
1 ;;; org-agenda.el --- Dynamic task and appointment lists for Org
3 ;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: https://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 <https://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the code for creating and using the Agenda for Org.
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 'cl-lib)
49 (require 'org)
50 (require 'org-macs)
52 (declare-function diary-add-to-list "diary-lib"
53 (date string specifier &optional marker globcolor literal))
54 (declare-function calendar-iso-to-absolute "cal-iso" (date))
55 (declare-function calendar-astro-date-string "cal-julian" (&optional date))
56 (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
57 (declare-function calendar-chinese-date-string "cal-china" (&optional date))
58 (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
59 (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
60 (declare-function calendar-french-date-string "cal-french" (&optional date))
61 (declare-function calendar-goto-date "cal-move" (date))
62 (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
63 (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
64 (declare-function calendar-iso-date-string "cal-iso" (&optional date))
65 (declare-function calendar-iso-from-absolute "cal-iso" (date))
66 (declare-function calendar-julian-date-string "cal-julian" (&optional date))
67 (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
68 (declare-function calendar-persian-date-string "cal-persia" (&optional date))
69 (declare-function calendar-check-holidays "holidays" (date))
71 (declare-function org-columns-remove-overlays "org-colview" ())
72 (declare-function org-datetree-find-date-create "org-datetree"
73 (date &optional keep-restriction))
74 (declare-function org-columns-quit "org-colview" ())
75 (declare-function diary-date-display-form "diary-lib" (&optional type))
76 (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
77 (declare-function org-habit-insert-consistency-graphs
78 "org-habit" (&optional line))
79 (declare-function org-is-habit-p "org-habit" (&optional pom))
80 (declare-function org-habit-parse-todo "org-habit" (&optional pom))
81 (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
82 (declare-function org-agenda-columns "org-colview" ())
83 (declare-function org-add-archive-files "org-archive" (files))
84 (declare-function org-capture "org-capture" (&optional goto keys))
86 (defvar calendar-mode-map)
87 (defvar org-clock-current-task)
88 (defvar org-current-tag-alist)
89 (defvar org-mobile-force-id-on-agenda-items)
90 (defvar org-habit-show-habits)
91 (defvar org-habit-show-habits-only-for-today)
92 (defvar org-habit-show-all-today)
94 ;; Defined somewhere in this file, but used before definition.
95 (defvar org-agenda-buffer-name "*Org Agenda*")
96 (defvar org-agenda-overriding-header nil)
97 (defvar org-agenda-title-append nil)
98 (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
99 (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
100 (defvar original-date) ; dynamically scoped, calendar.el does scope this
102 (defvar org-agenda-undo-list nil
103 "List of undoable operations in the agenda since last refresh.")
104 (defvar org-agenda-pending-undo-list nil
105 "In a series of undo commands, this is the list of remaining undo items.")
107 (defcustom org-agenda-confirm-kill 1
108 "When set, remote killing from the agenda buffer needs confirmation.
109 When t, a confirmation is always needed. When a number N, confirmation is
110 only needed when the text to be killed contains more than N non-white lines."
111 :group 'org-agenda
112 :type '(choice
113 (const :tag "Never" nil)
114 (const :tag "Always" t)
115 (integer :tag "When more than N lines")))
117 (defcustom org-agenda-compact-blocks nil
118 "Non-nil means make the block agenda more compact.
119 This is done globally by leaving out lines like the agenda span
120 name and week number or the separator lines."
121 :group 'org-agenda
122 :type 'boolean)
124 (defcustom org-agenda-block-separator ?=
125 "The separator between blocks in the agenda.
126 If this is a string, it will be used as the separator, with a newline added.
127 If it is a character, it will be repeated to fill the window width.
128 If nil the separator is disabled. In `org-agenda-custom-commands' this
129 addresses the separator between the current and the previous block."
130 :group 'org-agenda
131 :type '(choice
132 (const :tag "Disabled" nil)
133 (character)
134 (string)))
136 (defgroup org-agenda-export nil
137 "Options concerning exporting agenda views in Org mode."
138 :tag "Org Agenda Export"
139 :group 'org-agenda)
141 (defcustom org-agenda-with-colors t
142 "Non-nil means use colors in agenda views."
143 :group 'org-agenda-export
144 :type 'boolean)
146 (defcustom org-agenda-exporter-settings nil
147 "Alist of variable/value pairs that should be active during agenda export.
148 This is a good place to set options for ps-print and for htmlize.
149 Note that the way this is implemented, the values will be evaluated
150 before assigned to the variables. So make sure to quote values you do
151 *not* want evaluated, for example
153 (setq org-agenda-exporter-settings
154 \\='((ps-print-color-p \\='black-white)))"
155 :group 'org-agenda-export
156 :type '(repeat
157 (list
158 (variable)
159 (sexp :tag "Value"))))
161 (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
162 "Hook run in a temporary buffer before writing the agenda to an export file.
163 A useful function for this hook is `org-agenda-add-entry-text'."
164 :group 'org-agenda-export
165 :type 'hook
166 :options '(org-agenda-add-entry-text))
168 (defcustom org-agenda-add-entry-text-maxlines 0
169 "Maximum number of entry text lines to be added to agenda.
170 This is only relevant when `org-agenda-add-entry-text' is part of
171 `org-agenda-before-write-hook', which is the default.
172 When this is 0, nothing will happen. When it is greater than 0, it
173 specifies the maximum number of lines that will be added for each entry
174 that is listed in the agenda view.
176 Note that this variable is not used during display, only when exporting
177 the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
178 and `org-agenda-entry-text-maxlines'."
179 :group 'org-agenda
180 :type 'integer)
182 (defcustom org-agenda-add-entry-text-descriptive-links t
183 "Non-nil means export org-links as descriptive links in agenda added text.
184 This variable applies to the text added to the agenda when
185 `org-agenda-add-entry-text-maxlines' is larger than 0.
186 When this variable nil, the URL will (also) be shown."
187 :group 'org-agenda
188 :type 'boolean)
190 (defcustom org-agenda-export-html-style nil
191 "The style specification for exported HTML Agenda files.
192 If this variable contains a string, it will replace the default <style>
193 section as produced by `htmlize'.
194 Since there are different ways of setting style information, this variable
195 needs to contain the full HTML structure to provide a style, including the
196 surrounding HTML tags. The style specifications should include definitions
197 the fonts used by the agenda, here is an example:
199 <style type=\"text/css\">
200 p { font-weight: normal; color: gray; }
201 .org-agenda-structure {
202 font-size: 110%;
203 color: #003399;
204 font-weight: 600;
206 .org-todo {
207 color: #cc6666;
208 font-weight: bold;
210 .org-agenda-done {
211 color: #339933;
213 .org-done {
214 color: #339933;
216 .title { text-align: center; }
217 .todo, .deadline { color: red; }
218 .done { color: green; }
219 </style>
221 or, if you want to keep the style in a file,
223 <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
225 As the value of this option simply gets inserted into the HTML <head> header,
226 you can \"misuse\" it to also add other text to the header."
227 :group 'org-agenda-export
228 :group 'org-export-html
229 :type '(choice
230 (const nil)
231 (string)))
233 (defcustom org-agenda-persistent-filter nil
234 "When set, keep filters from one agenda view to the next."
235 :group 'org-agenda
236 :type 'boolean)
238 (defgroup org-agenda-custom-commands nil
239 "Options concerning agenda views in Org mode."
240 :tag "Org Agenda Custom Commands"
241 :group 'org-agenda)
243 (defconst org-sorting-choice
244 '(choice
245 (const time-up) (const time-down)
246 (const timestamp-up) (const timestamp-down)
247 (const scheduled-up) (const scheduled-down)
248 (const deadline-up) (const deadline-down)
249 (const ts-up) (const ts-down)
250 (const tsia-up) (const tsia-down)
251 (const category-keep) (const category-up) (const category-down)
252 (const tag-down) (const tag-up)
253 (const priority-up) (const priority-down)
254 (const todo-state-up) (const todo-state-down)
255 (const effort-up) (const effort-down)
256 (const habit-up) (const habit-down)
257 (const alpha-up) (const alpha-down)
258 (const user-defined-up) (const user-defined-down))
259 "Sorting choices.")
261 ;; Keep custom values for `org-agenda-filter-preset' compatible with
262 ;; the new variable `org-agenda-tag-filter-preset'.
263 (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
264 (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
266 (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
267 "List of types searched for when creating the daily/weekly agenda.
268 This variable is a list of symbols that controls the types of
269 items that appear in the daily/weekly agenda. Allowed symbols in this
270 list are are
272 :timestamp List items containing a date stamp or date range matching
273 the selected date. This includes sexp entries in angular
274 brackets.
276 :sexp List entries resulting from plain diary-like sexps.
278 :deadline List deadline due on that date. When the date is today,
279 also list any deadlines past due, or due within
280 `org-deadline-warning-days'.
282 :deadline* Same as above, but only include the deadline if it has an
283 hour specification as [h]h:mm.
285 :scheduled List all items which are scheduled for the given date.
286 The diary for *today* also contains items which were
287 scheduled earlier and are not yet marked DONE.
289 :scheduled* Same as above, but only include the scheduled item if it
290 has an hour specification as [h]h:mm.
292 By default, all four non-starred types are turned on.
294 When :scheduled* or :deadline* are included, :schedule or :deadline
295 will be ignored.
297 Never set this variable globally using `setq', because then it
298 will apply to all future agenda commands. Instead, bind it with
299 `let' to scope it dynamically into the agenda-constructing
300 command. A good way to set it is through options in
301 `org-agenda-custom-commands'. For a more flexible (though
302 somewhat less efficient) way of determining what is included in
303 the daily/weekly agenda, see `org-agenda-skip-function'.")
305 (defconst org-agenda-custom-commands-local-options
306 `(repeat :tag "Local settings for this command. Remember to quote values"
307 (choice :tag "Setting"
308 (list :tag "Heading for this block"
309 (const org-agenda-overriding-header)
310 (string :tag "Headline"))
311 (list :tag "Files to be searched"
312 (const org-agenda-files)
313 (list
314 (const :format "" quote)
315 (repeat (file))))
316 (list :tag "Sorting strategy"
317 (const org-agenda-sorting-strategy)
318 (list
319 (const :format "" quote)
320 (repeat
321 ,org-sorting-choice)))
322 (list :tag "Prefix format"
323 (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
324 (string))
325 (list :tag "Number of days in agenda"
326 (const org-agenda-span)
327 (list
328 (const :format "" quote)
329 (choice (const :tag "Day" day)
330 (const :tag "Week" week)
331 (const :tag "Fortnight" fortnight)
332 (const :tag "Month" month)
333 (const :tag "Year" year)
334 (integer :tag "Custom"))))
335 (list :tag "Fixed starting date"
336 (const org-agenda-start-day)
337 (string :value "2007-11-01"))
338 (list :tag "Start on day of week"
339 (const org-agenda-start-on-weekday)
340 (choice :value 1
341 (const :tag "Today" nil)
342 (integer :tag "Weekday No.")))
343 (list :tag "Include data from diary"
344 (const org-agenda-include-diary)
345 (boolean))
346 (list :tag "Deadline Warning days"
347 (const org-deadline-warning-days)
348 (integer :value 1))
349 (list :tag "Category filter preset"
350 (const org-agenda-category-filter-preset)
351 (list
352 (const :format "" quote)
353 (repeat
354 (string :tag "+category or -category"))))
355 (list :tag "Tags filter preset"
356 (const org-agenda-tag-filter-preset)
357 (list
358 (const :format "" quote)
359 (repeat
360 (string :tag "+tag or -tag"))))
361 (list :tag "Effort filter preset"
362 (const org-agenda-effort-filter-preset)
363 (list
364 (const :format "" quote)
365 (repeat
366 (string :tag "+=10 or -=10 or +<10 or ->10"))))
367 (list :tag "Regexp filter preset"
368 (const org-agenda-regexp-filter-preset)
369 (list
370 (const :format "" quote)
371 (repeat
372 (string :tag "+regexp or -regexp"))))
373 (list :tag "Set daily/weekly entry types"
374 (const org-agenda-entry-types)
375 (list
376 (const :format "" quote)
377 (set :greedy t :value ,org-agenda-entry-types
378 (const :deadline)
379 (const :scheduled)
380 (const :deadline*)
381 (const :scheduled*)
382 (const :timestamp)
383 (const :sexp))))
384 (list :tag "Standard skipping condition"
385 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
386 (const org-agenda-skip-function)
387 (list
388 (const :format "" quote)
389 (list
390 (choice
391 :tag "Skipping range"
392 (const :tag "Skip entry" org-agenda-skip-entry-if)
393 (const :tag "Skip subtree" org-agenda-skip-subtree-if))
394 (repeat :inline t :tag "Conditions for skipping"
395 (choice
396 :tag "Condition type"
397 (list :tag "Regexp matches" :inline t
398 (const :format "" regexp)
399 (regexp))
400 (list :tag "Regexp does not match" :inline t
401 (const :format "" notregexp)
402 (regexp))
403 (list :tag "TODO state is" :inline t
404 (const todo)
405 (choice
406 (const :tag "Any not-done state" todo)
407 (const :tag "Any done state" done)
408 (const :tag "Any state" any)
409 (list :tag "Keyword list"
410 (const :format "" quote)
411 (repeat (string :tag "Keyword")))))
412 (list :tag "TODO state is not" :inline t
413 (const nottodo)
414 (choice
415 (const :tag "Any not-done state" todo)
416 (const :tag "Any done state" done)
417 (const :tag "Any state" any)
418 (list :tag "Keyword list"
419 (const :format "" quote)
420 (repeat (string :tag "Keyword")))))
421 (const :tag "scheduled" scheduled)
422 (const :tag "not scheduled" notscheduled)
423 (const :tag "deadline" deadline)
424 (const :tag "no deadline" notdeadline)
425 (const :tag "timestamp" timestamp)
426 (const :tag "no timestamp" nottimestamp))))))
427 (list :tag "Non-standard skipping condition"
428 :value (org-agenda-skip-function)
429 (const org-agenda-skip-function)
430 (sexp :tag "Function or form (quoted!)"))
431 (list :tag "Any variable"
432 (variable :tag "Variable")
433 (sexp :tag "Value (sexp)"))))
434 "Selection of examples for agenda command settings.
435 This will be spliced into the custom type of
436 `org-agenda-custom-commands'.")
439 (defcustom org-agenda-custom-commands
440 '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
441 "Custom commands for the agenda.
442 \\<org-mode-map>
443 These commands will be offered on the splash screen displayed by the
444 agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
446 (key desc type match settings files)
448 key The key (one or more characters as a string) to be associated
449 with the command.
450 desc A description of the command, when omitted or nil, a default
451 description is built using MATCH.
452 type The command type, any of the following symbols:
453 agenda The daily/weekly agenda.
454 todo Entries with a specific TODO keyword, in all agenda files.
455 search Entries containing search words entry or headline.
456 tags Tags/Property/TODO match in all agenda files.
457 tags-todo Tags/P/T match in all agenda files, TODO entries only.
458 todo-tree Sparse tree of specific TODO keyword in *current* file.
459 tags-tree Sparse tree with all tags matches in *current* file.
460 occur-tree Occur sparse tree for *current* file.
461 ... A user-defined function.
462 match What to search for:
463 - a single keyword for TODO keyword searches
464 - a tags match expression for tags searches
465 - a word search expression for text searches.
466 - a regular expression for occur searches
467 For all other commands, this should be the empty string.
468 settings A list of option settings, similar to that in a let form, so like
469 this: ((opt1 val1) (opt2 val2) ...). The values will be
470 evaluated at the moment of execution, so quote them when needed.
471 files A list of files to write the produced agenda buffer to with
472 the command `org-store-agenda-views'.
473 If a file name ends in \".html\", an HTML version of the buffer
474 is written out. If it ends in \".ps\", a postscript version is
475 produced. Otherwise, only the plain text is written to the file.
477 You can also define a set of commands, to create a composite agenda buffer.
478 In this case, an entry looks like this:
480 (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
482 where
484 desc A description string to be displayed in the dispatcher menu.
485 cmd An agenda command, similar to the above. However, tree commands
486 are not allowed, but instead you can get agenda and global todo list.
487 So valid commands for a set are:
488 (agenda \"\" settings)
489 (alltodo \"\" settings)
490 (stuck \"\" settings)
491 (todo \"match\" settings files)
492 (search \"match\" settings files)
493 (tags \"match\" settings files)
494 (tags-todo \"match\" settings files)
496 Each command can carry a list of options, and another set of options can be
497 given for the whole set of commands. Individual command options take
498 precedence over the general options.
500 When using several characters as key to a command, the first characters
501 are prefix commands. For the dispatcher to display useful information, you
502 should provide a description for the prefix, like
504 (setq org-agenda-custom-commands
505 \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
506 (\"hl\" tags \"+HOME+Lisa\")
507 (\"hp\" tags \"+HOME+Peter\")
508 (\"hk\" tags \"+HOME+Kim\")))"
509 :group 'org-agenda-custom-commands
510 :type `(repeat
511 (choice :value ("x" "Describe command here" tags "" nil)
512 (list :tag "Single command"
513 (string :tag "Access Key(s) ")
514 (option (string :tag "Description"))
515 (choice
516 (const :tag "Agenda" agenda)
517 (const :tag "TODO list" alltodo)
518 (const :tag "Search words" search)
519 (const :tag "Stuck projects" stuck)
520 (const :tag "Tags/Property match (all agenda files)" tags)
521 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
522 (const :tag "TODO keyword search (all agenda files)" todo)
523 (const :tag "Tags sparse tree (current buffer)" tags-tree)
524 (const :tag "TODO keyword tree (current buffer)" todo-tree)
525 (const :tag "Occur tree (current buffer)" occur-tree)
526 (sexp :tag "Other, user-defined function"))
527 (string :tag "Match (only for some commands)")
528 ,org-agenda-custom-commands-local-options
529 (option (repeat :tag "Export" (file :tag "Export to"))))
530 (list :tag "Command series, all agenda files"
531 (string :tag "Access Key(s)")
532 (string :tag "Description ")
533 (repeat :tag "Component"
534 (choice
535 (list :tag "Agenda"
536 (const :format "" agenda)
537 (const :tag "" :format "" "")
538 ,org-agenda-custom-commands-local-options)
539 (list :tag "TODO list (all keywords)"
540 (const :format "" alltodo)
541 (const :tag "" :format "" "")
542 ,org-agenda-custom-commands-local-options)
543 (list :tag "Search words"
544 (const :format "" search)
545 (string :tag "Match")
546 ,org-agenda-custom-commands-local-options)
547 (list :tag "Stuck projects"
548 (const :format "" stuck)
549 (const :tag "" :format "" "")
550 ,org-agenda-custom-commands-local-options)
551 (list :tag "Tags search"
552 (const :format "" tags)
553 (string :tag "Match")
554 ,org-agenda-custom-commands-local-options)
555 (list :tag "Tags search, TODO entries only"
556 (const :format "" tags-todo)
557 (string :tag "Match")
558 ,org-agenda-custom-commands-local-options)
559 (list :tag "TODO keyword search"
560 (const :format "" todo)
561 (string :tag "Match")
562 ,org-agenda-custom-commands-local-options)
563 (list :tag "Other, user-defined function"
564 (symbol :tag "function")
565 (string :tag "Match")
566 ,org-agenda-custom-commands-local-options)))
568 (repeat :tag "Settings for entire command set"
569 (list (variable :tag "Any variable")
570 (sexp :tag "Value")))
571 (option (repeat :tag "Export" (file :tag "Export to"))))
572 (cons :tag "Prefix key documentation"
573 (string :tag "Access Key(s)")
574 (string :tag "Description ")))))
576 (defcustom org-agenda-query-register ?o
577 "The register holding the current query string.
578 The purpose of this is that if you construct a query string interactively,
579 you can then use it to define a custom command."
580 :group 'org-agenda-custom-commands
581 :type 'character)
583 (defcustom org-stuck-projects
584 '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
585 "How to identify stuck projects.
586 This is a list of four items:
587 1. A tags/todo/property matcher string that is used to identify a project.
588 See the manual for a description of tag and property searches.
589 The entire tree below a headline matched by this is considered one project.
590 2. A list of TODO keywords identifying non-stuck projects.
591 If the project subtree contains any headline with one of these todo
592 keywords, the project is considered to be not stuck. If you specify
593 \"*\" as a keyword, any TODO keyword will mark the project unstuck.
594 3. A list of tags identifying non-stuck projects.
595 If the project subtree contains any headline with one of these tags,
596 the project is considered to be not stuck. If you specify \"*\" as
597 a tag, any tag will mark the project unstuck. Note that this is about
598 the explicit presence of a tag somewhere in the subtree, inherited
599 tags do not count here. If inherited tags make a project not stuck,
600 use \"-TAG\" in the tags part of the matcher under (1.) above.
601 4. An arbitrary regular expression matching non-stuck projects.
603 If the project turns out to be not stuck, search continues also in the
604 subtree to see if any of the subtasks have project status.
606 See also the variable `org-tags-match-list-sublevels' which applies
607 to projects matched by this search as well.
609 After defining this variable, you may use `org-agenda-list-stuck-projects'
610 \(bound to `\\[org-agenda] #') to produce the list."
611 :group 'org-agenda-custom-commands
612 :type '(list
613 (string :tag "Tags/TODO match to identify a project")
614 (repeat :tag "Projects are *not* stuck if they have an entry with \
615 TODO keyword any of" (string))
616 (repeat :tag "Projects are *not* stuck if they have an entry with \
617 TAG being any of" (string))
618 (regexp :tag "Projects are *not* stuck if this regexp matches inside \
619 the subtree")))
621 (defgroup org-agenda-skip nil
622 "Options concerning skipping parts of agenda files."
623 :tag "Org Agenda Skip"
624 :group 'org-agenda)
626 (defcustom org-agenda-skip-function-global nil
627 "Function to be called at each match during agenda construction.
628 If this function returns nil, the current match should not be skipped.
629 If the function decided to skip an agenda match, is must return the
630 buffer position from which the search should be continued.
631 This may also be a Lisp form, which will be evaluated.
633 This variable will be applied to every agenda match, including
634 tags/property searches and TODO lists. So try to make the test function
635 do its checking as efficiently as possible. To implement a skipping
636 condition just for specific agenda commands, use the variable
637 `org-agenda-skip-function' which can be set in the options section
638 of custom agenda commands."
639 :group 'org-agenda-skip
640 :type 'sexp)
642 (defgroup org-agenda-daily/weekly nil
643 "Options concerning the daily/weekly agenda."
644 :tag "Org Agenda Daily/Weekly"
645 :group 'org-agenda)
646 (defgroup org-agenda-todo-list nil
647 "Options concerning the global todo list agenda view."
648 :tag "Org Agenda Todo List"
649 :group 'org-agenda)
650 (defgroup org-agenda-match-view nil
651 "Options concerning the general tags/property/todo match agenda view."
652 :tag "Org Agenda Match View"
653 :group 'org-agenda)
654 (defgroup org-agenda-search-view nil
655 "Options concerning the search agenda view."
656 :tag "Org Agenda Search View"
657 :group 'org-agenda)
659 (defvar org-agenda-archives-mode nil
660 "Non-nil means the agenda will include archived items.
661 If this is the symbol `trees', trees in the selected agenda scope
662 that are marked with the ARCHIVE tag will be included anyway. When this is
663 t, also all archive files associated with the current selection of agenda
664 files will be included.")
666 (defcustom org-agenda-restriction-lock-highlight-subtree t
667 "Non-nil means highlight the whole subtree when restriction is active.
668 Otherwise only highlight the headline. Highlighting the whole subtree is
669 useful to ensure no edits happen beyond the restricted region."
670 :group 'org-agenda
671 :type 'boolean)
673 (defcustom org-agenda-skip-comment-trees t
674 "Non-nil means skip trees that start with the COMMENT keyword.
675 When nil, these trees are also scanned by agenda commands."
676 :group 'org-agenda-skip
677 :type 'boolean)
679 (defcustom org-agenda-todo-list-sublevels t
680 "Non-nil means check also the sublevels of a TODO entry for TODO entries.
681 When nil, the sublevels of a TODO entry are not checked, resulting in
682 potentially much shorter TODO lists."
683 :group 'org-agenda-skip
684 :group 'org-agenda-todo-list
685 :type 'boolean)
687 (defcustom org-agenda-todo-ignore-with-date nil
688 "Non-nil means don't show entries with a date in the global todo list.
689 You can use this if you prefer to mark mere appointments with a TODO keyword,
690 but don't want them to show up in the TODO list.
691 When this is set, it also covers deadlines and scheduled items, the settings
692 of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
693 will be ignored.
694 See also the variable `org-agenda-tags-todo-honor-ignore-options'."
695 :group 'org-agenda-skip
696 :group 'org-agenda-todo-list
697 :type 'boolean)
699 (defcustom org-agenda-todo-ignore-timestamp nil
700 "Non-nil means don't show entries with a timestamp.
701 This applies when creating the global todo list.
702 Valid values are:
704 past Don't show entries for today or in the past.
706 future Don't show entries with a timestamp in the future.
707 The idea behind this is that if it has a future
708 timestamp, you don't want to think about it until the
709 date.
711 all Don't show any entries with a timestamp in the global todo list.
712 The idea behind this is that by setting a timestamp, you
713 have already \"taken care\" of this item.
715 This variable can also have an integer as a value. If positive (N),
716 todos with a timestamp N or more days in the future will be ignored. If
717 negative (-N), todos with a timestamp N or more days in the past will be
718 ignored. If 0, todos with a timestamp either today or in the future will
719 be ignored. For example, a value of -1 will exclude todos with a
720 timestamp in the past (yesterday or earlier), while a value of 7 will
721 exclude todos with a timestamp a week or more in the future.
723 See also `org-agenda-todo-ignore-with-date'.
724 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
725 to make his option also apply to the tags-todo list."
726 :group 'org-agenda-skip
727 :group 'org-agenda-todo-list
728 :version "24.1"
729 :type '(choice
730 (const :tag "Ignore future timestamp todos" future)
731 (const :tag "Ignore past or present timestamp todos" past)
732 (const :tag "Ignore all timestamp todos" all)
733 (const :tag "Show timestamp todos" nil)
734 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
736 (defcustom org-agenda-todo-ignore-scheduled nil
737 "Non-nil means, ignore some scheduled TODO items when making TODO list.
738 This applies when creating the global todo list.
739 Valid values are:
741 past Don't show entries scheduled today or in the past.
743 future Don't show entries scheduled in the future.
744 The idea behind this is that by scheduling it, you don't want to
745 think about it until the scheduled date.
747 all Don't show any scheduled entries in the global todo list.
748 The idea behind this is that by scheduling it, you have already
749 \"taken care\" of this item.
751 t Same as `all', for backward compatibility.
753 This variable can also have an integer as a value. See
754 `org-agenda-todo-ignore-timestamp' for more details.
756 See also `org-agenda-todo-ignore-with-date'.
757 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
758 to make his option also apply to the tags-todo list."
759 :group 'org-agenda-skip
760 :group 'org-agenda-todo-list
761 :type '(choice
762 (const :tag "Ignore future-scheduled todos" future)
763 (const :tag "Ignore past- or present-scheduled todos" past)
764 (const :tag "Ignore all scheduled todos" all)
765 (const :tag "Ignore all scheduled todos (compatibility)" t)
766 (const :tag "Show scheduled todos" nil)
767 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
769 (defcustom org-agenda-todo-ignore-deadlines nil
770 "Non-nil means ignore some deadline TODO items when making TODO list.
772 There are different motivations for using different values, please think
773 carefully when configuring this variable.
775 This applies when creating the global TODO list.
777 Valid values are:
779 near Don't show near deadline entries. A deadline is near when it is
780 closer than `org-deadline-warning-days' days. The idea behind this
781 is that such items will appear in the agenda anyway.
783 far Don't show TODO entries where a deadline has been defined, but
784 is not going to happen anytime soon. This is useful if you want to use
785 the TODO list to figure out what to do now.
787 past Don't show entries with a deadline timestamp for today or in the past.
789 future Don't show entries with a deadline timestamp in the future, not even
790 when they become `near' ones. Use it with caution.
792 all Ignore all TODO entries that do have a deadline.
794 t Same as `near', for backward compatibility.
796 This variable can also have an integer as a value. See
797 `org-agenda-todo-ignore-timestamp' for more details.
799 See also `org-agenda-todo-ignore-with-date'.
800 See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
801 to make his option also apply to the tags-todo list."
802 :group 'org-agenda-skip
803 :group 'org-agenda-todo-list
804 :type '(choice
805 (const :tag "Ignore near deadlines" near)
806 (const :tag "Ignore near deadlines (compatibility)" t)
807 (const :tag "Ignore far deadlines" far)
808 (const :tag "Ignore all TODOs with a deadlines" all)
809 (const :tag "Show all TODOs, even if they have a deadline" nil)
810 (integer :tag "Ignore if N or more days in past(-) or future(+).")))
812 (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
813 "Time unit to use when possibly ignoring an agenda item.
815 See the docstring of various `org-agenda-todo-ignore-*' options.
816 The default is to compare time stamps using days. An item is thus
817 considered to be in the future if it is at least one day after today.
818 Non-nil means to compare time stamps using seconds. An item is then
819 considered future if it has a time value later than current time."
820 :group 'org-agenda-skip
821 :group 'org-agenda-todo-list
822 :version "24.4"
823 :package-version '(Org . "8.0")
824 :type '(choice
825 (const :tag "Compare time with days" nil)
826 (const :tag "Compare time with seconds" t)))
828 (defcustom org-agenda-tags-todo-honor-ignore-options nil
829 "Non-nil means honor todo-list ignores options also in tags-todo search.
830 The variables
831 `org-agenda-todo-ignore-with-date',
832 `org-agenda-todo-ignore-timestamp',
833 `org-agenda-todo-ignore-scheduled',
834 `org-agenda-todo-ignore-deadlines'
835 make the global TODO list skip entries that have time stamps of certain
836 kinds. If this option is set, the same options will also apply for the
837 tags-todo search, which is the general tags/property matcher
838 restricted to unfinished TODO entries only."
839 :group 'org-agenda-skip
840 :group 'org-agenda-todo-list
841 :group 'org-agenda-match-view
842 :type 'boolean)
844 (defcustom org-agenda-skip-scheduled-if-done nil
845 "Non-nil means don't show scheduled items in agenda when they are done.
846 This is relevant for the daily/weekly agenda, not for the TODO list. It
847 applies only to the actual date of the scheduling. Warnings about an item
848 with a past scheduling dates are always turned off when the item is DONE."
849 :group 'org-agenda-skip
850 :group 'org-agenda-daily/weekly
851 :type 'boolean)
853 (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
854 "Non-nil means skip scheduling line if same entry shows because of deadline.
856 In the agenda of today, an entry can show up multiple times
857 because it is both scheduled and has a nearby deadline, and maybe
858 a plain time stamp as well.
860 When this variable is nil, the entry will be shown several times.
862 When set to t, then only the deadline is shown and the fact that
863 the entry is scheduled today or was scheduled previously is not
864 shown.
866 When set to the symbol `not-today', skip scheduled previously,
867 but not scheduled today.
869 When set to the symbol `repeated-after-deadline', skip scheduled
870 items if they are repeated beyond the current deadline."
871 :group 'org-agenda-skip
872 :group 'org-agenda-daily/weekly
873 :type '(choice
874 (const :tag "Never" nil)
875 (const :tag "Always" t)
876 (const :tag "Not when scheduled today" not-today)
877 (const :tag "When repeated past deadline" repeated-after-deadline)))
879 (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
880 "Non-nil means skip timestamp line if same entry shows because of deadline.
881 In the agenda of today, an entry can show up multiple times
882 because it has both a plain timestamp and has a nearby deadline.
883 When this variable is t, then only the deadline is shown and the
884 fact that the entry has a timestamp for or including today is not
885 shown. When this variable is nil, the entry will be shown
886 several times."
887 :group 'org-agenda-skip
888 :group 'org-agenda-daily/weekly
889 :version "24.1"
890 :type '(choice
891 (const :tag "Never" nil)
892 (const :tag "Always" t)))
894 (defcustom org-agenda-skip-deadline-if-done nil
895 "Non-nil means don't show deadlines when the corresponding item is done.
896 When nil, the deadline is still shown and should give you a happy feeling.
897 This is relevant for the daily/weekly agenda. It applies only to the
898 actual date of the deadline. Warnings about approaching and past-due
899 deadlines are always turned off when the item is DONE."
900 :group 'org-agenda-skip
901 :group 'org-agenda-daily/weekly
902 :type 'boolean)
904 (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
905 "Non-nil means skip deadline prewarning when entry is also scheduled.
906 This will apply on all days where a prewarning for the deadline would
907 be shown, but not at the day when the entry is actually due. On that day,
908 the deadline will be shown anyway.
909 This variable may be set to nil, t, the symbol `pre-scheduled',
910 or a number which will then give the number of days before the actual
911 deadline when the prewarnings should resume. The symbol `pre-scheduled'
912 eliminates the deadline prewarning only prior to the scheduled date.
913 This can be used in a workflow where the first showing of the deadline will
914 trigger you to schedule it, and then you don't want to be reminded of it
915 because you will take care of it on the day when scheduled."
916 :group 'org-agenda-skip
917 :group 'org-agenda-daily/weekly
918 :version "24.1"
919 :type '(choice
920 (const :tag "Always show prewarning" nil)
921 (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
922 (const :tag "Remove prewarning if entry is scheduled" t)
923 (integer :tag "Restart prewarning N days before deadline")))
925 (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
926 "Non-nil means skip scheduled delay when entry also has a deadline.
927 This variable may be set to nil, t, the symbol `post-deadline',
928 or a number which will then give the number of days after the actual
929 scheduled date when the delay should expire. The symbol `post-deadline'
930 eliminates the schedule delay when the date is posterior to the deadline."
931 :group 'org-agenda-skip
932 :group 'org-agenda-daily/weekly
933 :version "24.4"
934 :package-version '(Org . "8.0")
935 :type '(choice
936 (const :tag "Always honor delay" nil)
937 (const :tag "Ignore delay if posterior to the deadline" post-deadline)
938 (const :tag "Ignore delay if entry has a deadline" t)
939 (integer :tag "Honor delay up until N days after the scheduled date")))
941 (defcustom org-agenda-skip-additional-timestamps-same-entry nil
942 "When nil, multiple same-day timestamps in entry make multiple agenda lines.
943 When non-nil, after the search for timestamps has matched once in an
944 entry, the rest of the entry will not be searched."
945 :group 'org-agenda-skip
946 :type 'boolean)
948 (defcustom org-agenda-skip-timestamp-if-done nil
949 "Non-nil means don't select item by timestamp or -range if it is DONE."
950 :group 'org-agenda-skip
951 :group 'org-agenda-daily/weekly
952 :type 'boolean)
954 (defcustom org-agenda-dim-blocked-tasks t
955 "Non-nil means dim blocked tasks in the agenda display.
956 This causes some overhead during agenda construction, but if you
957 have turned on `org-enforce-todo-dependencies',
958 `org-enforce-todo-checkbox-dependencies', or any other blocking
959 mechanism, this will create useful feedback in the agenda.
961 Instead of t, this variable can also have the value `invisible'.
962 Then blocked tasks will be invisible and only become visible when
963 they become unblocked. An exemption to this behavior is when a task is
964 blocked because of unchecked checkboxes below it. Since checkboxes do
965 not show up in the agenda views, making this task invisible you remove any
966 trace from agenda views that there is something to do. Therefore, a task
967 that is blocked because of checkboxes will never be made invisible, it
968 will only be dimmed."
969 :group 'org-agenda-daily/weekly
970 :group 'org-agenda-todo-list
971 :version "24.3"
972 :type '(choice
973 (const :tag "Do not dim" nil)
974 (const :tag "Dim to a gray face" t)
975 (const :tag "Make invisible" invisible)))
977 (defgroup org-agenda-startup nil
978 "Options concerning initial settings in the Agenda in Org Mode."
979 :tag "Org Agenda Startup"
980 :group 'org-agenda)
982 (defcustom org-agenda-menu-show-matcher t
983 "Non-nil means show the match string in the agenda dispatcher menu.
984 When nil, the matcher string is not shown, but is put into the help-echo
985 property so than moving the mouse over the command shows it.
986 Setting it to nil is good if matcher strings are very long and/or if
987 you want to use two-columns display (see `org-agenda-menu-two-columns')."
988 :group 'org-agenda
989 :version "24.1"
990 :type 'boolean)
992 (defcustom org-agenda-menu-two-columns nil
993 "Non-nil means, use two columns to show custom commands in the dispatcher.
994 If you use this, you probably want to set `org-agenda-menu-show-matcher'
995 to nil."
996 :group 'org-agenda
997 :version "24.1"
998 :type 'boolean)
1000 (defcustom org-agenda-finalize-hook nil
1001 "Hook run just before displaying an agenda buffer.
1002 The buffer is still writable when the hook is called.
1004 You can modify some of the buffer substrings but you should be
1005 extra careful not to modify the text properties of the agenda
1006 headlines as the agenda display heavily relies on them."
1007 :group 'org-agenda-startup
1008 :type 'hook)
1010 (defcustom org-agenda-mouse-1-follows-link nil
1011 "Non-nil means mouse-1 on a link will follow the link in the agenda.
1012 A longer mouse click will still set point. Needs to be set
1013 before org.el is loaded."
1014 :group 'org-agenda-startup
1015 :type 'boolean)
1017 (defcustom org-agenda-start-with-follow-mode nil
1018 "The initial value of follow mode in a newly created agenda window."
1019 :group 'org-agenda-startup
1020 :type 'boolean)
1022 (defcustom org-agenda-follow-indirect nil
1023 "Non-nil means `org-agenda-follow-mode' displays only the
1024 current item's tree, in an indirect buffer."
1025 :group 'org-agenda
1026 :version "24.1"
1027 :type 'boolean)
1029 (defcustom org-agenda-show-outline-path t
1030 "Non-nil means show outline path in echo area after line motion."
1031 :group 'org-agenda-startup
1032 :type 'boolean)
1034 (defcustom org-agenda-start-with-entry-text-mode nil
1035 "The initial value of entry-text-mode in a newly created agenda window."
1036 :group 'org-agenda-startup
1037 :type 'boolean)
1039 (defcustom org-agenda-entry-text-maxlines 5
1040 "Number of text lines to be added when `E' is pressed in the agenda.
1042 Note that this variable only used during agenda display. To add entry text
1043 when exporting the agenda, configure the variable
1044 `org-agenda-add-entry-text-maxlines'."
1045 :group 'org-agenda
1046 :type 'integer)
1048 (defcustom org-agenda-entry-text-exclude-regexps nil
1049 "List of regular expressions to clean up entry text.
1050 The complete matches of all regular expressions in this list will be
1051 removed from entry text before it is shown in the agenda."
1052 :group 'org-agenda
1053 :type '(repeat (regexp)))
1055 (defcustom org-agenda-entry-text-leaders " > "
1056 "Text prepended to the entry text in agenda buffers."
1057 :version "24.4"
1058 :package-version '(Org . "8.0")
1059 :group 'org-agenda
1060 :type 'string)
1062 (defvar org-agenda-entry-text-cleanup-hook nil
1063 "Hook that is run after basic cleanup of entry text to be shown in agenda.
1064 This cleanup is done in a temporary buffer, so the function may inspect and
1065 change the entire buffer.
1066 Some default stuff like drawers and scheduling/deadline dates will already
1067 have been removed when this is called, as will any matches for regular
1068 expressions listed in `org-agenda-entry-text-exclude-regexps'.")
1070 (defvar org-agenda-include-inactive-timestamps nil
1071 "Non-nil means include inactive time stamps in agenda.
1072 Dynamically scoped.")
1074 (defgroup org-agenda-windows nil
1075 "Options concerning the windows used by the Agenda in Org Mode."
1076 :tag "Org Agenda Windows"
1077 :group 'org-agenda)
1079 (defcustom org-agenda-window-setup 'reorganize-frame
1080 "How the agenda buffer should be displayed.
1081 Possible values for this option are:
1083 current-window Show agenda in the current window, keeping all other windows.
1084 other-window Use `switch-to-buffer-other-window' to display agenda.
1085 only-window Show agenda, deleting all other windows.
1086 reorganize-frame Show only two windows on the current frame, the current
1087 window and the agenda.
1088 other-frame Use `switch-to-buffer-other-frame' to display agenda.
1089 Also, when exiting the agenda, kill that frame.
1090 See also the variable `org-agenda-restore-windows-after-quit'."
1091 :group 'org-agenda-windows
1092 :type '(choice
1093 (const current-window)
1094 (const other-frame)
1095 (const other-window)
1096 (const only-window)
1097 (const reorganize-frame)))
1099 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
1100 "The min and max height of the agenda window as a fraction of frame height.
1101 The value of the variable is a cons cell with two numbers between 0 and 1.
1102 It only matters if `org-agenda-window-setup' is `reorganize-frame'."
1103 :group 'org-agenda-windows
1104 :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
1106 (defcustom org-agenda-restore-windows-after-quit nil
1107 "Non-nil means restore window configuration upon exiting agenda.
1108 Before the window configuration is changed for displaying the agenda,
1109 the current status is recorded. When the agenda is exited with
1110 `q' or `x' and this option is set, the old state is restored. If
1111 `org-agenda-window-setup' is `other-frame', the value of this
1112 option will be ignored."
1113 :group 'org-agenda-windows
1114 :type 'boolean)
1116 (defcustom org-agenda-span 'week
1117 "Number of days to include in overview display.
1118 Can be day, week, month, year, or any number of days.
1119 Custom commands can set this variable in the options section."
1120 :group 'org-agenda-daily/weekly
1121 :type '(choice (const :tag "Day" day)
1122 (const :tag "Week" week)
1123 (const :tag "Fortnight" fortnight)
1124 (const :tag "Month" month)
1125 (const :tag "Year" year)
1126 (integer :tag "Custom")))
1128 (defcustom org-agenda-start-on-weekday 1
1129 "Non-nil means start the overview always on the specified weekday.
1130 0 denotes Sunday, 1 denotes Monday, etc.
1131 When nil, always start on the current day.
1132 Custom commands can set this variable in the options section."
1133 :group 'org-agenda-daily/weekly
1134 :type '(choice (const :tag "Today" nil)
1135 (integer :tag "Weekday No.")))
1137 (defcustom org-agenda-show-all-dates t
1138 "Non-nil means `org-agenda' shows every day in the selected range.
1139 When nil, only the days which actually have entries are shown."
1140 :group 'org-agenda-daily/weekly
1141 :type 'boolean)
1143 (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
1144 "Format string for displaying dates in the agenda.
1145 Used by the daily/weekly agenda. This should be a format string
1146 understood by `format-time-string', or a function returning the
1147 formatted date as a string. The function must take a single
1148 argument, a calendar-style date list like (month day year)."
1149 :group 'org-agenda-daily/weekly
1150 :type '(choice
1151 (string :tag "Format string")
1152 (function :tag "Function")))
1154 (defun org-agenda-format-date-aligned (date)
1155 "Format a DATE string for display in the daily/weekly agenda.
1156 This function makes sure that dates are aligned for easy reading."
1157 (require 'cal-iso)
1158 (let* ((dayname (calendar-day-name date))
1159 (day (cadr date))
1160 (day-of-week (calendar-day-of-week date))
1161 (month (car date))
1162 (monthname (calendar-month-name month))
1163 (year (nth 2 date))
1164 (iso-week (org-days-to-iso-week
1165 (calendar-absolute-from-gregorian date)))
1166 (weekyear (cond ((and (= month 1) (>= iso-week 52))
1167 (1- year))
1168 ((and (= month 12) (<= iso-week 1))
1169 (1+ year))
1170 (t year)))
1171 (weekstring (if (= day-of-week 1)
1172 (format " W%02d" iso-week)
1173 "")))
1174 (format "%-10s %2d %s %4d%s"
1175 dayname day monthname year weekstring)))
1177 (defcustom org-agenda-time-leading-zero nil
1178 "Non-nil means use leading zero for military times in agenda.
1179 For example, 9:30am would become 09:30 rather than 9:30."
1180 :group 'org-agenda-daily/weekly
1181 :version "24.1"
1182 :type 'boolean)
1184 (defcustom org-agenda-timegrid-use-ampm nil
1185 "When set, show AM/PM style timestamps on the timegrid."
1186 :group 'org-agenda
1187 :version "24.1"
1188 :type 'boolean)
1190 (defun org-agenda-time-of-day-to-ampm (time)
1191 "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
1192 (let* ((hour-number (string-to-number (substring time 0 -3)))
1193 (minute (substring time -2))
1194 (ampm "am"))
1195 (cond
1196 ((equal hour-number 12)
1197 (setq ampm "pm"))
1198 ((> hour-number 12)
1199 (setq ampm "pm")
1200 (setq hour-number (- hour-number 12))))
1201 (concat
1202 (if org-agenda-time-leading-zero
1203 (format "%02d" hour-number)
1204 (format "%02s" (number-to-string hour-number)))
1205 ":" minute ampm)))
1207 (defun org-agenda-time-of-day-to-ampm-maybe (time)
1208 "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
1209 (if org-agenda-timegrid-use-ampm
1210 (org-agenda-time-of-day-to-ampm time)
1211 time))
1213 (defcustom org-agenda-weekend-days '(6 0)
1214 "Which days are weekend?
1215 These days get the special face `org-agenda-date-weekend' in the agenda."
1216 :group 'org-agenda-daily/weekly
1217 :type '(set :greedy t
1218 (const :tag "Monday" 1)
1219 (const :tag "Tuesday" 2)
1220 (const :tag "Wednesday" 3)
1221 (const :tag "Thursday" 4)
1222 (const :tag "Friday" 5)
1223 (const :tag "Saturday" 6)
1224 (const :tag "Sunday" 0)))
1226 (defcustom org-agenda-move-date-from-past-immediately-to-today t
1227 "Non-nil means jump to today when moving a past date forward in time.
1228 When using S-right in the agenda to move a a date forward, and the date
1229 stamp currently points to the past, the first key press will move it
1230 to today. WHen nil, just move one day forward even if the date stays
1231 in the past."
1232 :group 'org-agenda-daily/weekly
1233 :version "24.1"
1234 :type 'boolean)
1236 (defcustom org-agenda-include-diary nil
1237 "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
1238 Custom commands can set this variable in the options section."
1239 :group 'org-agenda-daily/weekly
1240 :type 'boolean)
1242 (defcustom org-agenda-include-deadlines t
1243 "If non-nil, include entries within their deadline warning period.
1244 Custom commands can set this variable in the options section."
1245 :group 'org-agenda-daily/weekly
1246 :version "24.1"
1247 :type 'boolean)
1249 (defcustom org-agenda-show-future-repeats t
1250 "Non-nil shows repeated entries in the future part of the agenda.
1251 When set to the symbol `next' only the first future repeat is shown."
1252 :group 'org-agenda-daily/weekly
1253 :type '(choice
1254 (const :tag "Show all repeated entries" t)
1255 (const :tag "Show next repeated entry" next)
1256 (const :tag "Do not show repeated entries" nil))
1257 :version "26.1"
1258 :package-version '(Org . "9.1")
1259 :safe #'symbolp)
1261 (defcustom org-agenda-prefer-last-repeat nil
1262 "Non-nil sets date for repeated entries to their last repeat.
1264 When nil, display SCHEDULED and DEADLINE dates at their base
1265 date, and in today's agenda, as a reminder. Display plain
1266 time-stamps, on the other hand, at every repeat date in the past
1267 in addition to the base date.
1269 When non-nil, show a repeated entry at its latest repeat date,
1270 possibly being today even if it wasn't marked as done. This
1271 setting is useful if you do not always mark repeated entries as
1272 done and, yet, consider that reaching repeat date starts the task
1273 anew.
1275 When set to a list of strings, prefer last repeats only for
1276 entries with these TODO keywords."
1277 :group 'org-agenda-daily/weekly
1278 :type '(choice
1279 (const :tag "Prefer last repeat" t)
1280 (const :tag "Prefer base date" nil)
1281 (repeat :tag "Prefer last repeat for entries with these TODO keywords"
1282 (string :tag "TODO keyword")))
1283 :version "26.1"
1284 :package-version '(Org . "9.1")
1285 :safe (lambda (x) (or (booleanp x) (consp x))))
1287 (defcustom org-scheduled-past-days 10000
1288 "Number of days to continue listing scheduled items not marked DONE.
1289 When an item is scheduled on a date, it shows up in the agenda on
1290 this day and will be listed until it is marked done or for the
1291 number of days given here."
1292 :group 'org-agenda-daily/weekly
1293 :type 'integer
1294 :safe 'integerp)
1296 (defcustom org-deadline-past-days 10000
1297 "Number of days to warn about missed deadlines.
1298 When an item has deadline on a date, it shows up in the agenda on
1299 this day and will appear as a reminder until it is marked DONE or
1300 for the number of days given here."
1301 :group 'org-agenda-daily/weekly
1302 :type 'integer
1303 :version "26.1"
1304 :package-version '(Org . "9.1")
1305 :safe 'integerp)
1307 (defcustom org-agenda-log-mode-items '(closed clock)
1308 "List of items that should be shown in agenda log mode.
1309 \\<org-agenda-mode-map>\
1310 This list may contain the following symbols:
1312 closed Show entries that have been closed on that day.
1313 clock Show entries that have received clocked time on that day.
1314 state Show all logged state changes.
1315 Note that instead of changing this variable, you can also press \
1316 `\\[universal-argument] \\[org-agenda-log-mode]' in
1317 the agenda to display all available LOG items temporarily."
1318 :group 'org-agenda-daily/weekly
1319 :type '(set :greedy t (const closed) (const clock) (const state)))
1321 (defcustom org-agenda-clock-consistency-checks
1322 '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
1323 :gap-ok-around ("4:00")
1324 :default-face ((:background "DarkRed") (:foreground "white"))
1325 :overlap-face nil :gap-face nil :no-end-time-face nil
1326 :long-face nil :short-face nil)
1327 "This is a property list, with the following keys:
1329 :max-duration Mark clocking chunks that are longer than this time.
1330 This is a time string like \"HH:MM\", or the number
1331 of minutes as an integer.
1333 :min-duration Mark clocking chunks that are shorter that this.
1334 This is a time string like \"HH:MM\", or the number
1335 of minutes as an integer.
1337 :max-gap Mark gaps between clocking chunks that are longer than
1338 this duration. A number of minutes, or a string
1339 like \"HH:MM\".
1341 :gap-ok-around List of times during the day which are usually not working
1342 times. When a gap is detected, but the gap contains any
1343 of these times, the gap is *not* reported. For example,
1344 if this is (\"4:00\" \"13:00\") then gaps that contain
1345 4:00 in the morning (i.e. the night) and 13:00
1346 (i.e. a typical lunch time) do not cause a warning.
1347 You should have at least one time during the night in this
1348 list, or otherwise the first task each morning will trigger
1349 a warning because it follows a long gap.
1351 Furthermore, the following properties can be used to define faces for
1352 issue display.
1354 :default-face the default face, if the specific face is undefined
1355 :overlap-face face for overlapping clocks
1356 :gap-face face for gaps between clocks
1357 :no-end-time-face face for incomplete clocks
1358 :long-face face for clock intervals that are too long
1359 :short-face face for clock intervals that are too short"
1360 :group 'org-agenda-daily/weekly
1361 :group 'org-clock
1362 :version "24.1"
1363 :type 'plist)
1365 (defcustom org-agenda-log-mode-add-notes t
1366 "Non-nil means add first line of notes to log entries in agenda views.
1367 If a log item like a state change or a clock entry is associated with
1368 notes, the first line of these notes will be added to the entry in the
1369 agenda display."
1370 :group 'org-agenda-daily/weekly
1371 :type 'boolean)
1373 (defcustom org-agenda-start-with-log-mode nil
1374 "The initial value of log-mode in a newly created agenda window.
1375 See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
1376 explanations on the possible values."
1377 :group 'org-agenda-startup
1378 :group 'org-agenda-daily/weekly
1379 :type '(choice (const :tag "Don't show log items" nil)
1380 (const :tag "Show only log items" only)
1381 (const :tag "Show all possible log items" clockcheck)
1382 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
1383 (choice (const :tag "Show closed log items" closed)
1384 (const :tag "Show clocked log items" clock)
1385 (const :tag "Show all logged state changes" state)))))
1387 (defcustom org-agenda-start-with-clockreport-mode nil
1388 "The initial value of clockreport-mode in a newly created agenda window."
1389 :group 'org-agenda-startup
1390 :group 'org-agenda-daily/weekly
1391 :type 'boolean)
1393 (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
1394 "Property list with parameters for the clocktable in clockreport mode.
1395 This is the display mode that shows a clock table in the daily/weekly
1396 agenda, the properties for this dynamic block can be set here.
1397 The usual clocktable parameters are allowed here, but you cannot set
1398 the properties :name, :tstart, :tend, :block, and :scope - these will
1399 be overwritten to make sure the content accurately reflects the
1400 current display in the agenda."
1401 :group 'org-agenda-daily/weekly
1402 :type 'plist)
1404 (defcustom org-agenda-search-view-always-boolean nil
1405 "Non-nil means the search string is interpreted as individual parts.
1407 The search string for search view can either be interpreted as a phrase,
1408 or as a list of snippets that define a boolean search for a number of
1409 strings.
1411 When this is non-nil, the string will be split on whitespace, and each
1412 snippet will be searched individually, and all must match in order to
1413 select an entry. A snippet is then a single string of non-white
1414 characters, or a string in double quotes, or a regexp in {} braces.
1415 If a snippet is preceded by \"-\", the snippet must *not* match.
1416 \"+\" is syntactic sugar for positive selection. Each snippet may
1417 be found as a full word or a partial word, but see the variable
1418 `org-agenda-search-view-force-full-words'.
1420 When this is nil, search will look for the entire search phrase as one,
1421 with each space character matching any amount of whitespace, including
1422 line breaks.
1424 Even when this is nil, you can still switch to Boolean search dynamically
1425 by preceding the first snippet with \"+\" or \"-\". If the first snippet
1426 is a regexp marked with braces like \"{abc}\", this will also switch to
1427 boolean search."
1428 :group 'org-agenda-search-view
1429 :version "24.1"
1430 :type 'boolean)
1432 (defvaralias 'org-agenda-search-view-search-words-only
1433 'org-agenda-search-view-always-boolean)
1435 (defcustom org-agenda-search-view-force-full-words nil
1436 "Non-nil means, search words must be matches as complete words.
1437 When nil, they may also match part of a word."
1438 :group 'org-agenda-search-view
1439 :version "24.1"
1440 :type 'boolean)
1442 (defcustom org-agenda-search-view-max-outline-level 0
1443 "Maximum outline level to display in search view.
1444 E.g. when this is set to 1, the search view will only
1445 show headlines of level 1. When set to 0, the default
1446 value, don't limit agenda view by outline level."
1447 :group 'org-agenda-search-view
1448 :version "26.1"
1449 :package-version '(Org . "8.3")
1450 :type 'integer)
1452 (defgroup org-agenda-time-grid nil
1453 "Options concerning the time grid in the Org Agenda."
1454 :tag "Org Agenda Time Grid"
1455 :group 'org-agenda)
1457 (defcustom org-agenda-search-headline-for-time t
1458 "Non-nil means search headline for a time-of-day.
1459 If the headline contains a time-of-day in one format or another, it will
1460 be used to sort the entry into the time sequence of items for a day.
1461 Some people have time stamps in the headline that refer to the creation
1462 time or so, and then this produces an unwanted side effect. If this is
1463 the case for your, use this variable to turn off searching the headline
1464 for a time."
1465 :group 'org-agenda-time-grid
1466 :type 'boolean)
1468 (defcustom org-agenda-use-time-grid t
1469 "Non-nil means show a time grid in the agenda schedule.
1470 A time grid is a set of lines for specific times (like every two hours between
1471 8:00 and 20:00). The items scheduled for a day at specific times are
1472 sorted in between these lines.
1473 For details about when the grid will be shown, and what it will look like, see
1474 the variable `org-agenda-time-grid'."
1475 :group 'org-agenda-time-grid
1476 :type 'boolean)
1478 (defcustom org-agenda-time-grid
1479 '((daily today require-timed)
1480 (800 1000 1200 1400 1600 1800 2000)
1481 "......"
1482 "----------------")
1484 "The settings for time grid for agenda display.
1485 This is a list of four items. The first item is again a list. It contains
1486 symbols specifying conditions when the grid should be displayed:
1488 daily if the agenda shows a single day
1489 weekly if the agenda shows an entire week
1490 today show grid on current date, independent of daily/weekly display
1491 require-timed show grid only if at least one item has a time specification
1492 remove-match skip grid times already present in an entry
1494 The second item is a list of integers, indicating the times that
1495 should have a grid line.
1497 The third item is a string which will be placed right after the
1498 times that have a grid line.
1500 The fourth item is a string placed after the grid times. This
1501 will align with agenda items"
1502 :group 'org-agenda-time-grid
1503 :type
1504 '(list
1505 (set :greedy t :tag "Grid Display Options"
1506 (const :tag "Show grid in single day agenda display" daily)
1507 (const :tag "Show grid in weekly agenda display" weekly)
1508 (const :tag "Always show grid for today" today)
1509 (const :tag "Show grid only if any timed entries are present"
1510 require-timed)
1511 (const :tag "Skip grid times already present in an entry"
1512 remove-match))
1513 (repeat :tag "Grid Times" (integer :tag "Time"))
1514 (string :tag "Grid String (after agenda times)")
1515 (string :tag "Grid String (aligns with agenda items)")))
1517 (defcustom org-agenda-show-current-time-in-grid t
1518 "Non-nil means show the current time in the time grid."
1519 :group 'org-agenda-time-grid
1520 :version "24.1"
1521 :type 'boolean)
1523 (defcustom org-agenda-current-time-string
1524 "now - - - - - - - - - - - - - - - - - - - - - - - - -"
1525 "The string for the current time marker in the agenda."
1526 :group 'org-agenda-time-grid
1527 :version "24.1"
1528 :type 'string)
1530 (defgroup org-agenda-sorting nil
1531 "Options concerning sorting in the Org Agenda."
1532 :tag "Org Agenda Sorting"
1533 :group 'org-agenda)
1535 (defcustom org-agenda-sorting-strategy
1536 '((agenda habit-down time-up priority-down category-keep)
1537 (todo priority-down category-keep)
1538 (tags priority-down category-keep)
1539 (search category-keep))
1540 "Sorting structure for the agenda items of a single day.
1541 This is a list of symbols which will be used in sequence to determine
1542 if an entry should be listed before another entry. The following
1543 symbols are recognized:
1545 time-up Put entries with time-of-day indications first, early first
1546 time-down Put entries with time-of-day indications first, late first
1547 timestamp-up Sort by any timestamp, early first
1548 timestamp-down Sort by any timestamp, late first
1549 scheduled-up Sort by scheduled timestamp, early first
1550 scheduled-down Sort by scheduled timestamp, late first
1551 deadline-up Sort by deadline timestamp, early first
1552 deadline-down Sort by deadline timestamp, late first
1553 ts-up Sort by active timestamp, early first
1554 ts-down Sort by active timestamp, late first
1555 tsia-up Sort by inactive timestamp, early first
1556 tsia-down Sort by inactive timestamp, late first
1557 category-keep Keep the default order of categories, corresponding to the
1558 sequence in `org-agenda-files'.
1559 category-up Sort alphabetically by category, A-Z.
1560 category-down Sort alphabetically by category, Z-A.
1561 tag-up Sort alphabetically by last tag, A-Z.
1562 tag-down Sort alphabetically by last tag, Z-A.
1563 priority-up Sort numerically by priority, high priority last.
1564 priority-down Sort numerically by priority, high priority first.
1565 todo-state-up Sort by todo state, tasks that are done last.
1566 todo-state-down Sort by todo state, tasks that are done first.
1567 effort-up Sort numerically by estimated effort, high effort last.
1568 effort-down Sort numerically by estimated effort, high effort first.
1569 user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
1570 user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
1571 habit-up Put entries that are habits first
1572 habit-down Put entries that are habits last
1573 alpha-up Sort headlines alphabetically
1574 alpha-down Sort headlines alphabetically, reversed
1576 The different possibilities will be tried in sequence, and testing stops
1577 if one comparison returns a \"not-equal\". For example, the default
1578 '(time-up category-keep priority-down)
1579 means: Pull out all entries having a specified time of day and sort them,
1580 in order to make a time schedule for the current day the first thing in the
1581 agenda listing for the day. Of the entries without a time indication, keep
1582 the grouped in categories, don't sort the categories, but keep them in
1583 the sequence given in `org-agenda-files'. Within each category sort by
1584 priority.
1586 Leaving out `category-keep' would mean that items will be sorted across
1587 categories by priority.
1589 Instead of a single list, this can also be a set of list for specific
1590 contents, with a context symbol in the car of the list, any of
1591 `agenda', `todo', `tags', `search' for the corresponding agenda views.
1593 Custom commands can bind this variable in the options section."
1594 :group 'org-agenda-sorting
1595 :type `(choice
1596 (repeat :tag "General" ,org-sorting-choice)
1597 (list :tag "Individually"
1598 (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
1599 (repeat ,org-sorting-choice))
1600 (cons (const :tag "Strategy for TODO lists" todo)
1601 (repeat ,org-sorting-choice))
1602 (cons (const :tag "Strategy for Tags matches" tags)
1603 (repeat ,org-sorting-choice))
1604 (cons (const :tag "Strategy for search matches" search)
1605 (repeat ,org-sorting-choice)))))
1607 (defcustom org-agenda-cmp-user-defined nil
1608 "A function to define the comparison `user-defined'.
1609 This function must receive two arguments, agenda entry a and b.
1610 If a>b, return +1. If a<b, return -1. If they are equal as seen by
1611 the user comparison, return nil.
1612 When this is defined, you can make `user-defined-up' and `user-defined-down'
1613 part of an agenda sorting strategy."
1614 :group 'org-agenda-sorting
1615 :type 'symbol)
1617 (defcustom org-sort-agenda-notime-is-late t
1618 "Non-nil means items without time are considered late.
1619 This is only relevant for sorting. When t, items which have no explicit
1620 time like 15:30 will be considered as 99:01, i.e. later than any items which
1621 do have a time. When nil, the default time is before 0:00. You can use this
1622 option to decide if the schedule for today should come before or after timeless
1623 agenda entries."
1624 :group 'org-agenda-sorting
1625 :type 'boolean)
1627 (defcustom org-sort-agenda-noeffort-is-high t
1628 "Non-nil means items without effort estimate are sorted as high effort.
1629 This also applies when filtering an agenda view with respect to the
1630 < or > effort operator. Then, tasks with no effort defined will be treated
1631 as tasks with high effort.
1632 When nil, such items are sorted as 0 minutes effort."
1633 :group 'org-agenda-sorting
1634 :type 'boolean)
1636 (defgroup org-agenda-line-format nil
1637 "Options concerning the entry prefix in the Org agenda display."
1638 :tag "Org Agenda Line Format"
1639 :group 'org-agenda)
1641 (defcustom org-agenda-prefix-format
1642 '((agenda . " %i %-12:c%?-12t% s")
1643 (todo . " %i %-12:c")
1644 (tags . " %i %-12:c")
1645 (search . " %i %-12:c"))
1646 "Format specifications for the prefix of items in the agenda views.
1648 An alist with one entry per agenda type. The keys of the
1649 sublists are `agenda', `todo', `search' and `tags'. The values
1650 are format strings.
1652 This format works similar to a printf format, with the following meaning:
1654 %c the category of the item, \"Diary\" for entries from the diary,
1655 or as given by the CATEGORY keyword or derived from the file name
1656 %e the effort required by the item
1657 %l the level of the item (insert X space(s) if item is of level X)
1658 %i the icon category of the item, see `org-agenda-category-icon-alist'
1659 %T the last tag of the item (ignore inherited tags, which come first)
1660 %t the HH:MM time-of-day specification if one applies to the entry
1661 %s Scheduling/Deadline information, a short string
1662 %b show breadcrumbs, i.e., the names of the higher levels
1663 %(expression) Eval EXPRESSION and replace the control string
1664 by the result
1666 All specifiers work basically like the standard `%s' of printf, but may
1667 contain two additional characters: a question mark just after the `%'
1668 and a whitespace/punctuation character just before the final letter.
1670 If the first character after `%' is a question mark, the entire field
1671 will only be included if the corresponding value applies to the current
1672 entry. This is useful for fields which should have fixed width when
1673 present, but zero width when absent. For example, \"%?-12t\" will
1674 result in a 12 character time field if a time of the day is specified,
1675 but will completely disappear in entries which do not contain a time.
1677 If there is punctuation or whitespace character just before the
1678 final format letter, this character will be appended to the field
1679 value if the value is not empty. For example, the format
1680 \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
1681 the category is empty, no additional colon is inserted.
1683 The default value for the agenda sublist is \" %-12:c%?-12t% s\",
1684 which means:
1686 - Indent the line with two space characters
1687 - Give the category a 12 chars wide field, padded with whitespace on
1688 the right (because of `-'). Append a colon if there is a category
1689 (because of `:').
1690 - If there is a time-of-day, put it into a 12 chars wide field. If no
1691 time, don't put in an empty field, just skip it (because of '?').
1692 - Finally, put the scheduling information.
1694 See also the variables `org-agenda-remove-times-when-in-prefix' and
1695 `org-agenda-remove-tags'.
1697 Custom commands can set this variable in the options section."
1698 :type '(choice
1699 (string :tag "General format")
1700 (list :greedy t :tag "View dependent"
1701 (cons (const agenda) (string :tag "Format"))
1702 (cons (const todo) (string :tag "Format"))
1703 (cons (const tags) (string :tag "Format"))
1704 (cons (const search) (string :tag "Format"))))
1705 :group 'org-agenda-line-format
1706 :version "26.1"
1707 :package-version '(Org . "9.1"))
1709 (defvar org-prefix-format-compiled nil
1710 "The compiled prefix format and associated variables.
1711 This is a list where first element is a list of variable bindings, and second
1712 element is the compiled format expression. See the variable
1713 `org-agenda-prefix-format'.")
1715 (defcustom org-agenda-todo-keyword-format "%-1s"
1716 "Format for the TODO keyword in agenda lines.
1717 Set this to something like \"%-12s\" if you want all TODO keywords
1718 to occupy a fixed space in the agenda display."
1719 :group 'org-agenda-line-format
1720 :type 'string)
1722 (defcustom org-agenda-diary-sexp-prefix nil
1723 "A regexp that matches part of a diary sexp entry
1724 which should be treated as scheduling/deadline information in
1725 `org-agenda'.
1727 For example, you can use this to extract the `diary-remind-message' from
1728 `diary-remind' entries."
1729 :group 'org-agenda-line-format
1730 :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
1732 (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
1733 "Text preceding timerange entries in the agenda view.
1734 This is a list with two strings. The first applies when the range
1735 is entirely on one day. The second applies if the range spans several days.
1736 The strings may have two \"%d\" format specifiers which will be filled
1737 with the sequence number of the days, and the total number of days in the
1738 range, respectively."
1739 :group 'org-agenda-line-format
1740 :type '(list
1741 (string :tag "Deadline today ")
1742 (choice :tag "Deadline relative"
1743 (string :tag "Format string")
1744 (function))))
1746 (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
1747 "Text preceding scheduled items in the agenda view.
1748 This is a list with two strings. The first applies when the item is
1749 scheduled on the current day. The second applies when it has been scheduled
1750 previously, it may contain a %d indicating that this is the nth time that
1751 this item is scheduled, due to automatic rescheduling of unfinished items
1752 for the following day. So this number is one larger than the number of days
1753 that passed since this item was scheduled first."
1754 :group 'org-agenda-line-format
1755 :version "24.4"
1756 :package-version '(Org . "8.0")
1757 :type '(list
1758 (string :tag "Scheduled today ")
1759 (string :tag "Scheduled previously")))
1761 (defcustom org-agenda-inactive-leader "["
1762 "Text preceding item pulled into the agenda by inactive time stamps.
1763 These entries are added to the agenda when pressing \"[\"."
1764 :group 'org-agenda-line-format
1765 :version "24.1"
1766 :type 'string)
1768 (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
1769 "Text preceding deadline items in the agenda view.
1770 This is a list with three strings. The first applies when the item has its
1771 deadline on the current day. The second applies when the deadline is in the
1772 future, the third one when it is in the past. The strings may contain %d
1773 to capture the number of days."
1774 :group 'org-agenda-line-format
1775 :version "24.4"
1776 :package-version '(Org . "8.0")
1777 :type '(list
1778 (string :tag "Deadline today ")
1779 (string :tag "Deadline in the future ")
1780 (string :tag "Deadline in the past ")))
1782 (defcustom org-agenda-remove-times-when-in-prefix t
1783 "Non-nil means remove duplicate time specifications in agenda items.
1784 When the format `org-agenda-prefix-format' contains a `%t' specifier, a
1785 time-of-day specification in a headline or diary entry is extracted and
1786 placed into the prefix. If this option is non-nil, the original specification
1787 \(a timestamp or -range, or just a plain time(range) specification like
1788 11:30-4pm) will be removed for agenda display. This makes the agenda less
1789 cluttered.
1790 The option can be t or nil. It may also be the symbol `beg', indicating
1791 that the time should only be removed when it is located at the beginning of
1792 the headline/diary entry."
1793 :group 'org-agenda-line-format
1794 :type '(choice
1795 (const :tag "Always" t)
1796 (const :tag "Never" nil)
1797 (const :tag "When at beginning of entry" beg)))
1799 (defcustom org-agenda-remove-timeranges-from-blocks nil
1800 "Non-nil means remove time ranges specifications in agenda
1801 items that span on several days."
1802 :group 'org-agenda-line-format
1803 :version "24.1"
1804 :type 'boolean)
1806 (defcustom org-agenda-default-appointment-duration nil
1807 "Default duration for appointments that only have a starting time.
1808 When nil, no duration is specified in such cases.
1809 When non-nil, this must be the number of minutes, e.g. 60 for one hour."
1810 :group 'org-agenda-line-format
1811 :type '(choice
1812 (integer :tag "Minutes")
1813 (const :tag "No default duration")))
1815 (defcustom org-agenda-show-inherited-tags t
1816 "Non-nil means show inherited tags in each agenda line.
1818 When this option is set to `always', it takes precedence over
1819 `org-agenda-use-tag-inheritance' and inherited tags are shown
1820 in every agenda.
1822 When this option is set to t (the default), inherited tags are
1823 shown when they are available, i.e. when the value of
1824 `org-agenda-use-tag-inheritance' enables tag inheritance for the
1825 given agenda type.
1827 This can be set to a list of agenda types in which the agenda
1828 must display the inherited tags. Available types are `todo',
1829 `agenda' and `search'.
1831 When set to nil, never show inherited tags in agenda lines."
1832 :group 'org-agenda-line-format
1833 :group 'org-agenda
1834 :version "24.3"
1835 :type '(choice
1836 (const :tag "Show inherited tags when available" t)
1837 (const :tag "Always show inherited tags" always)
1838 (repeat :tag "Show inherited tags only in selected agenda types"
1839 (symbol :tag "Agenda type"))))
1841 (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
1842 "List of agenda view types where to use tag inheritance.
1844 In tags/tags-todo/tags-tree agenda views, tag inheritance is
1845 controlled by `org-use-tag-inheritance'. In other agenda types,
1846 `org-use-tag-inheritance' is not used for the selection of the
1847 agenda entries. Still, you may want the agenda to be aware of
1848 the inherited tags anyway, e.g. for later tag filtering.
1850 Allowed value are `todo', `search' and `agenda'.
1852 This variable has no effect if `org-agenda-show-inherited-tags'
1853 is set to `always'. In that case, the agenda is aware of those
1854 tags.
1856 The default value sets tags in every agenda type. Setting this
1857 option to nil will speed up non-tags agenda view a lot."
1858 :group 'org-agenda
1859 :version "26.1"
1860 :package-version '(Org . "9.1")
1861 :type '(choice
1862 (const :tag "Use tag inheritance in all agenda types" t)
1863 (repeat :tag "Use tag inheritance in selected agenda types"
1864 (symbol :tag "Agenda type"))))
1866 (defcustom org-agenda-hide-tags-regexp nil
1867 "Regular expression used to filter away specific tags in agenda views.
1868 This means that these tags will be present, but not be shown in the agenda
1869 line. Secondary filtering will still work on the hidden tags.
1870 Nil means don't hide any tags."
1871 :group 'org-agenda-line-format
1872 :type '(choice
1873 (const :tag "Hide none" nil)
1874 (string :tag "Regexp ")))
1876 (defcustom org-agenda-remove-tags nil
1877 "Non-nil means remove the tags from the headline copy in the agenda.
1878 When this is the symbol `prefix', only remove tags when
1879 `org-agenda-prefix-format' contains a `%T' specifier."
1880 :group 'org-agenda-line-format
1881 :type '(choice
1882 (const :tag "Always" t)
1883 (const :tag "Never" nil)
1884 (const :tag "When prefix format contains %T" prefix)))
1886 (defvaralias 'org-agenda-remove-tags-when-in-prefix
1887 'org-agenda-remove-tags)
1889 (defcustom org-agenda-tags-column 'auto
1890 "Shift tags in agenda items to this column.
1891 If set to `auto', tags will be automatically aligned to the right
1892 edge of the window.
1894 If set to a positive number, tags will be left-aligned to that
1895 column. If set to a negative number, tags will be right-aligned
1896 to that column. For example, -80 works well for a normal 80
1897 character screen."
1898 :group 'org-agenda-line-format
1899 :type '(choice
1900 (const :tag "Automatically align to right edge of window" auto)
1901 (integer :tag "Specific column" -80))
1902 :package-version '(Org . "9.1")
1903 :version "26.1")
1905 (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
1907 (defcustom org-agenda-fontify-priorities 'cookies
1908 "Non-nil means highlight low and high priorities in agenda.
1909 When t, the highest priority entries are bold, lowest priority italic.
1910 However, settings in `org-priority-faces' will overrule these faces.
1911 When this variable is the symbol `cookies', only fontify the
1912 cookies, not the entire task.
1913 This may also be an association list of priority faces, whose
1914 keys are the character values of `org-highest-priority',
1915 `org-default-priority', and `org-lowest-priority' (the default values
1916 are ?A, ?B, and ?C, respectively). The face may be a named face, a
1917 color as a string, or a list like `(:background \"Red\")'.
1918 If it is a color, the variable `org-faces-easy-properties'
1919 determines if it is a foreground or a background color."
1920 :group 'org-agenda-line-format
1921 :type '(choice
1922 (const :tag "Never" nil)
1923 (const :tag "Defaults" t)
1924 (const :tag "Cookies only" cookies)
1925 (repeat :tag "Specify"
1926 (list (character :tag "Priority" :value ?A)
1927 (choice :tag "Face "
1928 (string :tag "Color")
1929 (sexp :tag "Face"))))))
1931 (defcustom org-agenda-day-face-function nil
1932 "Function called to determine what face should be used to display a day.
1933 The only argument passed to that function is the day. It should
1934 returns a face, or nil if does not want to specify a face and let
1935 the normal rules apply."
1936 :group 'org-agenda-line-format
1937 :version "24.1"
1938 :type '(choice (const nil) (function)))
1940 (defcustom org-agenda-category-icon-alist nil
1941 "Alist of category icon to be displayed in agenda views.
1943 Each entry should have the following format:
1945 (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
1947 Where CATEGORY-REGEXP is a regexp matching the categories where
1948 the icon should be displayed.
1949 FILE-OR-DATA either a file path or a string containing image data.
1951 The other fields can be omitted safely if not needed:
1952 TYPE indicates the image type.
1953 DATA-P is a boolean indicating whether the FILE-OR-DATA string is
1954 image data.
1955 PROPS are additional image attributes to assign to the image,
1956 like, e.g. `:ascent center'.
1958 (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
1960 If you want to set the display properties yourself, just put a
1961 list as second element:
1963 (CATEGORY-REGEXP (MY PROPERTY LIST))
1965 For example, to display a 16px horizontal space for Emacs
1966 category, you can use:
1968 (\"Emacs\" \\='(space . (:width (16))))"
1969 :group 'org-agenda-line-format
1970 :version "24.1"
1971 :type '(alist :key-type (string :tag "Regexp matching category")
1972 :value-type (choice (list :tag "Icon"
1973 (string :tag "File or data")
1974 (symbol :tag "Type")
1975 (boolean :tag "Data?")
1976 (repeat :tag "Extra image properties" :inline t symbol))
1977 (list :tag "Display properties" sexp))))
1979 (defgroup org-agenda-column-view nil
1980 "Options concerning column view in the agenda."
1981 :tag "Org Agenda Column View"
1982 :group 'org-agenda)
1984 (defcustom org-agenda-view-columns-initially nil
1985 "When non-nil, switch to columns view right after creating the agenda."
1986 :group 'org-agenda-column-view
1987 :type 'boolean
1988 :version "26.1"
1989 :package-version '(Org . "9.0")
1990 :safe #'booleanp)
1992 (defcustom org-agenda-columns-show-summaries t
1993 "Non-nil means show summaries for columns displayed in the agenda view."
1994 :group 'org-agenda-column-view
1995 :type 'boolean)
1997 (defcustom org-agenda-columns-compute-summary-properties t
1998 "Non-nil means recompute all summary properties before column view.
1999 When column view in the agenda is listing properties that have a summary
2000 operator, it can go to all relevant buffers and recompute the summaries
2001 there. This can mean overhead for the agenda column view, but is necessary
2002 to have thing up to date.
2003 As a special case, a CLOCKSUM property also makes sure that the clock
2004 computations are current."
2005 :group 'org-agenda-column-view
2006 :type 'boolean)
2008 (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
2009 "Non-nil means the duration of an appointment will add to day effort.
2010 The property to which appointment durations will be added is the one given
2011 in the option `org-effort-property'. If an appointment does not have
2012 an end time, `org-agenda-default-appointment-duration' will be used. If that
2013 is not set, an appointment without end time will not contribute to the time
2014 estimate."
2015 :group 'org-agenda-column-view
2016 :type 'boolean)
2018 (defcustom org-agenda-auto-exclude-function nil
2019 "A function called with a tag to decide if it is filtered on \
2020 \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
2021 The sole argument to the function, which is called once for each
2022 possible tag, is a string giving the name of the tag. The
2023 function should return either nil if the tag should be included
2024 as normal, or \"-<TAG>\" to exclude the tag.
2025 Note that for the purpose of tag filtering, only the lower-case version of
2026 all tags will be considered, so that this function will only ever see
2027 the lower-case version of all tags."
2028 :group 'org-agenda
2029 :type '(choice (const nil) (function)))
2031 (defcustom org-agenda-bulk-custom-functions nil
2032 "Alist of characters and custom functions for bulk actions.
2033 For example, this value makes those two functions available:
2035 \\='((?R set-category)
2036 (?C bulk-cut))
2038 With selected entries in an agenda buffer, `B R' will call
2039 the custom function `set-category' on the selected entries.
2040 Note that functions in this alist don't need to be quoted."
2041 :type '(alist :key-type character :value-type (group function))
2042 :version "24.1"
2043 :group 'org-agenda)
2045 (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
2046 "Execute BODY with point at location given by `org-hd-marker' property.
2047 If STRING is non-nil, the text property will be fetched from position 0
2048 in that string. If STRING is nil, it will be fetched from the beginning
2049 of the current line."
2050 (org-with-gensyms (marker)
2051 `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
2052 'org-hd-marker ,string)))
2053 (with-current-buffer (marker-buffer ,marker)
2054 (save-excursion
2055 (goto-char ,marker)
2056 ,@body)))))
2057 (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
2059 (defun org-add-agenda-custom-command (entry)
2060 "Replace or add a command in `org-agenda-custom-commands'.
2061 This is mostly for hacking and trying a new command - once the command
2062 works you probably want to add it to `org-agenda-custom-commands' for good."
2063 (let ((ass (assoc (car entry) org-agenda-custom-commands)))
2064 (if ass
2065 (setcdr ass (cdr entry))
2066 (push entry org-agenda-custom-commands))))
2068 (defmacro org-agenda--insert-overriding-header (default)
2069 "Insert header into agenda view.
2070 The inserted header depends on `org-agenda-overriding-header'.
2071 If the empty string, don't insert a header. If any other string,
2072 insert it as a header. If nil, insert DEFAULT, which should
2073 evaluate to a string."
2074 (declare (debug (form)) (indent defun))
2075 `(cond
2076 ((not org-agenda-overriding-header) (insert ,default))
2077 ((equal org-agenda-overriding-header "") nil)
2078 ((stringp org-agenda-overriding-header)
2079 (insert (propertize org-agenda-overriding-header
2080 'face 'org-agenda-structure)
2081 "\n"))
2082 (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
2083 org-agenda-overriding-header))))
2085 ;;; Define the org-agenda-mode
2087 (defvar org-agenda-mode-map (make-sparse-keymap)
2088 "Keymap for `org-agenda-mode'.")
2089 (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
2091 (defvar org-agenda-menu) ; defined later in this file.
2092 (defvar org-agenda-restrict nil) ; defined later in this file.
2093 (defvar org-agenda-follow-mode nil)
2094 (defvar org-agenda-entry-text-mode nil)
2095 (defvar org-agenda-clockreport-mode nil)
2096 (defvar org-agenda-show-log nil
2097 "When non-nil, show the log in the agenda.
2098 Do not set this directly; instead use
2099 `org-agenda-start-with-log-mode', which see.")
2100 (defvar org-agenda-redo-command nil)
2101 (defvar org-agenda-query-string nil)
2102 (defvar org-agenda-mode-hook nil
2103 "Hook run after `org-agenda-mode' is turned on.
2104 The buffer is still writable when this hook is called.")
2105 (defvar org-agenda-type nil)
2106 (defvar org-agenda-force-single-file nil)
2107 (defvar org-agenda-bulk-marked-entries nil
2108 "List of markers that refer to marked entries in the agenda.")
2109 (defvar org-agenda-current-date nil
2110 "Active date when building the agenda.")
2112 ;;; Multiple agenda buffers support
2114 (defcustom org-agenda-sticky nil
2115 "Non-nil means agenda q key will bury agenda buffers.
2116 Agenda commands will then show existing buffer instead of generating new ones.
2117 When nil, `q' will kill the single agenda buffer."
2118 :group 'org-agenda
2119 :version "24.3"
2120 :type 'boolean)
2123 ;;;###autoload
2124 (defun org-toggle-sticky-agenda (&optional arg)
2125 "Toggle `org-agenda-sticky'."
2126 (interactive "P")
2127 (let ((new-value (if arg
2128 (> (prefix-numeric-value arg) 0)
2129 (not org-agenda-sticky))))
2130 (if (equal new-value org-agenda-sticky)
2131 (and (called-interactively-p 'interactive)
2132 (message "Sticky agenda was already %s"
2133 (if org-agenda-sticky "enabled" "disabled")))
2134 (setq org-agenda-sticky new-value)
2135 (org-agenda-kill-all-agenda-buffers)
2136 (and (called-interactively-p 'interactive)
2137 (message "Sticky agenda %s"
2138 (if org-agenda-sticky "enabled" "disabled"))))))
2140 (defvar org-agenda-buffer nil
2141 "Agenda buffer currently being generated.")
2143 (defvar org-agenda-last-prefix-arg nil)
2144 (defvar org-agenda-this-buffer-name nil)
2145 (defvar org-agenda-doing-sticky-redo nil)
2146 (defvar org-agenda-this-buffer-is-sticky nil)
2147 (defvar org-agenda-last-indirect-buffer nil
2148 "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
2150 (defconst org-agenda-local-vars
2151 '(org-agenda-this-buffer-name
2152 org-agenda-undo-list
2153 org-agenda-pending-undo-list
2154 org-agenda-follow-mode
2155 org-agenda-entry-text-mode
2156 org-agenda-clockreport-mode
2157 org-agenda-show-log
2158 org-agenda-redo-command
2159 org-agenda-query-string
2160 org-agenda-type
2161 org-agenda-bulk-marked-entries
2162 org-agenda-undo-has-started-in
2163 org-agenda-info
2164 org-agenda-pre-window-conf
2165 org-agenda-columns-active
2166 org-agenda-tag-filter
2167 org-agenda-category-filter
2168 org-agenda-top-headline-filter
2169 org-agenda-regexp-filter
2170 org-agenda-effort-filter
2171 org-agenda-markers
2172 org-agenda-last-search-view-search-was-boolean
2173 org-agenda-last-indirect-buffer
2174 org-agenda-filtered-by-category
2175 org-agenda-filter-form
2176 org-agenda-cycle-counter
2177 org-agenda-last-prefix-arg)
2178 "Variables that must be local in agenda buffers to allow multiple buffers.")
2180 (defun org-agenda-mode ()
2181 "Mode for time-sorted view on action items in Org files.
2183 The following commands are available:
2185 \\{org-agenda-mode-map}"
2186 (interactive)
2187 (cond (org-agenda-doing-sticky-redo
2188 ;; Refreshing sticky agenda-buffer
2190 ;; Preserve the value of `org-agenda-local-vars' variables,
2191 ;; while letting `kill-all-local-variables' kill the rest
2192 (let ((save (buffer-local-variables)))
2193 (kill-all-local-variables)
2194 (mapc #'make-local-variable org-agenda-local-vars)
2195 (dolist (elem save)
2196 (pcase elem
2197 (`(,var . ,val) ;ignore unbound variables
2198 (when (and val (memq var org-agenda-local-vars))
2199 (set var val))))))
2200 (setq-local org-agenda-this-buffer-is-sticky t))
2201 (org-agenda-sticky
2202 ;; Creating a sticky Agenda buffer for the first time
2203 (kill-all-local-variables)
2204 (mapc 'make-local-variable org-agenda-local-vars)
2205 (setq-local org-agenda-this-buffer-is-sticky t))
2207 ;; Creating a non-sticky agenda buffer
2208 (kill-all-local-variables)
2209 (setq-local org-agenda-this-buffer-is-sticky nil)))
2210 (setq org-agenda-undo-list nil
2211 org-agenda-pending-undo-list nil
2212 org-agenda-bulk-marked-entries nil)
2213 (setq major-mode 'org-agenda-mode)
2214 ;; Keep global-font-lock-mode from turning on font-lock-mode
2215 (setq-local font-lock-global-modes (list 'not major-mode))
2216 (setq mode-name "Org-Agenda")
2217 (setq indent-tabs-mode nil)
2218 (use-local-map org-agenda-mode-map)
2219 (easy-menu-add org-agenda-menu)
2220 (if org-startup-truncated (setq truncate-lines t))
2221 (setq-local line-move-visual nil)
2222 (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
2223 (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
2224 ;; Make sure properties are removed when copying text
2225 (add-hook 'filter-buffer-substring-functions
2226 (lambda (fun start end delete)
2227 (substring-no-properties (funcall fun start end delete)))
2228 nil t)
2229 (unless org-agenda-keep-modes
2230 (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
2231 org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
2232 org-agenda-show-log org-agenda-start-with-log-mode
2233 org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
2234 (add-to-invisibility-spec '(org-filtered))
2235 (add-to-invisibility-spec '(org-link))
2236 (easy-menu-change
2237 '("Agenda") "Agenda Files"
2238 (append
2239 (list
2240 (vector
2241 (if (get 'org-agenda-files 'org-restrict)
2242 "Restricted to single file"
2243 "Edit File List")
2244 '(org-edit-agenda-file-list)
2245 (not (get 'org-agenda-files 'org-restrict)))
2246 "--")
2247 (mapcar 'org-file-menu-entry (org-agenda-files))))
2248 (org-agenda-set-mode-name)
2249 (apply
2250 (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
2251 (list 'org-agenda-mode-hook)))
2253 (substitute-key-definition 'undo 'org-agenda-undo
2254 org-agenda-mode-map global-map)
2255 (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
2256 (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
2257 (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
2258 (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
2259 (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
2260 (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
2261 (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
2262 (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
2263 (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
2264 (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
2265 (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
2266 (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
2267 (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
2268 (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
2269 (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
2270 (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
2271 (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
2272 (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
2273 (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
2274 (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
2275 (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
2276 (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
2277 (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
2278 (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
2279 (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
2280 (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
2281 (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
2282 (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
2283 (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
2284 (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
2285 (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
2286 (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
2287 (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
2288 (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
2289 (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
2290 (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
2291 (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
2292 (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
2293 (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
2294 (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
2295 (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
2296 (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
2297 (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
2298 (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
2299 (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
2300 (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
2301 (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
2302 (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
2303 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
2304 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
2306 (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
2307 (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
2308 (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
2309 (let ((l '(1 2 3 4 5 6 7 8 9 0)))
2310 (while l (org-defkey org-agenda-mode-map
2311 (int-to-string (pop l)) 'digit-argument)))
2313 (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
2314 (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
2315 (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
2316 (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
2317 (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
2318 (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
2319 (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
2320 (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
2321 (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
2322 (org-defkey org-agenda-mode-map "g" 'org-agenda-redo-all)
2323 (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
2324 (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
2325 (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
2326 'org-clock-modify-effort-estimate)
2327 (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
2328 (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
2329 (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
2330 (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
2331 (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
2332 (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
2333 (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
2334 (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
2335 (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
2336 (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
2337 (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
2338 (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
2339 (substitute-key-definition 'next-line 'org-agenda-next-line
2340 org-agenda-mode-map global-map)
2341 (substitute-key-definition 'previous-line 'org-agenda-previous-line
2342 org-agenda-mode-map global-map)
2343 (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
2344 (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
2345 (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
2346 (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
2347 (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
2348 (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
2349 (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
2350 (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
2351 (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
2352 (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
2353 (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
2354 (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
2355 (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
2356 (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
2357 (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
2358 (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
2359 (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
2360 (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
2361 (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
2362 (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
2363 (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
2364 (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
2365 (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
2366 (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
2367 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
2368 (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
2369 (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
2370 (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
2371 (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
2372 (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
2373 (org-defkey org-agenda-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock-from-agenda)
2375 (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
2376 (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
2377 (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
2378 (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
2379 (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
2380 (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
2381 (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
2382 (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
2383 (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
2384 (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
2385 (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
2386 (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
2387 (org-defkey org-agenda-mode-map "\C-c\C-x_" 'org-timer-stop)
2388 (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
2389 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
2390 (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
2392 (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
2393 (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
2395 (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
2396 (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
2398 (when org-agenda-mouse-1-follows-link
2399 (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
2400 (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
2401 '("Agenda"
2402 ("Agenda Files")
2403 "--"
2404 ("Agenda Dates"
2405 ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
2406 ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
2407 ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
2408 ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
2409 "--"
2410 ("View"
2411 ["Day View" org-agenda-day-view
2412 :active (org-agenda-check-type nil 'agenda)
2413 :style radio :selected (eq org-agenda-current-span 'day)
2414 :keys "v d (or just d)"]
2415 ["Week View" org-agenda-week-view
2416 :active (org-agenda-check-type nil 'agenda)
2417 :style radio :selected (eq org-agenda-current-span 'week)
2418 :keys "v w"]
2419 ["Fortnight View" org-agenda-fortnight-view
2420 :active (org-agenda-check-type nil 'agenda)
2421 :style radio :selected (eq org-agenda-current-span 'fortnight)
2422 :keys "v t"]
2423 ["Month View" org-agenda-month-view
2424 :active (org-agenda-check-type nil 'agenda)
2425 :style radio :selected (eq org-agenda-current-span 'month)
2426 :keys "v m"]
2427 ["Year View" org-agenda-year-view
2428 :active (org-agenda-check-type nil 'agenda)
2429 :style radio :selected (eq org-agenda-current-span 'year)
2430 :keys "v y"]
2431 "--"
2432 ["Include Diary" org-agenda-toggle-diary
2433 :style toggle :selected org-agenda-include-diary
2434 :active (org-agenda-check-type nil 'agenda)]
2435 ["Include Deadlines" org-agenda-toggle-deadlines
2436 :style toggle :selected org-agenda-include-deadlines
2437 :active (org-agenda-check-type nil 'agenda)]
2438 ["Use Time Grid" org-agenda-toggle-time-grid
2439 :style toggle :selected org-agenda-use-time-grid
2440 :active (org-agenda-check-type nil 'agenda)]
2441 "--"
2442 ["Show clock report" org-agenda-clockreport-mode
2443 :style toggle :selected org-agenda-clockreport-mode
2444 :active (org-agenda-check-type nil 'agenda)]
2445 ["Show some entry text" org-agenda-entry-text-mode
2446 :style toggle :selected org-agenda-entry-text-mode
2447 :active t]
2448 "--"
2449 ["Show Logbook entries" org-agenda-log-mode
2450 :style toggle :selected org-agenda-show-log
2451 :active (org-agenda-check-type nil 'agenda)
2452 :keys "v l (or just l)"]
2453 ["Include archived trees" org-agenda-archives-mode
2454 :style toggle :selected org-agenda-archives-mode :active t
2455 :keys "v a"]
2456 ["Include archive files" (org-agenda-archives-mode t)
2457 :style toggle :selected (eq org-agenda-archives-mode t) :active t
2458 :keys "v A"]
2459 "--"
2460 ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
2461 ["Write view to file" org-agenda-write t]
2462 ["Rebuild buffer" org-agenda-redo t]
2463 ["Save all Org buffers" org-save-all-org-buffers t]
2464 "--"
2465 ["Show original entry" org-agenda-show t]
2466 ["Go To (other window)" org-agenda-goto t]
2467 ["Go To (this window)" org-agenda-switch-to t]
2468 ["Capture with cursor date" org-agenda-capture t]
2469 ["Follow Mode" org-agenda-follow-mode
2470 :style toggle :selected org-agenda-follow-mode :active t]
2471 ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
2472 "--"
2473 ("TODO"
2474 ["Cycle TODO" org-agenda-todo t]
2475 ["Next TODO set" org-agenda-todo-nextset t]
2476 ["Previous TODO set" org-agenda-todo-previousset t]
2477 ["Add note" org-agenda-add-note t])
2478 ("Archive/Refile/Delete"
2479 ["Archive default" org-agenda-archive-default t]
2480 ["Archive default" org-agenda-archive-default-with-confirmation t]
2481 ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
2482 ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
2483 ["Archive subtree" org-agenda-archive t]
2484 "--"
2485 ["Refile" org-agenda-refile t]
2486 "--"
2487 ["Delete subtree" org-agenda-kill t])
2488 ("Bulk action"
2489 ["Mark entry" org-agenda-bulk-mark t]
2490 ["Mark all" org-agenda-bulk-mark-all t]
2491 ["Unmark entry" org-agenda-bulk-unmark t]
2492 ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
2493 ["Toggle mark" org-agenda-bulk-toggle t]
2494 ["Toggle all" org-agenda-bulk-toggle-all t]
2495 ["Mark regexp" org-agenda-bulk-mark-regexp t])
2496 ["Act on all marked" org-agenda-bulk-action t]
2497 "--"
2498 ("Tags and Properties"
2499 ["Show all Tags" org-agenda-show-tags t]
2500 ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
2501 ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
2502 "--"
2503 ["Column View" org-columns t])
2504 ("Deadline/Schedule"
2505 ["Schedule" org-agenda-schedule t]
2506 ["Set Deadline" org-agenda-deadline t]
2507 "--"
2508 ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
2509 ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
2510 ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
2511 ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
2512 ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
2513 ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
2514 ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
2515 ("Clock and Effort"
2516 ["Clock in" org-agenda-clock-in t]
2517 ["Clock out" org-agenda-clock-out t]
2518 ["Clock cancel" org-agenda-clock-cancel t]
2519 ["Goto running clock" org-clock-goto t]
2520 "--"
2521 ["Set Effort" org-agenda-set-effort t]
2522 ["Change clocked effort" org-clock-modify-effort-estimate
2523 (org-clock-is-active)])
2524 ("Priority"
2525 ["Set Priority" org-agenda-priority t]
2526 ["Increase Priority" org-agenda-priority-up t]
2527 ["Decrease Priority" org-agenda-priority-down t]
2528 ["Show Priority" org-show-priority t])
2529 ("Calendar/Diary"
2530 ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
2531 ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
2532 ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
2533 ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
2534 ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
2535 ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
2536 "--"
2537 ["Create iCalendar File" org-icalendar-combine-agenda-files t])
2538 "--"
2539 ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
2540 "--"
2541 ("MobileOrg"
2542 ["Push Files and Views" org-mobile-push t]
2543 ["Get Captured and Flagged" org-mobile-pull t]
2544 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
2545 ["Show note / unflag" org-agenda-show-the-flagging-note t]
2546 "--"
2547 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
2548 "--"
2549 ["Quit" org-agenda-quit t]
2550 ["Exit and Release Buffers" org-agenda-exit t]
2553 ;;; Agenda undo
2555 (defvar org-agenda-allow-remote-undo t
2556 "Non-nil means allow remote undo from the agenda buffer.")
2557 (defvar org-agenda-undo-has-started-in nil
2558 "Buffers that have already seen `undo-start' in the current undo sequence.")
2560 (defun org-agenda-undo ()
2561 "Undo a remote editing step in the agenda.
2562 This undoes changes both in the agenda buffer and in the remote buffer
2563 that have been changed along."
2564 (interactive)
2565 (or org-agenda-allow-remote-undo
2566 (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
2567 (if (not (eq this-command last-command))
2568 (setq org-agenda-undo-has-started-in nil
2569 org-agenda-pending-undo-list org-agenda-undo-list))
2570 (if (not org-agenda-pending-undo-list)
2571 (user-error "No further undo information"))
2572 (let* ((entry (pop org-agenda-pending-undo-list))
2573 buf line cmd rembuf)
2574 (setq cmd (pop entry) line (pop entry))
2575 (setq rembuf (nth 2 entry))
2576 (org-with-remote-undo rembuf
2577 (while (bufferp (setq buf (pop entry)))
2578 (if (pop entry)
2579 (with-current-buffer buf
2580 (let ((last-undo-buffer buf)
2581 (inhibit-read-only t))
2582 (unless (memq buf org-agenda-undo-has-started-in)
2583 (push buf org-agenda-undo-has-started-in)
2584 (make-local-variable 'pending-undo-list)
2585 (undo-start))
2586 (while (and pending-undo-list
2587 (listp pending-undo-list)
2588 (not (car pending-undo-list)))
2589 (pop pending-undo-list))
2590 (undo-more 1))))))
2591 (org-goto-line line)
2592 (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
2594 (defun org-verify-change-for-undo (l1 l2)
2595 "Verify that a real change occurred between the undo lists L1 and L2."
2596 (while (and l1 (listp l1) (null (car l1))) (pop l1))
2597 (while (and l2 (listp l2) (null (car l2))) (pop l2))
2598 (not (eq l1 l2)))
2600 ;;; Agenda dispatch
2602 (defvar org-agenda-restrict-begin (make-marker))
2603 (defvar org-agenda-restrict-end (make-marker))
2604 (defvar org-agenda-last-dispatch-buffer nil)
2605 (defvar org-agenda-overriding-restriction nil)
2607 (defcustom org-agenda-custom-commands-contexts nil
2608 "Alist of custom agenda keys and contextual rules.
2610 For example, if you have a custom agenda command \"p\" and you
2611 want this command to be accessible only from plain text files,
2612 use this:
2614 \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
2616 Here are the available contexts definitions:
2618 in-file: command displayed only in matching files
2619 in-mode: command displayed only in matching modes
2620 not-in-file: command not displayed in matching files
2621 not-in-mode: command not displayed in matching modes
2622 in-buffer: command displayed only in matching buffers
2623 not-in-buffer: command not displayed in matching buffers
2624 [function]: a custom function taking no argument
2626 If you define several checks, the agenda command will be
2627 accessible if there is at least one valid check.
2629 You can also bind a key to another agenda custom command
2630 depending on contextual rules.
2632 \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
2634 Here it means: in .txt files, use \"p\" as the key for the
2635 agenda command otherwise associated with \"q\". (The command
2636 originally associated with \"q\" is not displayed to avoid
2637 duplicates.)"
2638 :version "24.3"
2639 :group 'org-agenda-custom-commands
2640 :type '(repeat (list :tag "Rule"
2641 (string :tag " Agenda key")
2642 (string :tag "Replace by command")
2643 (repeat :tag "Available when"
2644 (choice
2645 (cons :tag "Condition"
2646 (choice
2647 (const :tag "In file" in-file)
2648 (const :tag "Not in file" not-in-file)
2649 (const :tag "In buffer" in-buffer)
2650 (const :tag "Not in buffer" not-in-buffer)
2651 (const :tag "In mode" in-mode)
2652 (const :tag "Not in mode" not-in-mode))
2653 (regexp))
2654 (function :tag "Custom function"))))))
2656 (defcustom org-agenda-max-entries nil
2657 "Maximum number of entries to display in an agenda.
2658 This can be nil (no limit) or an integer or an alist of agenda
2659 types with an associated number of entries to display in this
2660 type."
2661 :version "24.4"
2662 :package-version '(Org . "8.0")
2663 :group 'org-agenda-custom-commands
2664 :type '(choice (symbol :tag "No limit" nil)
2665 (integer :tag "Max number of entries")
2666 (repeat
2667 (cons (choice :tag "Agenda type"
2668 (const agenda)
2669 (const todo)
2670 (const tags)
2671 (const search))
2672 (integer :tag "Max number of entries")))))
2674 (defcustom org-agenda-max-todos nil
2675 "Maximum number of TODOs to display in an agenda.
2676 This can be nil (no limit) or an integer or an alist of agenda
2677 types with an associated number of entries to display in this
2678 type."
2679 :version "24.4"
2680 :package-version '(Org . "8.0")
2681 :group 'org-agenda-custom-commands
2682 :type '(choice (symbol :tag "No limit" nil)
2683 (integer :tag "Max number of TODOs")
2684 (repeat
2685 (cons (choice :tag "Agenda type"
2686 (const agenda)
2687 (const todo)
2688 (const tags)
2689 (const search))
2690 (integer :tag "Max number of TODOs")))))
2692 (defcustom org-agenda-max-tags nil
2693 "Maximum number of tagged entries to display in an agenda.
2694 This can be nil (no limit) or an integer or an alist of agenda
2695 types with an associated number of entries to display in this
2696 type."
2697 :version "24.4"
2698 :package-version '(Org . "8.0")
2699 :group 'org-agenda-custom-commands
2700 :type '(choice (symbol :tag "No limit" nil)
2701 (integer :tag "Max number of tagged entries")
2702 (repeat
2703 (cons (choice :tag "Agenda type"
2704 (const agenda)
2705 (const todo)
2706 (const tags)
2707 (const search))
2708 (integer :tag "Max number of tagged entries")))))
2710 (defcustom org-agenda-max-effort nil
2711 "Maximum cumulated effort duration for the agenda.
2712 This can be nil (no limit) or a number of minutes (as an integer)
2713 or an alist of agenda types with an associated number of minutes
2714 to limit entries to in this type."
2715 :version "24.4"
2716 :package-version '(Org . "8.0")
2717 :group 'org-agenda-custom-commands
2718 :type '(choice (symbol :tag "No limit" nil)
2719 (integer :tag "Max number of minutes")
2720 (repeat
2721 (cons (choice :tag "Agenda type"
2722 (const agenda)
2723 (const todo)
2724 (const tags)
2725 (const search))
2726 (integer :tag "Max number of minutes")))))
2728 (defvar org-agenda-keep-restricted-file-list nil)
2729 (defvar org-keys nil)
2730 (defvar org-match nil)
2731 ;;;###autoload
2732 (defun org-agenda (&optional arg org-keys restriction)
2733 "Dispatch agenda commands to collect entries to the agenda buffer.
2734 Prompts for a command to execute. Any prefix arg will be passed
2735 on to the selected command. The default selections are:
2737 a Call `org-agenda-list' to display the agenda for current day or week.
2738 t Call `org-todo-list' to display the global todo list.
2739 T Call `org-todo-list' to display the global todo list, select only
2740 entries with a specific TODO keyword (the user gets a prompt).
2741 m Call `org-tags-view' to display headlines with tags matching
2742 a condition (the user is prompted for the condition).
2743 M Like `m', but select only TODO entries, no ordinary headlines.
2744 e Export views to associated files.
2745 s Search entries for keywords.
2746 S Search entries for keywords, only with TODO keywords.
2747 / Multi occur across all agenda files and also files listed
2748 in `org-agenda-text-search-extra-files'.
2749 < Restrict agenda commands to buffer, subtree, or region.
2750 Press several times to get the desired effect.
2751 > Remove a previous restriction.
2752 # List \"stuck\" projects.
2753 ! Configure what \"stuck\" means.
2754 C Configure custom agenda commands.
2756 More commands can be added by configuring the variable
2757 `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2758 searches can be pre-defined in this way.
2760 If the current buffer is in Org mode and visiting a file, you can also
2761 first press `<' once to indicate that the agenda should be temporarily
2762 \(until the next use of `\\[org-agenda]') restricted to the current file.
2763 Pressing `<' twice means to restrict to the current subtree or region
2764 \(if active)."
2765 (interactive "P")
2766 (catch 'exit
2767 (let* ((prefix-descriptions nil)
2768 (org-agenda-buffer-name org-agenda-buffer-name)
2769 (org-agenda-window-setup (if (equal (buffer-name)
2770 org-agenda-buffer-name)
2771 'current-window
2772 org-agenda-window-setup))
2773 (org-agenda-custom-commands-orig org-agenda-custom-commands)
2774 (org-agenda-custom-commands
2775 ;; normalize different versions
2776 (delq nil
2777 (mapcar
2778 (lambda (x)
2779 (cond ((stringp (cdr x))
2780 (push x prefix-descriptions)
2781 nil)
2782 ((stringp (nth 1 x)) x)
2783 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2784 (t (cons (car x) (cons "" (cdr x))))))
2785 org-agenda-custom-commands)))
2786 (org-agenda-custom-commands
2787 (org-contextualize-keys
2788 org-agenda-custom-commands org-agenda-custom-commands-contexts))
2789 (buf (current-buffer))
2790 (bfn (buffer-file-name (buffer-base-buffer)))
2791 entry key type org-match lprops ans)
2792 ;; Turn off restriction unless there is an overriding one,
2793 (unless org-agenda-overriding-restriction
2794 (unless org-agenda-keep-restricted-file-list
2795 ;; There is a request to keep the file list in place
2796 (put 'org-agenda-files 'org-restrict nil))
2797 (setq org-agenda-restrict nil)
2798 (move-marker org-agenda-restrict-begin nil)
2799 (move-marker org-agenda-restrict-end nil))
2800 ;; Delete old local properties
2801 (put 'org-agenda-redo-command 'org-lprops nil)
2802 ;; Delete previously set last-arguments
2803 (put 'org-agenda-redo-command 'last-args nil)
2804 ;; Remember where this call originated
2805 (setq org-agenda-last-dispatch-buffer (current-buffer))
2806 (unless org-keys
2807 (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
2808 org-keys (car ans)
2809 restriction (cdr ans)))
2810 ;; If we have sticky agenda buffers, set a name for the buffer,
2811 ;; depending on the invoking keys. The user may still set this
2812 ;; as a command option, which will overwrite what we do here.
2813 (if org-agenda-sticky
2814 (setq org-agenda-buffer-name
2815 (format "*Org Agenda(%s)*" org-keys)))
2816 ;; Establish the restriction, if any
2817 (when (and (not org-agenda-overriding-restriction) restriction)
2818 (put 'org-agenda-files 'org-restrict (list bfn))
2819 (cond
2820 ((eq restriction 'region)
2821 (setq org-agenda-restrict (current-buffer))
2822 (move-marker org-agenda-restrict-begin (region-beginning))
2823 (move-marker org-agenda-restrict-end (region-end)))
2824 ((eq restriction 'subtree)
2825 (save-excursion
2826 (setq org-agenda-restrict (current-buffer))
2827 (org-back-to-heading t)
2828 (move-marker org-agenda-restrict-begin (point))
2829 (move-marker org-agenda-restrict-end
2830 (progn (org-end-of-subtree t)))))))
2832 ;; For example the todo list should not need it (but does...)
2833 (cond
2834 ((setq entry (assoc org-keys org-agenda-custom-commands))
2835 (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
2836 (progn
2837 (setq type (nth 2 entry) org-match (eval (nth 3 entry))
2838 lprops (nth 4 entry))
2839 (if org-agenda-sticky
2840 (setq org-agenda-buffer-name
2841 (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
2842 (format "*Org Agenda(%s)*" org-keys))))
2843 (put 'org-agenda-redo-command 'org-lprops lprops)
2844 (cond
2845 ((eq type 'agenda)
2846 (org-let lprops '(org-agenda-list current-prefix-arg)))
2847 ((eq type 'agenda*)
2848 (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
2849 ((eq type 'alltodo)
2850 (org-let lprops '(org-todo-list current-prefix-arg)))
2851 ((eq type 'search)
2852 (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
2853 ((eq type 'stuck)
2854 (org-let lprops '(org-agenda-list-stuck-projects
2855 current-prefix-arg)))
2856 ((eq type 'tags)
2857 (org-let lprops '(org-tags-view current-prefix-arg org-match)))
2858 ((eq type 'tags-todo)
2859 (org-let lprops '(org-tags-view '(4) org-match)))
2860 ((eq type 'todo)
2861 (org-let lprops '(org-todo-list org-match)))
2862 ((eq type 'tags-tree)
2863 (org-check-for-org-mode)
2864 (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
2865 ((eq type 'todo-tree)
2866 (org-check-for-org-mode)
2867 (org-let lprops
2868 '(org-occur (concat "^" org-outline-regexp "[ \t]*"
2869 (regexp-quote org-match) "\\>"))))
2870 ((eq type 'occur-tree)
2871 (org-check-for-org-mode)
2872 (org-let lprops '(org-occur org-match)))
2873 ((functionp type)
2874 (org-let lprops '(funcall type org-match)))
2875 ((fboundp type)
2876 (org-let lprops '(funcall type org-match)))
2877 (t (user-error "Invalid custom agenda command type %s" type))))
2878 (org-agenda-run-series (nth 1 entry) (cddr entry))))
2879 ((equal org-keys "C")
2880 (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
2881 (customize-variable 'org-agenda-custom-commands))
2882 ((equal org-keys "a") (call-interactively 'org-agenda-list))
2883 ((equal org-keys "s") (call-interactively 'org-search-view))
2884 ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
2885 ((equal org-keys "t") (call-interactively 'org-todo-list))
2886 ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
2887 ((equal org-keys "m") (call-interactively 'org-tags-view))
2888 ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
2889 ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
2890 ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
2891 (add-hook
2892 'post-command-hook
2893 (lambda ()
2894 (unless (current-message)
2895 (let* ((m (org-agenda-get-any-marker))
2896 (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
2897 (when note
2898 (message (concat
2899 "FLAGGING-NOTE ([?] for more info): "
2900 (org-add-props
2901 (replace-regexp-in-string
2902 "\\\\n" "//"
2903 (copy-sequence note))
2904 nil 'face 'org-warning)))))))
2905 t t))
2906 ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
2907 ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
2908 ((equal org-keys "!") (customize-variable 'org-stuck-projects))
2909 (t (user-error "Invalid agenda key"))))))
2911 (defvar org-agenda-multi)
2913 (defun org-agenda-append-agenda ()
2914 "Append another agenda view to the current one.
2915 This function allows interactive building of block agendas.
2916 Agenda views are separated by `org-agenda-block-separator'."
2917 (interactive)
2918 (unless (derived-mode-p 'org-agenda-mode)
2919 (user-error "Can only append from within agenda buffer"))
2920 (let ((org-agenda-multi t))
2921 (org-agenda)
2922 (widen)
2923 (org-agenda-finalize)
2924 (setq buffer-read-only t)
2925 (org-agenda-fit-window-to-buffer)))
2927 (defun org-agenda-normalize-custom-commands (cmds)
2928 "Normalize custom commands CMDS."
2929 (delq nil
2930 (mapcar
2931 (lambda (x)
2932 (cond ((stringp (cdr x)) nil)
2933 ((stringp (nth 1 x)) x)
2934 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
2935 (t (cons (car x) (cons "" (cdr x))))))
2936 cmds)))
2938 (defun org-agenda-get-restriction-and-command (prefix-descriptions)
2939 "The user interface for selecting an agenda command."
2940 (catch 'exit
2941 (let* ((bfn (buffer-file-name (buffer-base-buffer)))
2942 (restrict-ok (and bfn (derived-mode-p 'org-mode)))
2943 (region-p (org-region-active-p))
2944 (custom org-agenda-custom-commands)
2945 (selstring "")
2946 restriction second-time
2947 c entry key type match prefixes rmheader header-end custom1 desc
2948 line lines left right n n1)
2949 (save-window-excursion
2950 (delete-other-windows)
2951 (org-switch-to-buffer-other-window " *Agenda Commands*")
2952 (erase-buffer)
2953 (insert (eval-when-compile
2954 (let ((header
2955 "Press key for an agenda command:
2956 -------------------------------- < Buffer, subtree/region restriction
2957 a Agenda for current week or day > Remove restriction
2958 t List of all TODO entries e Export agenda views
2959 m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
2960 s Search for keywords M Like m, but only TODO entries
2961 / Multi-occur S Like s, but only TODO entries
2962 ? Find :FLAGGED: entries C Configure custom agenda commands
2963 * Toggle sticky agenda views # List stuck projects (!=configure)
2965 (start 0))
2966 (while (string-match
2967 "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
2968 header start)
2969 (setq start (match-end 0))
2970 (add-text-properties (match-beginning 2) (match-end 2)
2971 '(face bold) header))
2972 header)))
2973 (setq header-end (point-marker))
2974 (while t
2975 (setq custom1 custom)
2976 (when (eq rmheader t)
2977 (org-goto-line 1)
2978 (re-search-forward ":" nil t)
2979 (delete-region (match-end 0) (point-at-eol))
2980 (forward-char 1)
2981 (looking-at "-+")
2982 (delete-region (match-end 0) (point-at-eol))
2983 (move-marker header-end (match-end 0)))
2984 (goto-char header-end)
2985 (delete-region (point) (point-max))
2987 ;; Produce all the lines that describe custom commands and prefixes
2988 (setq lines nil)
2989 (while (setq entry (pop custom1))
2990 (setq key (car entry) desc (nth 1 entry)
2991 type (nth 2 entry)
2992 match (nth 3 entry))
2993 (if (> (length key) 1)
2994 (cl-pushnew (string-to-char key) prefixes :test #'equal)
2995 (setq line
2996 (format
2997 "%-4s%-14s"
2998 (org-add-props (copy-sequence key)
2999 '(face bold))
3000 (cond
3001 ((string-match "\\S-" desc) desc)
3002 ((eq type 'agenda) "Agenda for current week or day")
3003 ((eq type 'agenda*) "Appointments for current week or day")
3004 ((eq type 'alltodo) "List of all TODO entries")
3005 ((eq type 'search) "Word search")
3006 ((eq type 'stuck) "List of stuck projects")
3007 ((eq type 'todo) "TODO keyword")
3008 ((eq type 'tags) "Tags query")
3009 ((eq type 'tags-todo) "Tags (TODO)")
3010 ((eq type 'tags-tree) "Tags tree")
3011 ((eq type 'todo-tree) "TODO kwd tree")
3012 ((eq type 'occur-tree) "Occur tree")
3013 ((functionp type) (if (symbolp type)
3014 (symbol-name type)
3015 "Lambda expression"))
3016 (t "???"))))
3017 (if org-agenda-menu-show-matcher
3018 (setq line
3019 (concat line ": "
3020 (cond
3021 ((stringp match)
3022 (setq match (copy-sequence match))
3023 (org-add-props match nil 'face 'org-warning))
3024 ((listp type)
3025 (format "set of %d commands" (length type))))))
3026 (if (org-string-nw-p match)
3027 (add-text-properties
3028 0 (length line) (list 'help-echo
3029 (concat "Matcher: " match)) line)))
3030 (push line lines)))
3031 (setq lines (nreverse lines))
3032 (when prefixes
3033 (mapc (lambda (x)
3034 (push
3035 (format "%s %s"
3036 (org-add-props (char-to-string x)
3037 nil 'face 'bold)
3038 (or (cdr (assoc (concat selstring
3039 (char-to-string x))
3040 prefix-descriptions))
3041 "Prefix key"))
3042 lines))
3043 prefixes))
3045 ;; Check if we should display in two columns
3046 (if org-agenda-menu-two-columns
3047 (progn
3048 (setq n (length lines)
3049 n1 (+ (/ n 2) (mod n 2))
3050 right (nthcdr n1 lines)
3051 left (copy-sequence lines))
3052 (setcdr (nthcdr (1- n1) left) nil))
3053 (setq left lines right nil))
3054 (while left
3055 (insert "\n" (pop left))
3056 (when right
3057 (if (< (current-column) 40)
3058 (move-to-column 40 t)
3059 (insert " "))
3060 (insert (pop right))))
3062 ;; Make the window the right size
3063 (goto-char (point-min))
3064 (if second-time
3065 (if (not (pos-visible-in-window-p (point-max)))
3066 (org-fit-window-to-buffer))
3067 (setq second-time t)
3068 (org-fit-window-to-buffer))
3070 ;; Ask for selection
3071 (message "Press key for agenda command%s:"
3072 (if (or restrict-ok org-agenda-overriding-restriction)
3073 (if org-agenda-overriding-restriction
3074 " (restriction lock active)"
3075 (if restriction
3076 (format " (restricted to %s)" restriction)
3077 " (unrestricted)"))
3078 ""))
3079 (setq c (read-char-exclusive))
3080 (message "")
3081 (cond
3082 ((assoc (char-to-string c) custom)
3083 (setq selstring (concat selstring (char-to-string c)))
3084 (throw 'exit (cons selstring restriction)))
3085 ((memq c prefixes)
3086 (setq selstring (concat selstring (char-to-string c))
3087 prefixes nil
3088 rmheader (or rmheader t)
3089 custom (delq nil (mapcar
3090 (lambda (x)
3091 (if (or (= (length (car x)) 1)
3092 (/= (string-to-char (car x)) c))
3094 (cons (substring (car x) 1) (cdr x))))
3095 custom))))
3096 ((eq c ?*)
3097 (call-interactively 'org-toggle-sticky-agenda)
3098 (sit-for 2))
3099 ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
3100 (message "Restriction is only possible in Org buffers")
3101 (ding) (sit-for 1))
3102 ((eq c ?1)
3103 (org-agenda-remove-restriction-lock 'noupdate)
3104 (setq restriction 'buffer))
3105 ((eq c ?0)
3106 (org-agenda-remove-restriction-lock 'noupdate)
3107 (setq restriction (if region-p 'region 'subtree)))
3108 ((eq c ?<)
3109 (org-agenda-remove-restriction-lock 'noupdate)
3110 (setq restriction
3111 (cond
3112 ((eq restriction 'buffer)
3113 (if region-p 'region 'subtree))
3114 ((memq restriction '(subtree region))
3115 nil)
3116 (t 'buffer))))
3117 ((eq c ?>)
3118 (org-agenda-remove-restriction-lock 'noupdate)
3119 (setq restriction nil))
3120 ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
3121 (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
3122 ((and (> (length selstring) 0) (eq c ?\d))
3123 (delete-window)
3124 (org-agenda-get-restriction-and-command prefix-descriptions))
3126 ((equal c ?q) (error "Abort"))
3127 (t (user-error "Invalid key %c" c))))))))
3129 (defun org-agenda-fit-window-to-buffer ()
3130 "Fit the window to the buffer size."
3131 (and (memq org-agenda-window-setup '(reorganize-frame))
3132 (fboundp 'fit-window-to-buffer)
3133 (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
3134 (= (car org-agenda-window-frame-fractions) 1.0))
3135 (delete-other-windows)
3136 (org-fit-window-to-buffer
3138 (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
3139 (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
3141 (defvar org-cmd nil)
3142 (defvar org-agenda-overriding-cmd nil)
3143 (defvar org-agenda-overriding-arguments nil)
3144 (defvar org-agenda-overriding-cmd-arguments nil)
3145 (defun org-agenda-run-series (name series)
3146 "Run agenda NAME as a SERIES of agenda commands."
3147 (org-let (nth 1 series) '(org-agenda-prepare name))
3148 ;; We need to reset agenda markers here, because when constructing a
3149 ;; block agenda, the individual blocks do not do that.
3150 (org-agenda-reset-markers)
3151 (let* ((org-agenda-multi t)
3152 (redo (list 'org-agenda-run-series name (list 'quote series)))
3153 (cmds (car series))
3154 (gprops (nth 1 series))
3155 match ;; The byte compiler incorrectly complains about this. Keep it!
3156 org-cmd type lprops)
3157 (while (setq org-cmd (pop cmds))
3158 (setq type (car org-cmd))
3159 (setq match (eval (nth 1 org-cmd)))
3160 (setq lprops (nth 2 org-cmd))
3161 (let ((org-agenda-overriding-arguments
3162 (if (eq org-agenda-overriding-cmd org-cmd)
3163 (or org-agenda-overriding-arguments
3164 org-agenda-overriding-cmd-arguments))))
3165 (cond
3166 ((eq type 'agenda)
3167 (org-let2 gprops lprops
3168 '(call-interactively 'org-agenda-list)))
3169 ((eq type 'agenda*)
3170 (org-let2 gprops lprops
3171 '(funcall 'org-agenda-list nil nil t)))
3172 ((eq type 'alltodo)
3173 (org-let2 gprops lprops
3174 '(call-interactively 'org-todo-list)))
3175 ((eq type 'search)
3176 (org-let2 gprops lprops
3177 '(org-search-view current-prefix-arg match nil)))
3178 ((eq type 'stuck)
3179 (org-let2 gprops lprops
3180 '(call-interactively 'org-agenda-list-stuck-projects)))
3181 ((eq type 'tags)
3182 (org-let2 gprops lprops
3183 '(org-tags-view current-prefix-arg match)))
3184 ((eq type 'tags-todo)
3185 (org-let2 gprops lprops
3186 '(org-tags-view '(4) match)))
3187 ((eq type 'todo)
3188 (org-let2 gprops lprops
3189 '(org-todo-list match)))
3190 ((fboundp type)
3191 (org-let2 gprops lprops
3192 '(funcall type match)))
3193 (t (error "Invalid type in command series")))))
3194 (widen)
3195 (let ((inhibit-read-only t))
3196 (add-text-properties (point-min) (point-max)
3197 `(org-series t org-series-redo-cmd ,redo)))
3198 (setq org-agenda-redo-command redo)
3199 (goto-char (point-min)))
3200 (org-agenda-fit-window-to-buffer)
3201 (org-let (nth 1 series) '(org-agenda-finalize)))
3203 ;;;###autoload
3204 (defmacro org-batch-agenda (cmd-key &rest parameters)
3205 "Run an agenda command in batch mode and send the result to STDOUT.
3206 If CMD-KEY is a string of length 1, it is used as a key in
3207 `org-agenda-custom-commands' and triggers this command. If it is a
3208 longer string it is used as a tags/todo match string.
3209 Parameters are alternating variable names and values that will be bound
3210 before running the agenda command."
3211 (org-eval-in-environment (org-make-parameter-alist parameters)
3212 (let (org-agenda-sticky)
3213 (if (> (length cmd-key) 1)
3214 (org-tags-view nil cmd-key)
3215 (org-agenda nil cmd-key))))
3216 (set-buffer org-agenda-buffer-name)
3217 (princ (buffer-string)))
3219 (defvar org-agenda-info nil)
3221 ;;;###autoload
3222 (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
3223 "Run an agenda command in batch mode and send the result to STDOUT.
3224 If CMD-KEY is a string of length 1, it is used as a key in
3225 `org-agenda-custom-commands' and triggers this command. If it is a
3226 longer string it is used as a tags/todo match string.
3227 Parameters are alternating variable names and values that will be bound
3228 before running the agenda command.
3230 The output gives a line for each selected agenda item. Each
3231 item is a list of comma-separated values, like this:
3233 category,head,type,todo,tags,date,time,extra,priority-l,priority-n
3235 category The category of the item
3236 head The headline, without TODO kwd, TAGS and PRIORITY
3237 type The type of the agenda entry, can be
3238 todo selected in TODO match
3239 tagsmatch selected in tags match
3240 diary imported from diary
3241 deadline a deadline on given date
3242 scheduled scheduled on given date
3243 timestamp entry has timestamp on given date
3244 closed entry was closed on given date
3245 upcoming-deadline warning about deadline
3246 past-scheduled forwarded scheduled item
3247 block entry has date block including g. date
3248 todo The todo keyword, if any
3249 tags All tags including inherited ones, separated by colons
3250 date The relevant date, like 2007-2-14
3251 time The time, like 15:00-16:50
3252 extra Sting with extra planning info
3253 priority-l The priority letter if any was given
3254 priority-n The computed numerical priority
3255 agenda-day The day in the agenda where this is listed"
3256 (org-eval-in-environment (append '((org-agenda-remove-tags t))
3257 (org-make-parameter-alist parameters))
3258 (if (> (length cmd-key) 2)
3259 (org-tags-view nil cmd-key)
3260 (org-agenda nil cmd-key)))
3261 (set-buffer org-agenda-buffer-name)
3262 (let* ((lines (org-split-string (buffer-string) "\n"))
3263 line)
3264 (while (setq line (pop lines))
3265 (catch 'next
3266 (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
3267 (setq org-agenda-info
3268 (org-fix-agenda-info (text-properties-at 0 line)))
3269 (princ
3270 (mapconcat 'org-agenda-export-csv-mapper
3271 '(org-category txt type todo tags date time extra
3272 priority-letter priority agenda-day)
3273 ","))
3274 (princ "\n")))))
3276 (defun org-fix-agenda-info (props)
3277 "Make sure all properties on an agenda item have a canonical form.
3278 This ensures the export commands can easily use it."
3279 (let (tmp re)
3280 (when (setq tmp (plist-get props 'tags))
3281 (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
3282 (when (setq tmp (plist-get props 'date))
3283 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3284 (let ((calendar-date-display-form '(year "-" month "-" day)))
3285 '((format "%4d, %9s %2s, %4s" dayname monthname day year))
3287 (setq tmp (calendar-date-string tmp)))
3288 (setq props (plist-put props 'date tmp)))
3289 (when (setq tmp (plist-get props 'day))
3290 (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
3291 (let ((calendar-date-display-form '(year "-" month "-" day)))
3292 (setq tmp (calendar-date-string tmp)))
3293 (setq props (plist-put props 'day tmp))
3294 (setq props (plist-put props 'agenda-day tmp)))
3295 (when (setq tmp (plist-get props 'txt))
3296 (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
3297 (plist-put props 'priority-letter (match-string 1 tmp))
3298 (setq tmp (replace-match "" t t tmp)))
3299 (when (and (setq re (plist-get props 'org-todo-regexp))
3300 (setq re (concat "\\`\\.*" re " ?"))
3301 (let ((case-fold-search nil)) (string-match re tmp)))
3302 (plist-put props 'todo (match-string 1 tmp))
3303 (setq tmp (replace-match "" t t tmp)))
3304 (plist-put props 'txt tmp)))
3305 props)
3307 (defun org-agenda-export-csv-mapper (prop)
3308 (let ((res (plist-get org-agenda-info prop)))
3309 (setq res
3310 (cond
3311 ((not res) "")
3312 ((stringp res) res)
3313 (t (prin1-to-string res))))
3314 (org-trim (replace-regexp-in-string "," ";" res nil t))))
3316 ;;;###autoload
3317 (defun org-store-agenda-views (&rest parameters)
3318 "Store agenda views."
3319 (interactive)
3320 (eval (list 'org-batch-store-agenda-views)))
3322 ;;;###autoload
3323 (defmacro org-batch-store-agenda-views (&rest parameters)
3324 "Run all custom agenda commands that have a file argument."
3325 (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
3326 (pop-up-frames nil)
3327 (dir default-directory)
3328 (pars (org-make-parameter-alist parameters))
3329 cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
3330 (save-window-excursion
3331 (while cmds
3332 (setq cmd (pop cmds)
3333 thiscmdkey (car cmd)
3334 thiscmdcmd (cdr cmd)
3335 match (nth 2 thiscmdcmd)
3336 bufname (if org-agenda-sticky
3337 (or (and (stringp match)
3338 (format "*Org Agenda(%s:%s)*" thiscmdkey match))
3339 (format "*Org Agenda(%s)*" thiscmdkey))
3340 org-agenda-buffer-name)
3341 cmd-or-set (nth 2 cmd)
3342 opts (nth (if (listp cmd-or-set) 3 4) cmd)
3343 files (nth (if (listp cmd-or-set) 4 5) cmd))
3344 (if (stringp files) (setq files (list files)))
3345 (when files
3346 (org-eval-in-environment (append org-agenda-exporter-settings
3347 opts pars)
3348 (org-agenda nil thiscmdkey))
3349 (set-buffer bufname)
3350 (while files
3351 (org-eval-in-environment (append org-agenda-exporter-settings
3352 opts pars)
3353 (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
3354 (and (get-buffer bufname)
3355 (kill-buffer bufname)))))))
3357 (defvar org-agenda-current-span nil
3358 "The current span used in the agenda view.") ; local variable in the agenda buffer
3359 (defun org-agenda-mark-header-line (pos)
3360 "Mark the line at POS as an agenda structure header."
3361 (save-excursion
3362 (goto-char pos)
3363 (put-text-property (point-at-bol) (point-at-eol)
3364 'org-agenda-structural-header t)
3365 (when org-agenda-title-append
3366 (put-text-property (point-at-bol) (point-at-eol)
3367 'org-agenda-title-append org-agenda-title-append))))
3369 (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
3370 (defvar org-agenda-write-buffer-name "Agenda View")
3371 (defun org-agenda-write (file &optional open nosettings agenda-bufname)
3372 "Write the current buffer (an agenda view) as a file.
3374 Depending on the extension of the file name, plain text (.txt),
3375 HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
3376 If the extension is .ics, translate visible agenda into iCalendar
3377 format. If the extension is .org, collect all subtrees
3378 corresponding to the agenda entries and add them in an .org file.
3380 With prefix argument OPEN, open the new file immediately. If
3381 NOSETTINGS is given, do not scope the settings of
3382 `org-agenda-exporter-settings' into the export commands. This is
3383 used when the settings have already been scoped and we do not
3384 wish to overrule other, higher priority settings. If
3385 AGENDA-BUFFER-NAME is provided, use this as the buffer name for
3386 the agenda to write."
3387 (interactive "FWrite agenda to file: \nP")
3388 (if (or (not (file-writable-p file))
3389 (and (file-exists-p file)
3390 (if (called-interactively-p 'any)
3391 (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
3392 (user-error "Cannot write agenda to file %s" file))
3393 (org-let (if nosettings nil org-agenda-exporter-settings)
3394 '(save-excursion
3395 (save-window-excursion
3396 (let ((bs (copy-sequence (buffer-string)))
3397 (extension (file-name-extension file))
3398 (default-directory (file-name-directory file))
3399 beg content)
3400 (with-temp-buffer
3401 (rename-buffer org-agenda-write-buffer-name t)
3402 (set-buffer-modified-p nil)
3403 (insert bs)
3404 (org-agenda-remove-marked-text 'invisible 'org-filtered)
3405 (run-hooks 'org-agenda-before-write-hook)
3406 (cond
3407 ((bound-and-true-p org-mobile-creating-agendas)
3408 (org-mobile-write-agenda-for-mobile file))
3409 ((string= "org" extension)
3410 (let (content p m message-log-max)
3411 (goto-char (point-min))
3412 (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
3413 (goto-char p)
3414 (setq m (get-text-property (point) 'org-hd-marker))
3415 (when m
3416 (push (save-excursion
3417 (set-buffer (marker-buffer m))
3418 (goto-char m)
3419 (org-copy-subtree 1 nil t t)
3420 org-subtree-clip)
3421 content)))
3422 (find-file file)
3423 (erase-buffer)
3424 (dolist (s content) (org-paste-subtree 1 s))
3425 (write-file file)
3426 (kill-buffer (current-buffer))
3427 (message "Org file written to %s" file)))
3428 ((member extension '("html" "htm"))
3429 (or (require 'htmlize nil t)
3430 (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
3431 (set-buffer (htmlize-buffer (current-buffer)))
3432 (when org-agenda-export-html-style
3433 ;; replace <style> section with org-agenda-export-html-style
3434 (goto-char (point-min))
3435 (kill-region (- (search-forward "<style") 6)
3436 (search-forward "</style>"))
3437 (insert org-agenda-export-html-style))
3438 (write-file file)
3439 (kill-buffer (current-buffer))
3440 (message "HTML written to %s" file))
3441 ((string= "ps" extension)
3442 (require 'ps-print)
3443 (ps-print-buffer-with-faces file)
3444 (message "Postscript written to %s" file))
3445 ((string= "pdf" extension)
3446 (require 'ps-print)
3447 (ps-print-buffer-with-faces
3448 (concat (file-name-sans-extension file) ".ps"))
3449 (call-process "ps2pdf" nil nil nil
3450 (expand-file-name
3451 (concat (file-name-sans-extension file) ".ps"))
3452 (expand-file-name file))
3453 (delete-file (concat (file-name-sans-extension file) ".ps"))
3454 (message "PDF written to %s" file))
3455 ((string= "ics" extension)
3456 (require 'ox-icalendar)
3457 (org-icalendar-export-current-agenda (expand-file-name file)))
3459 (let ((bs (buffer-string)))
3460 (find-file file)
3461 (erase-buffer)
3462 (insert bs)
3463 (save-buffer 0)
3464 (kill-buffer (current-buffer))
3465 (message "Plain text written to %s" file))))))))
3466 (set-buffer (or agenda-bufname
3467 (and (called-interactively-p 'any) (buffer-name))
3468 org-agenda-buffer-name)))
3469 (when open (org-open-file file)))
3471 (defun org-agenda-remove-marked-text (property &optional value)
3472 "Delete all text marked with VALUE of PROPERTY.
3473 VALUE defaults to t."
3474 (let (beg)
3475 (setq value (or value t))
3476 (while (setq beg (text-property-any (point-min) (point-max)
3477 property value))
3478 (delete-region
3479 beg (or (next-single-property-change beg property)
3480 (point-max))))))
3482 (defun org-agenda-add-entry-text ()
3483 "Add entry text to agenda lines.
3484 This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
3485 entry text following headings shown in the agenda.
3486 Drawers will be excluded, also the line with scheduling/deadline info."
3487 (when (and (> org-agenda-add-entry-text-maxlines 0)
3488 (not (bound-and-true-p org-mobile-creating-agendas)))
3489 (let (m txt)
3490 (goto-char (point-min))
3491 (while (not (eobp))
3492 (if (not (setq m (org-get-at-bol 'org-hd-marker)))
3493 (beginning-of-line 2)
3494 (setq txt (org-agenda-get-some-entry-text
3495 m org-agenda-add-entry-text-maxlines " > "))
3496 (end-of-line 1)
3497 (if (string-match "\\S-" txt)
3498 (insert "\n" txt)
3499 (or (eobp) (forward-char 1))))))))
3501 (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
3502 &rest keep)
3503 "Extract entry text from MARKER, at most N-LINES lines.
3504 This will ignore drawers etc, just get the text.
3505 If INDENT is given, prefix every line with this string. If KEEP is
3506 given, it is a list of symbols, defining stuff that should not be
3507 removed from the entry content. Currently only `planning' is allowed here."
3508 (let (txt drawer-re kwd-time-re ind)
3509 (save-excursion
3510 (with-current-buffer (marker-buffer marker)
3511 (if (not (derived-mode-p 'org-mode))
3512 (setq txt "")
3513 (org-with-wide-buffer
3514 (goto-char marker)
3515 (end-of-line 1)
3516 (setq txt (buffer-substring
3517 (min (1+ (point)) (point-max))
3518 (progn (outline-next-heading) (point)))
3519 drawer-re org-drawer-regexp
3520 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
3521 ".*\n?"))
3522 (with-temp-buffer
3523 (insert txt)
3524 (when org-agenda-add-entry-text-descriptive-links
3525 (goto-char (point-min))
3526 (while (org-activate-links (point-max))
3527 (add-text-properties (match-beginning 0) (match-end 0)
3528 '(face org-link))))
3529 (goto-char (point-min))
3530 (while (re-search-forward org-bracket-link-regexp (point-max) t)
3531 (set-text-properties (match-beginning 0) (match-end 0)
3532 nil))
3533 (goto-char (point-min))
3534 (while (re-search-forward drawer-re nil t)
3535 (delete-region
3536 (match-beginning 0)
3537 (progn (re-search-forward
3538 "^[ \t]*:END:.*\n?" nil 'move)
3539 (point))))
3540 (unless (member 'planning keep)
3541 (goto-char (point-min))
3542 (while (re-search-forward kwd-time-re nil t)
3543 (replace-match "")))
3544 (goto-char (point-min))
3545 (when org-agenda-entry-text-exclude-regexps
3546 (let ((re-list org-agenda-entry-text-exclude-regexps) re)
3547 (while (setq re (pop re-list))
3548 (goto-char (point-min))
3549 (while (re-search-forward re nil t)
3550 (replace-match "")))))
3551 (goto-char (point-max))
3552 (skip-chars-backward " \t\n")
3553 (if (looking-at "[ \t\n]+\\'") (replace-match ""))
3555 ;; find and remove min common indentation
3556 (goto-char (point-min))
3557 (untabify (point-min) (point-max))
3558 (setq ind (org-get-indentation))
3559 (while (not (eobp))
3560 (unless (looking-at "[ \t]*$")
3561 (setq ind (min ind (org-get-indentation))))
3562 (beginning-of-line 2))
3563 (goto-char (point-min))
3564 (while (not (eobp))
3565 (unless (looking-at "[ \t]*$")
3566 (move-to-column ind)
3567 (delete-region (point-at-bol) (point)))
3568 (beginning-of-line 2))
3570 (run-hooks 'org-agenda-entry-text-cleanup-hook)
3572 (goto-char (point-min))
3573 (when indent
3574 (while (and (not (eobp)) (re-search-forward "^" nil t))
3575 (replace-match indent t t)))
3576 (goto-char (point-min))
3577 (while (looking-at "[ \t]*\n") (replace-match ""))
3578 (goto-char (point-max))
3579 (when (> (org-current-line)
3580 n-lines)
3581 (org-goto-line (1+ n-lines))
3582 (backward-char 1))
3583 (setq txt (buffer-substring (point-min) (point))))))))
3584 txt))
3586 (defun org-check-for-org-mode ()
3587 "Make sure current buffer is in Org mode. Error if not."
3588 (or (derived-mode-p 'org-mode)
3589 (error "Cannot execute Org agenda command on buffer in %s"
3590 major-mode)))
3592 ;;; Agenda prepare and finalize
3594 (defvar org-agenda-multi nil) ; dynamically scoped
3595 (defvar org-agenda-pre-window-conf nil)
3596 (defvar org-agenda-columns-active nil)
3597 (defvar org-agenda-name nil)
3598 (defvar org-agenda-tag-filter nil)
3599 (defvar org-agenda-category-filter nil)
3600 (defvar org-agenda-regexp-filter nil)
3601 (defvar org-agenda-effort-filter nil)
3602 (defvar org-agenda-top-headline-filter nil)
3603 (defvar org-agenda-tag-filter-preset nil
3604 "A preset of the tags filter used for secondary agenda filtering.
3605 This must be a list of strings, each string must be a single tag preceded
3606 by \"+\" or \"-\".
3607 This variable should not be set directly, but agenda custom commands can
3608 bind it in the options section. The preset filter is a global property of
3609 the entire agenda view. In a block agenda, it will not work reliably to
3610 define a filter for one of the individual blocks. You need to set it in
3611 the global options and expect it to be applied to the entire view.")
3613 (defvar org-agenda-category-filter-preset nil
3614 "A preset of the category filter used for secondary agenda filtering.
3615 This must be a list of strings, each string must be a single category
3616 preceded by \"+\" or \"-\".
3617 This variable should not be set directly, but agenda custom commands can
3618 bind it in the options section. The preset filter is a global property of
3619 the entire agenda view. In a block agenda, it will not work reliably to
3620 define a filter for one of the individual blocks. You need to set it in
3621 the global options and expect it to be applied to the entire view.")
3623 (defvar org-agenda-regexp-filter-preset nil
3624 "A preset of the regexp filter used for secondary agenda filtering.
3625 This must be a list of strings, each string must be a single regexp
3626 preceded by \"+\" or \"-\".
3627 This variable should not be set directly, but agenda custom commands can
3628 bind it in the options section. The preset filter is a global property of
3629 the entire agenda view. In a block agenda, it will not work reliably to
3630 define a filter for one of the individual blocks. You need to set it in
3631 the global options and expect it to be applied to the entire view.")
3633 (defvar org-agenda-effort-filter-preset nil
3634 "A preset of the effort condition used for secondary agenda filtering.
3635 This must be a list of strings, each string must be a single regexp
3636 preceded by \"+\" or \"-\".
3637 This variable should not be set directly, but agenda custom commands can
3638 bind it in the options section. The preset filter is a global property of
3639 the entire agenda view. In a block agenda, it will not work reliably to
3640 define a filter for one of the individual blocks. You need to set it in
3641 the global options and expect it to be applied to the entire view.")
3643 (defun org-agenda-use-sticky-p ()
3644 "Return non-nil if an agenda buffer named
3645 `org-agenda-buffer-name' exists and should be shown instead of
3646 generating a new one."
3647 (and
3648 ;; turned off by user
3649 org-agenda-sticky
3650 ;; For multi-agenda buffer already exists
3651 (not org-agenda-multi)
3652 ;; buffer found
3653 (get-buffer org-agenda-buffer-name)
3654 ;; C-u parameter is same as last call
3655 (with-current-buffer (get-buffer org-agenda-buffer-name)
3656 (and
3657 (equal current-prefix-arg
3658 org-agenda-last-prefix-arg)
3659 ;; In case user turned stickiness on, while having existing
3660 ;; Agenda buffer active, don't reuse that buffer, because it
3661 ;; does not have org variables local
3662 org-agenda-this-buffer-is-sticky))))
3664 (defun org-agenda-prepare-window (abuf filter-alist)
3665 "Setup agenda buffer in the window.
3666 ABUF is the buffer for the agenda window.
3667 FILTER-ALIST is an alist of filters we need to apply when
3668 `org-agenda-persistent-filter' is non-nil."
3669 (let* ((awin (get-buffer-window abuf)) wconf)
3670 (cond
3671 ((equal (current-buffer) abuf) nil)
3672 (awin (select-window awin))
3673 ((not (setq wconf (current-window-configuration))))
3674 ((eq org-agenda-window-setup 'current-window)
3675 (pop-to-buffer-same-window abuf))
3676 ((eq org-agenda-window-setup 'other-window)
3677 (org-switch-to-buffer-other-window abuf))
3678 ((eq org-agenda-window-setup 'other-frame)
3679 (switch-to-buffer-other-frame abuf))
3680 ((eq org-agenda-window-setup 'only-window)
3681 (delete-other-windows)
3682 (pop-to-buffer-same-window abuf))
3683 ((eq org-agenda-window-setup 'reorganize-frame)
3684 (delete-other-windows)
3685 (org-switch-to-buffer-other-window abuf)))
3686 (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
3687 (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
3688 (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
3689 (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
3690 ;; Additional test in case agenda is invoked from within agenda
3691 ;; buffer via elisp link.
3692 (unless (equal (current-buffer) abuf)
3693 (pop-to-buffer-same-window abuf))
3694 (setq org-agenda-pre-window-conf
3695 (or wconf org-agenda-pre-window-conf))))
3697 (defun org-agenda-prepare (&optional name)
3698 (let ((filter-alist (if org-agenda-persistent-filter
3699 (with-current-buffer
3700 (get-buffer-create org-agenda-buffer-name)
3701 (list `(tag . ,org-agenda-tag-filter)
3702 `(re . ,org-agenda-regexp-filter)
3703 `(effort . ,org-agenda-effort-filter)
3704 `(cat . ,org-agenda-category-filter))))))
3705 (if (org-agenda-use-sticky-p)
3706 (progn
3707 (put 'org-agenda-tag-filter :preset-filter nil)
3708 (put 'org-agenda-category-filter :preset-filter nil)
3709 (put 'org-agenda-regexp-filter :preset-filter nil)
3710 ;; Popup existing buffer
3711 (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
3712 filter-alist)
3713 (message "Sticky Agenda buffer, use `r' to refresh")
3714 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
3715 (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
3716 (setq org-todo-keywords-for-agenda nil)
3717 (put 'org-agenda-tag-filter :preset-filter
3718 org-agenda-tag-filter-preset)
3719 (put 'org-agenda-category-filter :preset-filter
3720 org-agenda-category-filter-preset)
3721 (put 'org-agenda-regexp-filter :preset-filter
3722 org-agenda-regexp-filter-preset)
3723 (put 'org-agenda-effort-filter :preset-filter
3724 org-agenda-effort-filter-preset)
3725 (if org-agenda-multi
3726 (progn
3727 (setq buffer-read-only nil)
3728 (goto-char (point-max))
3729 (unless (or (bobp) org-agenda-compact-blocks
3730 (not org-agenda-block-separator))
3731 (insert "\n"
3732 (if (stringp org-agenda-block-separator)
3733 org-agenda-block-separator
3734 (make-string (window-width) org-agenda-block-separator))
3735 "\n"))
3736 (narrow-to-region (point) (point-max)))
3737 (setq org-done-keywords-for-agenda nil)
3738 ;; Setting any org variables that are in org-agenda-local-vars
3739 ;; list need to be done after the prepare call
3740 (org-agenda-prepare-window
3741 (get-buffer-create org-agenda-buffer-name) filter-alist)
3742 (setq buffer-read-only nil)
3743 (org-agenda-reset-markers)
3744 (let ((inhibit-read-only t)) (erase-buffer))
3745 (org-agenda-mode)
3746 (setq org-agenda-buffer (current-buffer))
3747 (setq org-agenda-contributing-files nil)
3748 (setq org-agenda-columns-active nil)
3749 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
3750 (setq org-todo-keywords-for-agenda
3751 (org-uniquify org-todo-keywords-for-agenda))
3752 (setq org-done-keywords-for-agenda
3753 (org-uniquify org-done-keywords-for-agenda))
3754 (setq org-agenda-last-prefix-arg current-prefix-arg)
3755 (setq org-agenda-this-buffer-name org-agenda-buffer-name)
3756 (and name (not org-agenda-name)
3757 (setq-local org-agenda-name name)))
3758 (setq buffer-read-only nil))))
3760 (defvar org-agenda-overriding-columns-format) ; From org-colview.el
3761 (defun org-agenda-finalize ()
3762 "Finishing touch for the agenda buffer, called just before displaying it."
3763 (unless org-agenda-multi
3764 (save-excursion
3765 (let ((inhibit-read-only t))
3766 (goto-char (point-min))
3767 (save-excursion
3768 (while (org-activate-links (point-max))
3769 (add-text-properties (match-beginning 0) (match-end 0)
3770 '(face org-link))))
3771 (unless (eq org-agenda-remove-tags t)
3772 (org-agenda-align-tags))
3773 (unless org-agenda-with-colors
3774 (remove-text-properties (point-min) (point-max) '(face nil)))
3775 (if (and (boundp 'org-agenda-overriding-columns-format)
3776 org-agenda-overriding-columns-format)
3777 (setq-local org-agenda-overriding-columns-format
3778 org-agenda-overriding-columns-format))
3779 (if (and (boundp 'org-agenda-view-columns-initially)
3780 org-agenda-view-columns-initially)
3781 (org-agenda-columns))
3782 (when org-agenda-fontify-priorities
3783 (org-agenda-fontify-priorities))
3784 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
3785 (org-agenda-dim-blocked-tasks))
3786 (org-agenda-mark-clocking-task)
3787 (when org-agenda-entry-text-mode
3788 (org-agenda-entry-text-hide)
3789 (org-agenda-entry-text-show))
3790 (if (and (functionp 'org-habit-insert-consistency-graphs)
3791 (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
3792 (org-habit-insert-consistency-graphs))
3793 (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
3794 (unless (or (eq org-agenda-show-inherited-tags 'always)
3795 (and (listp org-agenda-show-inherited-tags)
3796 (memq org-agenda-type org-agenda-show-inherited-tags))
3797 (and (eq org-agenda-show-inherited-tags t)
3798 (or (eq org-agenda-use-tag-inheritance t)
3799 (and (listp org-agenda-use-tag-inheritance)
3800 (not (memq org-agenda-type
3801 org-agenda-use-tag-inheritance))))))
3802 (let (mrk)
3803 (save-excursion
3804 (goto-char (point-min))
3805 (while (equal (forward-line) 0)
3806 (when (setq mrk (get-text-property (point) 'org-hd-marker))
3807 (put-text-property (point-at-bol) (point-at-eol)
3808 'tags (org-with-point-at mrk
3809 (delete-dups
3810 (mapcar 'downcase (org-get-tags-at))))))))))
3811 (run-hooks 'org-agenda-finalize-hook)
3812 (when org-agenda-top-headline-filter
3813 (org-agenda-filter-top-headline-apply
3814 org-agenda-top-headline-filter))
3815 (when org-agenda-tag-filter
3816 (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
3817 (when (get 'org-agenda-tag-filter :preset-filter)
3818 (org-agenda-filter-apply
3819 (get 'org-agenda-tag-filter :preset-filter) 'tag t))
3820 (when org-agenda-category-filter
3821 (org-agenda-filter-apply org-agenda-category-filter 'category))
3822 (when (get 'org-agenda-category-filter :preset-filter)
3823 (org-agenda-filter-apply
3824 (get 'org-agenda-category-filter :preset-filter) 'category))
3825 (when org-agenda-regexp-filter
3826 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
3827 (when (get 'org-agenda-regexp-filter :preset-filter)
3828 (org-agenda-filter-apply
3829 (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
3830 (when org-agenda-effort-filter
3831 (org-agenda-filter-apply org-agenda-effort-filter 'effort))
3832 (when (get 'org-agenda-effort-filter :preset-filter)
3833 (org-agenda-filter-apply
3834 (get 'org-agenda-effort-filter :preset-filter) 'effort))
3835 (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
3837 (defun org-agenda-mark-clocking-task ()
3838 "Mark the current clock entry in the agenda if it is present."
3839 ;; We need to widen when `org-agenda-finalize' is called from
3840 ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
3841 (when (bound-and-true-p org-clock-current-task)
3842 (save-restriction
3843 (widen)
3844 (org-agenda-unmark-clocking-task)
3845 (when (marker-buffer org-clock-hd-marker)
3846 (save-excursion
3847 (goto-char (point-min))
3848 (let (s ov)
3849 (while (setq s (next-single-property-change (point) 'org-hd-marker))
3850 (goto-char s)
3851 (when (equal (org-get-at-bol 'org-hd-marker)
3852 org-clock-hd-marker)
3853 (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
3854 (overlay-put ov 'type 'org-agenda-clocking)
3855 (overlay-put ov 'face 'org-agenda-clocking)
3856 (overlay-put ov 'help-echo
3857 "The clock is running in this item")))))))))
3859 (defun org-agenda-unmark-clocking-task ()
3860 "Unmark the current clocking task."
3861 (mapc (lambda (o)
3862 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
3863 (delete-overlay o)))
3864 (overlays-in (point-min) (point-max))))
3866 (defun org-agenda-fontify-priorities ()
3867 "Make highest priority lines bold, and lowest italic."
3868 (interactive)
3869 (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
3870 (delete-overlay o)))
3871 (overlays-in (point-min) (point-max)))
3872 (save-excursion
3873 (let (b e p ov h l)
3874 (goto-char (point-min))
3875 (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
3876 (setq h (or (get-char-property (point) 'org-highest-priority)
3877 org-highest-priority)
3878 l (or (get-char-property (point) 'org-lowest-priority)
3879 org-lowest-priority)
3880 p (string-to-char (match-string 1))
3881 b (match-beginning 0)
3882 e (if (eq org-agenda-fontify-priorities 'cookies)
3883 (match-end 0)
3884 (point-at-eol))
3885 ov (make-overlay b e))
3886 (overlay-put
3887 ov 'face
3888 (let ((special-face
3889 (cond ((org-face-from-face-or-color
3890 'priority 'org-priority
3891 (cdr (assoc p org-priority-faces))))
3892 ((and (listp org-agenda-fontify-priorities)
3893 (org-face-from-face-or-color
3894 'priority 'org-priority
3895 (cdr (assoc p org-agenda-fontify-priorities)))))
3896 ((equal p l) 'italic)
3897 ((equal p h) 'bold))))
3898 (if special-face (list special-face 'org-priority) 'org-priority)))
3899 (overlay-put ov 'org-type 'org-priority)))))
3901 (defvar org-depend-tag-blocked)
3903 (defun org-agenda-dim-blocked-tasks (&optional invisible)
3904 "Dim currently blocked TODOs in the agenda display.
3905 When INVISIBLE is non-nil, hide currently blocked TODO instead of
3906 dimming them."
3907 (interactive "P")
3908 (when (called-interactively-p 'interactive)
3909 (message "Dim or hide blocked tasks..."))
3910 (dolist (o (overlays-in (point-min) (point-max)))
3911 (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
3912 (delete-overlay o)))
3913 (save-excursion
3914 (let ((inhibit-read-only t))
3915 (goto-char (point-min))
3916 (while (let ((pos (text-property-not-all
3917 (point) (point-max) 'org-todo-blocked nil)))
3918 (when pos (goto-char pos)))
3919 (let* ((invisible (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
3920 (ov (make-overlay (if invisible
3921 (line-end-position 0)
3922 (line-beginning-position))
3923 (line-end-position))))
3924 (if invisible
3925 (overlay-put ov 'invisible t)
3926 (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
3927 (overlay-put ov 'org-type 'org-blocked-todo))
3928 (forward-line))))
3929 (when (called-interactively-p 'interactive)
3930 (message "Dim or hide blocked tasks...done")))
3932 (defun org-agenda--mark-blocked-entry (entry)
3933 "For ENTRY a string with the text property `org-hd-marker', if
3934 the header at `org-hd-marker' is blocked according to
3935 `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
3936 'invisible and the header is not blocked by checkboxes, set the
3937 text property `org-todo-blocked' to 'invisible, otherwise set it
3938 to t."
3939 (when (get-text-property 0 'todo-state entry)
3940 (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
3941 (org-blocked-by-checkboxes nil)
3942 ;; Necessary so that `org-entry-blocked-p' does not change
3943 ;; the buffer.
3944 (org-depend-tag-blocked nil))
3945 (when entry-marker
3946 (let ((blocked
3947 (with-current-buffer (marker-buffer entry-marker)
3948 (save-excursion
3949 (goto-char entry-marker)
3950 (org-entry-blocked-p)))))
3951 (when blocked
3952 (let ((really-invisible
3953 (and (not org-blocked-by-checkboxes)
3954 (eq org-agenda-dim-blocked-tasks 'invisible))))
3955 (put-text-property
3956 0 (length entry) 'org-todo-blocked
3957 (if really-invisible 'invisible t)
3958 entry)))))))
3959 entry)
3961 (defvar org-agenda-skip-function nil
3962 "Function to be called at each match during agenda construction.
3963 If this function returns nil, the current match should not be skipped.
3964 Otherwise, the function must return a position from where the search
3965 should be continued.
3966 This may also be a Lisp form, it will be evaluated.
3967 Never set this variable using `setq' or so, because then it will apply
3968 to all future agenda commands. If you do want a global skipping condition,
3969 use the option `org-agenda-skip-function-global' instead.
3970 The correct usage for `org-agenda-skip-function' is to bind it with
3971 `let' to scope it dynamically into the agenda-constructing command.
3972 A good way to set it is through options in `org-agenda-custom-commands'.")
3974 (defun org-agenda-skip ()
3975 "Throw to `:skip' in places that should be skipped.
3976 Also moves point to the end of the skipped region, so that search can
3977 continue from there."
3978 (let ((p (point-at-bol)) to)
3979 (when (or
3980 (save-excursion (goto-char p) (looking-at comment-start-skip))
3981 (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
3982 (get-text-property p :org-archived)
3983 (org-end-of-subtree t))
3984 (and org-agenda-skip-comment-trees
3985 (get-text-property p :org-comment)
3986 (org-end-of-subtree t))
3987 (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
3988 (org-agenda-skip-eval org-agenda-skip-function)))
3989 (goto-char to))
3990 (org-in-src-block-p t))
3991 (throw :skip t))))
3993 (defun org-agenda-skip-eval (form)
3994 "If FORM is a function or a list, call (or eval) it and return the result.
3995 `save-excursion' and `save-match-data' are wrapped around the call, so point
3996 and match data are returned to the previous state no matter what these
3997 functions do."
3998 (let (fp)
3999 (and form
4000 (or (setq fp (functionp form))
4001 (consp form))
4002 (save-excursion
4003 (save-match-data
4004 (if fp
4005 (funcall form)
4006 (eval form)))))))
4008 (defvar org-agenda-markers nil
4009 "List of all currently active markers created by `org-agenda'.")
4010 (defvar org-agenda-last-marker-time (float-time)
4011 "Creation time of the last agenda marker.")
4013 (defun org-agenda-new-marker (&optional pos)
4014 "Return a new agenda marker.
4015 Maker is at point, or at POS if non-nil. Org mode keeps a list of
4016 these markers and resets them when they are no longer in use."
4017 (let ((m (copy-marker (or pos (point)) t)))
4018 (setq org-agenda-last-marker-time (float-time))
4019 (if org-agenda-buffer
4020 (with-current-buffer org-agenda-buffer
4021 (push m org-agenda-markers))
4022 (push m org-agenda-markers))
4025 (defun org-agenda-reset-markers ()
4026 "Reset markers created by `org-agenda'."
4027 (while org-agenda-markers
4028 (move-marker (pop org-agenda-markers) nil)))
4030 (defun org-agenda-save-markers-for-cut-and-paste (beg end)
4031 "Save relative positions of markers in region.
4032 This check for agenda markers in all agenda buffers currently active."
4033 (dolist (buf (buffer-list))
4034 (with-current-buffer buf
4035 (when (eq major-mode 'org-agenda-mode)
4036 (mapc (lambda (m) (org-check-and-save-marker m beg end))
4037 org-agenda-markers)))))
4039 ;;; Entry text mode
4041 (defun org-agenda-entry-text-show-here ()
4042 "Add some text from the entry as context to the current line."
4043 (let (m txt o)
4044 (setq m (org-get-at-bol 'org-hd-marker))
4045 (unless (marker-buffer m)
4046 (error "No marker points to an entry here"))
4047 (setq txt (concat "\n" (org-no-properties
4048 (org-agenda-get-some-entry-text
4049 m org-agenda-entry-text-maxlines
4050 org-agenda-entry-text-leaders))))
4051 (when (string-match "\\S-" txt)
4052 (setq o (make-overlay (point-at-bol) (point-at-eol)))
4053 (overlay-put o 'evaporate t)
4054 (overlay-put o 'org-overlay-type 'agenda-entry-content)
4055 (overlay-put o 'after-string txt))))
4057 (defun org-agenda-entry-text-show ()
4058 "Add entry context for all agenda lines."
4059 (interactive)
4060 (save-excursion
4061 (goto-char (point-max))
4062 (beginning-of-line 1)
4063 (while (not (bobp))
4064 (when (org-get-at-bol 'org-hd-marker)
4065 (org-agenda-entry-text-show-here))
4066 (beginning-of-line 0))))
4068 (defun org-agenda-entry-text-hide ()
4069 "Remove any shown entry context."
4070 (delq nil
4071 (mapcar (lambda (o)
4072 (if (eq (overlay-get o 'org-overlay-type)
4073 'agenda-entry-content)
4074 (progn (delete-overlay o) t)))
4075 (overlays-in (point-min) (point-max)))))
4077 (defun org-agenda-get-day-face (date)
4078 "Return the face DATE should be displayed with."
4079 (cond ((and (functionp org-agenda-day-face-function)
4080 (funcall org-agenda-day-face-function date)))
4081 ((org-agenda-today-p date) 'org-agenda-date-today)
4082 ((memq (calendar-day-of-week date) org-agenda-weekend-days)
4083 'org-agenda-date-weekend)
4084 (t 'org-agenda-date)))
4086 (defvar org-agenda-show-log-scoped)
4088 ;;; Agenda Daily/Weekly
4090 (defvar org-agenda-start-day nil ; dynamically scoped parameter
4091 "Start day for the agenda view.
4092 Custom commands can set this variable in the options section.
4093 This is usually a string like \"2007-11-01\", \"+2d\" or any other
4094 input allowed when reading a date through the Org calendar.
4095 See the docstring of `org-read-date' for details.")
4096 (defvar org-starting-day nil) ; local variable in the agenda buffer
4097 (defvar org-arg-loc nil) ; local variable
4099 (defvar org-agenda-buffer-tmp-name nil)
4100 ;;;###autoload
4101 (defun org-agenda-list (&optional arg start-day span with-hour)
4102 "Produce a daily/weekly view from all files in variable `org-agenda-files'.
4103 The view will be for the current day or week, but from the overview buffer
4104 you will be able to go to other days/weeks.
4106 With a numeric prefix argument in an interactive call, the agenda will
4107 span ARG days. Lisp programs should instead specify SPAN to change
4108 the number of days. SPAN defaults to `org-agenda-span'.
4110 START-DAY defaults to TODAY, or to the most recent match for the weekday
4111 given in `org-agenda-start-on-weekday'.
4113 When WITH-HOUR is non-nil, only include scheduled and deadline
4114 items if they have an hour specification like [h]h:mm."
4115 (interactive "P")
4116 (if org-agenda-overriding-arguments
4117 (setq arg (car org-agenda-overriding-arguments)
4118 start-day (nth 1 org-agenda-overriding-arguments)
4119 span (nth 2 org-agenda-overriding-arguments)))
4120 (if (and (integerp arg) (> arg 0))
4121 (setq span arg arg nil))
4122 (catch 'exit
4123 (setq org-agenda-buffer-name
4124 (or org-agenda-buffer-tmp-name
4125 (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
4126 (if org-agenda-sticky
4127 (cond ((and org-keys (stringp org-match))
4128 (format "*Org Agenda(%s:%s)*" org-keys org-match))
4129 (org-keys
4130 (format "*Org Agenda(%s)*" org-keys))
4131 (t "*Org Agenda(a)*")))
4132 "*Org Agenda*"))
4133 (org-agenda-prepare "Day/Week")
4134 (setq start-day (or start-day org-agenda-start-day))
4135 (if (stringp start-day)
4136 ;; Convert to an absolute day number
4137 (setq start-day (time-to-days (org-read-date nil t start-day))))
4138 (org-compile-prefix-format 'agenda)
4139 (org-set-sorting-strategy 'agenda)
4140 (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
4141 (today (org-today))
4142 (sd (or start-day today))
4143 (ndays (org-agenda-span-to-ndays span sd))
4144 (org-agenda-start-on-weekday
4145 (if (or (eq ndays 7) (eq ndays 14))
4146 org-agenda-start-on-weekday))
4147 (thefiles (org-agenda-files nil 'ifmode))
4148 (files thefiles)
4149 (start (if (or (null org-agenda-start-on-weekday)
4150 (< ndays 7))
4152 (let* ((nt (calendar-day-of-week
4153 (calendar-gregorian-from-absolute sd)))
4154 (n1 org-agenda-start-on-weekday)
4155 (d (- nt n1)))
4156 (- sd (+ (if (< d 0) 7 0) d)))))
4157 (day-numbers (list start))
4158 (day-cnt 0)
4159 (inhibit-redisplay (not debug-on-error))
4160 (org-agenda-show-log-scoped org-agenda-show-log)
4161 s e rtn rtnall file date d start-pos end-pos todayp
4162 clocktable-start clocktable-end filter)
4163 (setq org-agenda-redo-command
4164 (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
4165 (dotimes (n (1- ndays))
4166 (push (1+ (car day-numbers)) day-numbers))
4167 (setq day-numbers (nreverse day-numbers))
4168 (setq clocktable-start (car day-numbers)
4169 clocktable-end (1+ (or (org-last day-numbers) 0)))
4170 (setq-local org-starting-day (car day-numbers))
4171 (setq-local org-arg-loc arg)
4172 (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
4173 (unless org-agenda-compact-blocks
4174 (let* ((d1 (car day-numbers))
4175 (d2 (org-last day-numbers))
4176 (w1 (org-days-to-iso-week d1))
4177 (w2 (org-days-to-iso-week d2)))
4178 (setq s (point))
4179 (org-agenda--insert-overriding-header
4180 (concat (org-agenda-span-name span)
4181 "-agenda"
4182 (cond ((<= 350 (- d2 d1)) "")
4183 ((= w1 w2) (format " (W%02d)" w1))
4184 (t (format " (W%02d-W%02d)" w1 w2)))
4185 ":\n")))
4186 (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
4187 'org-date-line t))
4188 (org-agenda-mark-header-line s))
4189 (while (setq d (pop day-numbers))
4190 (setq date (calendar-gregorian-from-absolute d)
4191 s (point))
4192 (if (or (setq todayp (= d today))
4193 (and (not start-pos) (= d sd)))
4194 (setq start-pos (point))
4195 (if (and start-pos (not end-pos))
4196 (setq end-pos (point))))
4197 (setq files thefiles
4198 rtnall nil)
4199 (while (setq file (pop files))
4200 (catch 'nextfile
4201 (org-check-agenda-file file)
4202 (let ((org-agenda-entry-types org-agenda-entry-types))
4203 ;; Starred types override non-starred equivalents
4204 (when (member :deadline* org-agenda-entry-types)
4205 (setq org-agenda-entry-types
4206 (delq :deadline org-agenda-entry-types)))
4207 (when (member :scheduled* org-agenda-entry-types)
4208 (setq org-agenda-entry-types
4209 (delq :scheduled org-agenda-entry-types)))
4210 ;; Honor with-hour
4211 (when with-hour
4212 (when (member :deadline org-agenda-entry-types)
4213 (setq org-agenda-entry-types
4214 (delq :deadline org-agenda-entry-types))
4215 (push :deadline* org-agenda-entry-types))
4216 (when (member :scheduled org-agenda-entry-types)
4217 (setq org-agenda-entry-types
4218 (delq :scheduled org-agenda-entry-types))
4219 (push :scheduled* org-agenda-entry-types)))
4220 (unless org-agenda-include-deadlines
4221 (setq org-agenda-entry-types
4222 (delq :deadline* (delq :deadline org-agenda-entry-types))))
4223 (cond
4224 ((memq org-agenda-show-log-scoped '(only clockcheck))
4225 (setq rtn (org-agenda-get-day-entries
4226 file date :closed)))
4227 (org-agenda-show-log-scoped
4228 (setq rtn (apply 'org-agenda-get-day-entries
4229 file date
4230 (append '(:closed) org-agenda-entry-types))))
4232 (setq rtn (apply 'org-agenda-get-day-entries
4233 file date
4234 org-agenda-entry-types)))))
4235 (setq rtnall (append rtnall rtn)))) ;; all entries
4236 (if org-agenda-include-diary
4237 (let ((org-agenda-search-headline-for-time t))
4238 (require 'diary-lib)
4239 (setq rtn (org-get-entries-from-diary date))
4240 (setq rtnall (append rtnall rtn))))
4241 (if (or rtnall org-agenda-show-all-dates)
4242 (progn
4243 (setq day-cnt (1+ day-cnt))
4244 (insert
4245 (if (stringp org-agenda-format-date)
4246 (format-time-string org-agenda-format-date
4247 (org-time-from-absolute date))
4248 (funcall org-agenda-format-date date))
4249 "\n")
4250 (put-text-property s (1- (point)) 'face
4251 (org-agenda-get-day-face date))
4252 (put-text-property s (1- (point)) 'org-date-line t)
4253 (put-text-property s (1- (point)) 'org-agenda-date-header t)
4254 (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
4255 (when todayp
4256 (put-text-property s (1- (point)) 'org-today t))
4257 (setq rtnall
4258 (org-agenda-add-time-grid-maybe rtnall ndays todayp))
4259 (if rtnall (insert ;; all entries
4260 (org-agenda-finalize-entries rtnall 'agenda)
4261 "\n"))
4262 (put-text-property s (1- (point)) 'day d)
4263 (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
4264 (when (and org-agenda-clockreport-mode clocktable-start)
4265 (let ((org-agenda-files (org-agenda-files nil 'ifmode))
4266 ;; the above line is to ensure the restricted range!
4267 (p (copy-sequence org-agenda-clockreport-parameter-plist))
4268 tbl)
4269 (setq p (org-plist-delete p :block))
4270 (setq p (plist-put p :tstart clocktable-start))
4271 (setq p (plist-put p :tend clocktable-end))
4272 (setq p (plist-put p :scope 'agenda))
4273 (setq tbl (apply 'org-clock-get-clocktable p))
4274 (insert tbl)))
4275 (goto-char (point-min))
4276 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4277 (unless (and (pos-visible-in-window-p (point-min))
4278 (pos-visible-in-window-p (point-max)))
4279 (goto-char (1- (point-max)))
4280 (recenter -1)
4281 (if (not (pos-visible-in-window-p (or start-pos 1)))
4282 (progn
4283 (goto-char (or start-pos 1))
4284 (recenter 1))))
4285 (goto-char (or start-pos 1))
4286 (add-text-properties (point-min) (point-max)
4287 `(org-agenda-type agenda
4288 org-last-args (,arg ,start-day ,span)
4289 org-redo-cmd ,org-agenda-redo-command
4290 org-series-cmd ,org-cmd))
4291 (if (eq org-agenda-show-log-scoped 'clockcheck)
4292 (org-agenda-show-clocking-issues))
4293 (org-agenda-finalize)
4294 (setq buffer-read-only t)
4295 (message ""))))
4297 (defun org-agenda-ndays-to-span (n)
4298 "Return a span symbol for a span of N days, or N if none matches."
4299 (cond ((symbolp n) n)
4300 ((= n 1) 'day)
4301 ((= n 7) 'week)
4302 ((= n 14) 'fortnight)
4303 (t n)))
4305 (defun org-agenda-span-to-ndays (span &optional start-day)
4306 "Return ndays from SPAN, possibly starting at START-DAY.
4307 START-DAY is an absolute time value."
4308 (cond ((numberp span) span)
4309 ((eq span 'day) 1)
4310 ((eq span 'week) 7)
4311 ((eq span 'fortnight) 14)
4312 ((eq span 'month)
4313 (let ((date (calendar-gregorian-from-absolute start-day)))
4314 (calendar-last-day-of-month (car date) (cl-caddr date))))
4315 ((eq span 'year)
4316 (let ((date (calendar-gregorian-from-absolute start-day)))
4317 (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
4319 (defun org-agenda-span-name (span)
4320 "Return a SPAN name."
4321 (if (null span)
4323 (if (symbolp span)
4324 (capitalize (symbol-name span))
4325 (format "%d days" span))))
4327 ;;; Agenda word search
4329 (defvar org-agenda-search-history nil)
4331 (defvar org-search-syntax-table nil
4332 "Special syntax table for Org search.
4333 In this table, we have single quotes not as word constituents, to
4334 that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
4336 (defvar org-mode-syntax-table) ; From org.el
4337 (defun org-search-syntax-table ()
4338 (unless org-search-syntax-table
4339 (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
4340 (modify-syntax-entry ?' "." org-search-syntax-table)
4341 (modify-syntax-entry ?` "." org-search-syntax-table))
4342 org-search-syntax-table)
4344 (defvar org-agenda-last-search-view-search-was-boolean nil)
4346 ;;;###autoload
4347 (defun org-search-view (&optional todo-only string edit-at)
4348 "Show all entries that contain a phrase or words or regular expressions.
4350 With optional prefix argument TODO-ONLY, only consider entries that are
4351 TODO entries. The argument STRING can be used to pass a default search
4352 string into this function. If EDIT-AT is non-nil, it means that the
4353 user should get a chance to edit this string, with cursor at position
4354 EDIT-AT.
4356 The search string can be viewed either as a phrase that should be found as
4357 is, or it can be broken into a number of snippets, each of which must match
4358 in a Boolean way to select an entry. The default depends on the variable
4359 `org-agenda-search-view-always-boolean'.
4360 Even if this is turned off (the default) you can always switch to
4361 Boolean search dynamically by preceding the first word with \"+\" or \"-\".
4363 The default is a direct search of the whole phrase, where each space in
4364 the search string can expand to an arbitrary amount of whitespace,
4365 including newlines.
4367 If using a Boolean search, the search string is split on whitespace and
4368 each snippet is searched separately, with logical AND to select an entry.
4369 Words prefixed with a minus must *not* occur in the entry. Words without
4370 a prefix or prefixed with a plus must occur in the entry. Matching is
4371 case-insensitive. Words are enclosed by word delimiters (i.e. they must
4372 match whole words, not parts of a word) if
4373 `org-agenda-search-view-force-full-words' is set (default is nil).
4375 Boolean search snippets enclosed by curly braces are interpreted as
4376 regular expressions that must or (when preceded with \"-\") must not
4377 match in the entry. Snippets enclosed into double quotes will be taken
4378 as a whole, to include whitespace.
4380 - If the search string starts with an asterisk, search only in headlines.
4381 - If (possibly after the leading star) the search string starts with an
4382 exclamation mark, this also means to look at TODO entries only, an effect
4383 that can also be achieved with a prefix argument.
4384 - If (possibly after star and exclamation mark) the search string starts
4385 with a colon, this will mean that the (non-regexp) snippets of the
4386 Boolean search must match as full words.
4388 This command searches the agenda files, and in addition the files
4389 listed in `org-agenda-text-search-extra-files' unless a restriction lock
4390 is active."
4391 (interactive "P")
4392 (if org-agenda-overriding-arguments
4393 (setq todo-only (car org-agenda-overriding-arguments)
4394 string (nth 1 org-agenda-overriding-arguments)
4395 edit-at (nth 2 org-agenda-overriding-arguments)))
4396 (let* ((props (list 'face nil
4397 'done-face 'org-agenda-done
4398 'org-not-done-regexp org-not-done-regexp
4399 'org-todo-regexp org-todo-regexp
4400 'org-complex-heading-regexp org-complex-heading-regexp
4401 'mouse-face 'highlight
4402 'help-echo (format "mouse-2 or RET jump to location")))
4403 (full-words org-agenda-search-view-force-full-words)
4404 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
4405 regexp rtn rtnall files file pos inherited-tags
4406 marker category level tags c neg re boolean
4407 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
4408 (unless (and (not edit-at)
4409 (stringp string)
4410 (string-match "\\S-" string))
4411 (setq string (read-string
4412 (if org-agenda-search-view-always-boolean
4413 "[+-]Word/{Regexp} ...: "
4414 "Phrase or [+-]Word/{Regexp} ...: ")
4415 (cond
4416 ((integerp edit-at) (cons string edit-at))
4417 (edit-at string))
4418 'org-agenda-search-history)))
4419 (catch 'exit
4420 (if org-agenda-sticky
4421 (setq org-agenda-buffer-name
4422 (if (stringp string)
4423 (format "*Org Agenda(%s:%s)*"
4424 (or org-keys (or (and todo-only "S") "s")) string)
4425 (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
4426 (org-agenda-prepare "SEARCH")
4427 (org-compile-prefix-format 'search)
4428 (org-set-sorting-strategy 'search)
4429 (setq org-agenda-redo-command
4430 (list 'org-search-view (if todo-only t nil)
4431 (list 'if 'current-prefix-arg nil string)))
4432 (setq org-agenda-query-string string)
4433 (if (equal (string-to-char string) ?*)
4434 (setq hdl-only t
4435 words (substring string 1))
4436 (setq words string))
4437 (when (equal (string-to-char words) ?!)
4438 (setq todo-only t
4439 words (substring words 1)))
4440 (when (equal (string-to-char words) ?:)
4441 (setq full-words t
4442 words (substring words 1)))
4443 (if (or org-agenda-search-view-always-boolean
4444 (member (string-to-char words) '(?- ?+ ?\{)))
4445 (setq boolean t))
4446 (setq words (split-string words))
4447 (let (www w)
4448 (while (setq w (pop words))
4449 (while (and (string-match "\\\\\\'" w) words)
4450 (setq w (concat (substring w 0 -1) " " (pop words))))
4451 (push w www))
4452 (setq words (nreverse www) www nil)
4453 (while (setq w (pop words))
4454 (when (and (string-match "\\`[-+]?{" w)
4455 (not (string-match "}\\'" w)))
4456 (while (and words (not (string-match "}\\'" (car words))))
4457 (setq w (concat w " " (pop words))))
4458 (setq w (concat w " " (pop words))))
4459 (push w www))
4460 (setq words (nreverse www)))
4461 (setq org-agenda-last-search-view-search-was-boolean boolean)
4462 (when boolean
4463 (let (wds w)
4464 (while (setq w (pop words))
4465 (if (or (equal (substring w 0 1) "\"")
4466 (and (> (length w) 1)
4467 (member (substring w 0 1) '("+" "-"))
4468 (equal (substring w 1 2) "\"")))
4469 (while (and words (not (equal (substring w -1) "\"")))
4470 (setq w (concat w " " (pop words)))))
4471 (and (string-match "\\`\\([-+]?\\)\"" w)
4472 (setq w (replace-match "\\1" nil nil w)))
4473 (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
4474 (push w wds))
4475 (setq words (nreverse wds))))
4476 (if boolean
4477 (mapc (lambda (w)
4478 (setq c (string-to-char w))
4479 (if (equal c ?-)
4480 (setq neg t w (substring w 1))
4481 (if (equal c ?+)
4482 (setq neg nil w (substring w 1))
4483 (setq neg nil)))
4484 (if (string-match "\\`{.*}\\'" w)
4485 (setq re (substring w 1 -1))
4486 (if full-words
4487 (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
4488 (setq re (regexp-quote (downcase w)))))
4489 (if neg (push re regexps-) (push re regexps+)))
4490 words)
4491 (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
4492 regexps+))
4493 (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
4494 (if (not regexps+)
4495 (setq regexp org-outline-regexp-bol)
4496 (setq regexp (pop regexps+))
4497 (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
4498 regexp))))
4499 (setq files (org-agenda-files nil 'ifmode))
4500 ;; Add `org-agenda-text-search-extra-files' unless there is some
4501 ;; restriction.
4502 (unless (get 'org-agenda-files 'org-restrict)
4503 (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
4504 (pop org-agenda-text-search-extra-files)
4505 (setq files (org-add-archive-files files))))
4506 ;; Uniquify files. However, let `org-check-agenda-file' handle
4507 ;; non-existent ones.
4508 (setq files (cl-remove-duplicates
4509 (append files org-agenda-text-search-extra-files)
4510 :test (lambda (a b)
4511 (and (file-exists-p a)
4512 (file-exists-p b)
4513 (file-equal-p a b))))
4514 rtnall nil)
4515 (while (setq file (pop files))
4516 (setq ee nil)
4517 (catch 'nextfile
4518 (org-check-agenda-file file)
4519 (setq buffer (if (file-exists-p file)
4520 (org-get-agenda-file-buffer file)
4521 (error "No such file %s" file)))
4522 (if (not buffer)
4523 ;; If file does not exist, make sure an error message is sent
4524 (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
4525 file))))
4526 (with-current-buffer buffer
4527 (with-syntax-table (org-search-syntax-table)
4528 (unless (derived-mode-p 'org-mode)
4529 (error "Agenda file %s is not in Org mode" file))
4530 (let ((case-fold-search t))
4531 (save-excursion
4532 (save-restriction
4533 (if (eq buffer org-agenda-restrict)
4534 (narrow-to-region org-agenda-restrict-begin
4535 org-agenda-restrict-end)
4536 (widen))
4537 (goto-char (point-min))
4538 (unless (or (org-at-heading-p)
4539 (outline-next-heading))
4540 (throw 'nextfile t))
4541 (goto-char (max (point-min) (1- (point))))
4542 (while (re-search-forward regexp nil t)
4543 (org-back-to-heading t)
4544 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4545 (> (org-reduced-level (org-outline-level))
4546 org-agenda-search-view-max-outline-level)
4547 (forward-line -1)
4548 (org-back-to-heading t)))
4549 (skip-chars-forward "* ")
4550 (setq beg (point-at-bol)
4551 beg1 (point)
4552 end (progn
4553 (outline-next-heading)
4554 (while (and (not (zerop org-agenda-search-view-max-outline-level))
4555 (> (org-reduced-level (org-outline-level))
4556 org-agenda-search-view-max-outline-level)
4557 (forward-line 1)
4558 (outline-next-heading)))
4559 (point)))
4561 (catch :skip
4562 (goto-char beg)
4563 (org-agenda-skip)
4564 (setq str (buffer-substring-no-properties
4565 (point-at-bol)
4566 (if hdl-only (point-at-eol) end)))
4567 (mapc (lambda (wr) (when (string-match wr str)
4568 (goto-char (1- end))
4569 (throw :skip t)))
4570 regexps-)
4571 (mapc (lambda (wr) (unless (string-match wr str)
4572 (goto-char (1- end))
4573 (throw :skip t)))
4574 (if todo-only
4575 (cons (concat "^\\*+[ \t]+"
4576 org-not-done-regexp)
4577 regexps+)
4578 regexps+))
4579 (goto-char beg)
4580 (setq marker (org-agenda-new-marker (point))
4581 category (org-get-category)
4582 level (make-string (org-reduced-level (org-outline-level)) ? )
4583 inherited-tags
4584 (or (eq org-agenda-show-inherited-tags 'always)
4585 (and (listp org-agenda-show-inherited-tags)
4586 (memq 'todo org-agenda-show-inherited-tags))
4587 (and (eq org-agenda-show-inherited-tags t)
4588 (or (eq org-agenda-use-tag-inheritance t)
4589 (memq 'todo org-agenda-use-tag-inheritance))))
4590 tags (org-get-tags-at nil (not inherited-tags))
4591 txt (org-agenda-format-item
4593 (buffer-substring-no-properties
4594 beg1 (point-at-eol))
4595 level category tags t))
4596 (org-add-props txt props
4597 'org-marker marker 'org-hd-marker marker
4598 'org-todo-regexp org-todo-regexp
4599 'level level
4600 'org-complex-heading-regexp org-complex-heading-regexp
4601 'priority 1000
4602 'type "search")
4603 (push txt ee)
4604 (goto-char (1- end))))))))))
4605 (setq rtn (nreverse ee))
4606 (setq rtnall (append rtnall rtn)))
4607 (org-agenda--insert-overriding-header
4608 (with-temp-buffer
4609 (insert "Search words: ")
4610 (add-text-properties (point-min) (1- (point))
4611 (list 'face 'org-agenda-structure))
4612 (setq pos (point))
4613 (insert string "\n")
4614 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4615 (setq pos (point))
4616 (unless org-agenda-multi
4617 (insert (substitute-command-keys "\\<org-agenda-mode-map>\
4618 Press `\\[org-agenda-manipulate-query-add]', \
4619 `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
4620 `\\[org-agenda-manipulate-query-add-re]', \
4621 `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
4622 `\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
4623 (add-text-properties pos (1- (point))
4624 (list 'face 'org-agenda-structure)))
4625 (buffer-string)))
4626 (org-agenda-mark-header-line (point-min))
4627 (when rtnall
4628 (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
4629 (goto-char (point-min))
4630 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4631 (add-text-properties (point-min) (point-max)
4632 `(org-agenda-type search
4633 org-last-args (,todo-only ,string ,edit-at)
4634 org-redo-cmd ,org-agenda-redo-command
4635 org-series-cmd ,org-cmd))
4636 (org-agenda-finalize)
4637 (setq buffer-read-only t))))
4639 ;;; Agenda TODO list
4641 (defun org-agenda-propertize-selected-todo-keywords (keywords)
4642 "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
4643 (concat
4644 (if (or (equal keywords "ALL") (not keywords))
4645 (propertize "ALL" 'face 'warning)
4646 (mapconcat
4647 (lambda (kw)
4648 (propertize kw 'face (org-get-todo-face kw)))
4649 (org-split-string keywords "|")
4650 "|"))
4651 "\n"))
4653 (defvar org-select-this-todo-keyword nil)
4654 (defvar org-last-arg nil)
4656 ;;;###autoload
4657 (defun org-todo-list (&optional arg)
4658 "Show all (not done) TODO entries from all agenda file in a single list.
4659 The prefix arg can be used to select a specific TODO keyword and limit
4660 the list to these. When using `\\[universal-argument]', you will be prompted
4661 for a keyword. A numeric prefix directly selects the Nth keyword in
4662 `org-todo-keywords-1'."
4663 (interactive "P")
4664 (if org-agenda-overriding-arguments
4665 (setq arg org-agenda-overriding-arguments))
4666 (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
4667 (let* ((today (org-today))
4668 (date (calendar-gregorian-from-absolute today))
4669 (kwds org-todo-keywords-for-agenda)
4670 (completion-ignore-case t)
4671 (org-select-this-todo-keyword
4672 (if (stringp arg) arg
4673 (and arg (integerp arg) (> arg 0)
4674 (nth (1- arg) kwds))))
4675 rtn rtnall files file pos)
4676 (when (equal arg '(4))
4677 (setq org-select-this-todo-keyword
4678 (completing-read "Keyword (or KWD1|K2D2|...): "
4679 (mapcar #'list kwds) nil nil)))
4680 (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
4681 (catch 'exit
4682 (if org-agenda-sticky
4683 (setq org-agenda-buffer-name
4684 (if (stringp org-select-this-todo-keyword)
4685 (format "*Org Agenda(%s:%s)*" (or org-keys "t")
4686 org-select-this-todo-keyword)
4687 (format "*Org Agenda(%s)*" (or org-keys "t")))))
4688 (org-agenda-prepare "TODO")
4689 (org-compile-prefix-format 'todo)
4690 (org-set-sorting-strategy 'todo)
4691 (setq org-agenda-redo-command
4692 `(org-todo-list (or (and (numberp current-prefix-arg)
4693 current-prefix-arg)
4694 ,org-select-this-todo-keyword
4695 current-prefix-arg ,arg)))
4696 (setq files (org-agenda-files nil 'ifmode)
4697 rtnall nil)
4698 (while (setq file (pop files))
4699 (catch 'nextfile
4700 (org-check-agenda-file file)
4701 (setq rtn (org-agenda-get-day-entries file date :todo))
4702 (setq rtnall (append rtnall rtn))))
4703 (org-agenda--insert-overriding-header
4704 (with-temp-buffer
4705 (insert "Global list of TODO items of type: ")
4706 (add-text-properties (point-min) (1- (point))
4707 (list 'face 'org-agenda-structure
4708 'short-heading
4709 (concat "ToDo: "
4710 (or org-select-this-todo-keyword "ALL"))))
4711 (org-agenda-mark-header-line (point-min))
4712 (insert (org-agenda-propertize-selected-todo-keywords
4713 org-select-this-todo-keyword))
4714 (setq pos (point))
4715 (unless org-agenda-multi
4716 (insert (substitute-command-keys "Available with \
4717 \\<org-agenda-mode-map>`N \\[org-agenda-redo]': (0)[ALL]"))
4718 (let ((n 0))
4719 (dolist (k kwds)
4720 (let ((s (format "(%d)%s" (cl-incf n) k)))
4721 (when (> (+ (current-column) (string-width s) 1) (window-width))
4722 (insert "\n "))
4723 (insert " " s))))
4724 (insert "\n"))
4725 (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
4726 (buffer-string)))
4727 (org-agenda-mark-header-line (point-min))
4728 (when rtnall
4729 (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
4730 (goto-char (point-min))
4731 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4732 (add-text-properties (point-min) (point-max)
4733 `(org-agenda-type todo
4734 org-last-args ,arg
4735 org-redo-cmd ,org-agenda-redo-command
4736 org-series-cmd ,org-cmd))
4737 (org-agenda-finalize)
4738 (setq buffer-read-only t))))
4740 ;;; Agenda tags match
4742 ;;;###autoload
4743 (defun org-tags-view (&optional todo-only match)
4744 "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
4745 The prefix arg TODO-ONLY limits the search to TODO entries."
4746 (interactive "P")
4747 (if org-agenda-overriding-arguments
4748 (setq todo-only (car org-agenda-overriding-arguments)
4749 match (nth 1 org-agenda-overriding-arguments)))
4750 (let* ((org-tags-match-list-sublevels
4751 org-tags-match-list-sublevels)
4752 (completion-ignore-case t)
4753 (org--matcher-tags-todo-only todo-only)
4754 rtn rtnall files file pos matcher
4755 buffer)
4756 (when (and (stringp match) (not (string-match "\\S-" match)))
4757 (setq match nil))
4758 (catch 'exit
4759 (if org-agenda-sticky
4760 (setq org-agenda-buffer-name
4761 (if (stringp match)
4762 (format "*Org Agenda(%s:%s)*"
4763 (or org-keys (or (and todo-only "M") "m")) match)
4764 (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
4765 ;; Prepare agendas (and `org-tag-alist-for-agenda') before
4766 ;; expanding tags within `org-make-tags-matcher'
4767 (org-agenda-prepare (concat "TAGS " match))
4768 (setq matcher (org-make-tags-matcher match)
4769 match (car matcher)
4770 matcher (cdr matcher))
4771 (org-compile-prefix-format 'tags)
4772 (org-set-sorting-strategy 'tags)
4773 (setq org-agenda-query-string match)
4774 (setq org-agenda-redo-command
4775 (list 'org-tags-view
4776 `(quote ,org--matcher-tags-todo-only)
4777 `(if current-prefix-arg nil ,org-agenda-query-string)))
4778 (setq files (org-agenda-files nil 'ifmode)
4779 rtnall nil)
4780 (while (setq file (pop files))
4781 (catch 'nextfile
4782 (org-check-agenda-file file)
4783 (setq buffer (if (file-exists-p file)
4784 (org-get-agenda-file-buffer file)
4785 (error "No such file %s" file)))
4786 (if (not buffer)
4787 ;; If file does not exist, error message to agenda
4788 (setq rtn (list
4789 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
4790 rtnall (append rtnall rtn))
4791 (with-current-buffer buffer
4792 (unless (derived-mode-p 'org-mode)
4793 (error "Agenda file %s is not in Org mode" file))
4794 (save-excursion
4795 (save-restriction
4796 (if (eq buffer org-agenda-restrict)
4797 (narrow-to-region org-agenda-restrict-begin
4798 org-agenda-restrict-end)
4799 (widen))
4800 (setq rtn (org-scan-tags 'agenda
4801 matcher
4802 org--matcher-tags-todo-only))
4803 (setq rtnall (append rtnall rtn))))))))
4804 (org-agenda--insert-overriding-header
4805 (with-temp-buffer
4806 (insert "Headlines with TAGS match: ")
4807 (add-text-properties (point-min) (1- (point))
4808 (list 'face 'org-agenda-structure
4809 'short-heading
4810 (concat "Match: " match)))
4811 (setq pos (point))
4812 (insert match "\n")
4813 (add-text-properties pos (1- (point)) (list 'face 'org-warning))
4814 (setq pos (point))
4815 (unless org-agenda-multi
4816 (insert (substitute-command-keys
4817 "Press \
4818 \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
4819 to search again with new search string\n")))
4820 (add-text-properties pos (1- (point))
4821 (list 'face 'org-agenda-structure))
4822 (buffer-string)))
4823 (org-agenda-mark-header-line (point-min))
4824 (when rtnall
4825 (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
4826 (goto-char (point-min))
4827 (or org-agenda-multi (org-agenda-fit-window-to-buffer))
4828 (add-text-properties
4829 (point-min) (point-max)
4830 `(org-agenda-type tags
4831 org-last-args (,org--matcher-tags-todo-only ,match)
4832 org-redo-cmd ,org-agenda-redo-command
4833 org-series-cmd ,org-cmd))
4834 (org-agenda-finalize)
4835 (setq buffer-read-only t))))
4837 ;;; Agenda Finding stuck projects
4839 (defvar org-agenda-skip-regexp nil
4840 "Regular expression used in skipping subtrees for the agenda.
4841 This is basically a temporary global variable that can be set and then
4842 used by user-defined selections using `org-agenda-skip-function'.")
4844 (defvar org-agenda-overriding-header nil
4845 "When set during agenda, todo and tags searches it replaces the header.
4846 If an empty string, no header will be inserted. If any other
4847 string, it will be inserted as a header. If nil, a header will
4848 be generated automatically according to the command. This
4849 variable should not be set directly, but custom commands can bind
4850 it in the options section.")
4852 (defun org-agenda-skip-entry-if (&rest conditions)
4853 "Skip entry if any of CONDITIONS is true.
4854 See `org-agenda-skip-if' for details."
4855 (org-agenda-skip-if nil conditions))
4857 (defun org-agenda-skip-subtree-if (&rest conditions)
4858 "Skip subtree if any of CONDITIONS is true.
4859 See `org-agenda-skip-if' for details."
4860 (org-agenda-skip-if t conditions))
4862 (defun org-agenda-skip-if (subtree conditions)
4863 "Checks current entity for CONDITIONS.
4864 If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
4865 the entry (i.e. the text before the next heading) is checked.
4867 CONDITIONS is a list of symbols, boolean OR is used to combine the results
4868 from different tests. Valid conditions are:
4870 scheduled Check if there is a scheduled cookie
4871 notscheduled Check if there is no scheduled cookie
4872 deadline Check if there is a deadline
4873 notdeadline Check if there is no deadline
4874 timestamp Check if there is a timestamp (also deadline or scheduled)
4875 nottimestamp Check if there is no timestamp (also deadline or scheduled)
4876 regexp Check if regexp matches
4877 notregexp Check if regexp does not match.
4878 todo Check if TODO keyword matches
4879 nottodo Check if TODO keyword does not match
4881 The regexp is taken from the conditions list, it must come right after
4882 the `regexp' or `notregexp' element.
4884 `todo' and `nottodo' accept as an argument a list of todo
4885 keywords, which may include \"*\" to match any todo keyword.
4887 (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
4889 would skip all entries with \"TODO\" or \"WAITING\" keywords.
4891 Instead of a list, a keyword class may be given. For example:
4893 (org-agenda-skip-entry-if \\='nottodo \\='done)
4895 would skip entries that haven't been marked with any of \"DONE\"
4896 keywords. Possible classes are: `todo', `done', `any'.
4898 If any of these conditions is met, this function returns the end point of
4899 the entity, causing the search to continue from there. This is a function
4900 that can be put into `org-agenda-skip-function' for the duration of a command."
4901 (org-back-to-heading t)
4902 (let* ((beg (point))
4903 (end (if subtree (save-excursion (org-end-of-subtree t) (point))
4904 (org-entry-end-position)))
4905 (planning-end (if subtree end (line-end-position 2)))
4907 (and
4908 (or (and (memq 'scheduled conditions)
4909 (re-search-forward org-scheduled-time-regexp planning-end t))
4910 (and (memq 'notscheduled conditions)
4911 (not
4912 (save-excursion
4913 (re-search-forward org-scheduled-time-regexp planning-end t))))
4914 (and (memq 'deadline conditions)
4915 (re-search-forward org-deadline-time-regexp planning-end t))
4916 (and (memq 'notdeadline conditions)
4917 (not
4918 (save-excursion
4919 (re-search-forward org-deadline-time-regexp planning-end t))))
4920 (and (memq 'timestamp conditions)
4921 (re-search-forward org-ts-regexp end t))
4922 (and (memq 'nottimestamp conditions)
4923 (not (save-excursion (re-search-forward org-ts-regexp end t))))
4924 (and (setq m (memq 'regexp conditions))
4925 (stringp (nth 1 m))
4926 (re-search-forward (nth 1 m) end t))
4927 (and (setq m (memq 'notregexp conditions))
4928 (stringp (nth 1 m))
4929 (not (save-excursion (re-search-forward (nth 1 m) end t))))
4930 (and (or
4931 (setq m (memq 'nottodo conditions))
4932 (setq m (memq 'todo-unblocked conditions))
4933 (setq m (memq 'nottodo-unblocked conditions))
4934 (setq m (memq 'todo conditions)))
4935 (org-agenda-skip-if-todo m end)))
4936 end)))
4938 (defun org-agenda-skip-if-todo (args end)
4939 "Helper function for `org-agenda-skip-if', do not use it directly.
4940 ARGS is a list with first element either `todo', `nottodo',
4941 `todo-unblocked' or `nottodo-unblocked'. The remainder is either
4942 a list of TODO keywords, or a state symbol `todo' or `done' or
4943 `any'."
4944 (let ((todo-re
4945 (concat "^\\*+[ \t]+"
4946 (regexp-opt
4947 (pcase args
4948 (`(,_ todo)
4949 (org-delete-all org-done-keywords
4950 (copy-sequence org-todo-keywords-1)))
4951 (`(,_ done) org-done-keywords)
4952 (`(,_ any) org-todo-keywords-1)
4953 (`(,_ ,(pred atom))
4954 (error "Invalid TODO class or type: %S" args))
4955 (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
4956 (`(,_ ,todo-list) todo-list))
4957 'words))))
4958 (pcase args
4959 (`(todo . ,_)
4960 (let (case-fold-search) (re-search-forward todo-re end t)))
4961 (`(nottodo . ,_)
4962 (not (let (case-fold-search) (re-search-forward todo-re end t))))
4963 (`(todo-unblocked . ,_)
4964 (catch :unblocked
4965 (while (let (case-fold-search) (re-search-forward todo-re end t))
4966 (when (org-entry-blocked-p) (throw :unblocked t)))
4967 nil))
4968 (`(nottodo-unblocked . ,_)
4969 (catch :unblocked
4970 (while (let (case-fold-search) (re-search-forward todo-re end t))
4971 (when (org-entry-blocked-p) (throw :unblocked nil)))
4973 (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
4975 ;;;###autoload
4976 (defun org-agenda-list-stuck-projects (&rest ignore)
4977 "Create agenda view for projects that are stuck.
4978 Stuck projects are project that have no next actions. For the definitions
4979 of what a project is and how to check if it stuck, customize the variable
4980 `org-stuck-projects'."
4981 (interactive)
4982 (let* ((org-agenda-overriding-header
4983 (or org-agenda-overriding-header "List of stuck projects: "))
4984 (matcher (nth 0 org-stuck-projects))
4985 (todo (nth 1 org-stuck-projects))
4986 (tags (nth 2 org-stuck-projects))
4987 (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
4988 (todo-wds
4989 (if (not (member "*" todo)) todo
4990 (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
4991 (org-delete-all org-done-keywords-for-agenda
4992 (copy-sequence org-todo-keywords-for-agenda))))
4993 (todo-re (and todo
4994 (format "^\\*+[ \t]+\\(%s\\)\\>"
4995 (mapconcat #'identity todo-wds "\\|"))))
4996 (tags-re (cond ((null tags) nil)
4997 ((member "*" tags)
4998 (eval-when-compile
4999 (concat org-outline-regexp-bol
5000 ".*:[[:alnum:]_@#%]+:[ \t]*$")))
5001 (tags (concat org-outline-regexp-bol
5002 ".*:\\("
5003 (mapconcat #'identity tags "\\|")
5004 "\\):[[:alnum:]_@#%:]*[ \t]*$"))
5005 (t nil)))
5006 (re-list (delq nil (list todo-re tags-re gen-re)))
5007 (skip-re
5008 (if (null re-list)
5009 (error "Missing information to identify unstuck projects")
5010 (mapconcat #'identity re-list "\\|")))
5011 (org-agenda-skip-function
5012 ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
5013 ;; in the subtree.
5014 `(lambda ()
5015 (and (save-excursion
5016 (let ((case-fold-search nil))
5017 (re-search-forward
5018 ,skip-re (save-excursion (org-end-of-subtree t)) t)))
5019 (progn (outline-next-heading) (point))))))
5020 (org-tags-view nil matcher)
5021 (setq org-agenda-buffer-name (buffer-name))
5022 (with-current-buffer org-agenda-buffer-name
5023 (setq org-agenda-redo-command
5024 `(org-agenda-list-stuck-projects ,current-prefix-arg))
5025 (let ((inhibit-read-only t))
5026 (add-text-properties
5027 (point-min) (point-max)
5028 `(org-redo-cmd ,org-agenda-redo-command))))))
5030 ;;; Diary integration
5032 (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
5033 (defvar diary-list-entries-hook)
5034 (defvar diary-time-regexp)
5035 (defun org-get-entries-from-diary (date)
5036 "Get the (Emacs Calendar) diary entries for DATE."
5037 (require 'diary-lib)
5038 (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
5039 (diary-display-function 'diary-fancy-display)
5040 (pop-up-frames nil)
5041 (diary-list-entries-hook
5042 (cons 'org-diary-default-entry diary-list-entries-hook))
5043 (diary-file-name-prefix nil) ; turn this feature off
5044 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
5045 entries
5046 (org-disable-agenda-to-diary t))
5047 (save-excursion
5048 (save-window-excursion
5049 (funcall (if (fboundp 'diary-list-entries)
5050 'diary-list-entries 'list-diary-entries)
5051 date 1)))
5052 (if (not (get-buffer diary-fancy-buffer))
5053 (setq entries nil)
5054 (with-current-buffer diary-fancy-buffer
5055 (setq buffer-read-only nil)
5056 (if (zerop (buffer-size))
5057 ;; No entries
5058 (setq entries nil)
5059 ;; Omit the date and other unnecessary stuff
5060 (org-agenda-cleanup-fancy-diary)
5061 ;; Add prefix to each line and extend the text properties
5062 (if (zerop (buffer-size))
5063 (setq entries nil)
5064 (setq entries (buffer-substring (point-min) (- (point-max) 1)))
5065 (setq entries
5066 (with-temp-buffer
5067 (insert entries) (goto-char (point-min))
5068 (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
5069 (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
5070 (replace-match (concat "; " (match-string 1)))))
5071 (buffer-string)))))
5072 (set-buffer-modified-p nil)
5073 (kill-buffer diary-fancy-buffer)))
5074 (when entries
5075 (setq entries (org-split-string entries "\n"))
5076 (setq entries
5077 (mapcar
5078 (lambda (x)
5079 (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
5080 ;; Extend the text properties to the beginning of the line
5081 (org-add-props x (text-properties-at (1- (length x)) x)
5082 'type "diary" 'date date 'face 'org-agenda-diary))
5083 entries)))))
5085 (defvar org-agenda-cleanup-fancy-diary-hook nil
5086 "Hook run when the fancy diary buffer is cleaned up.")
5088 (defun org-agenda-cleanup-fancy-diary ()
5089 "Remove unwanted stuff in buffer created by `fancy-diary-display'.
5090 This gets rid of the date, the underline under the date, and the
5091 dummy entry installed by Org mode to ensure non-empty diary for
5092 each date. It also removes lines that contain only whitespace."
5093 (goto-char (point-min))
5094 (if (looking-at ".*?:[ \t]*")
5095 (progn
5096 (replace-match "")
5097 (re-search-forward "\n=+$" nil t)
5098 (replace-match "")
5099 (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
5100 (re-search-forward "\n=+$" nil t)
5101 (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
5102 (goto-char (point-min))
5103 (while (re-search-forward "^ +\n" nil t)
5104 (replace-match ""))
5105 (goto-char (point-min))
5106 (if (re-search-forward "^Org mode dummy\n?" nil t)
5107 (replace-match ""))
5108 (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
5110 ;; Make sure entries from the diary have the right text properties.
5111 (eval-after-load "diary-lib"
5112 '(if (boundp 'diary-modify-entry-list-string-function)
5113 ;; We can rely on the hook, nothing to do
5115 ;; Hook not available, must use advice to make this work
5116 (defadvice add-to-diary-list (before org-mark-diary-entry activate)
5117 "Make the position visible."
5118 (if (and org-disable-agenda-to-diary ;; called from org-agenda
5119 (stringp string)
5120 buffer-file-name)
5121 (setq string (org-modify-diary-entry-string string))))))
5123 (defun org-modify-diary-entry-string (string)
5124 "Add text properties to string, allowing Org to act on it."
5125 (org-add-props string nil
5126 'mouse-face 'highlight
5127 'help-echo (if buffer-file-name
5128 (format "mouse-2 or RET jump to diary file %s"
5129 (abbreviate-file-name buffer-file-name))
5131 'org-agenda-diary-link t
5132 'org-marker (org-agenda-new-marker (point-at-bol))))
5134 (defun org-diary-default-entry ()
5135 "Add a dummy entry to the diary.
5136 Needed to avoid empty dates which mess up holiday display."
5137 ;; Catch the error if dealing with the new add-to-diary-alist
5138 (when org-disable-agenda-to-diary
5139 (condition-case nil
5140 (org-add-to-diary-list original-date "Org mode dummy" "")
5141 (error
5142 (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
5144 (defun org-add-to-diary-list (&rest args)
5145 (if (fboundp 'diary-add-to-list)
5146 (apply 'diary-add-to-list args)
5147 (apply 'add-to-diary-list args)))
5149 (defvar org-diary-last-run-time nil)
5151 ;;;###autoload
5152 (defun org-diary (&rest args)
5153 "Return diary information from org files.
5154 This function can be used in a \"sexp\" diary entry in the Emacs calendar.
5155 It accesses org files and extracts information from those files to be
5156 listed in the diary. The function accepts arguments specifying what
5157 items should be listed. For a list of arguments allowed here, see the
5158 variable `org-agenda-entry-types'.
5160 The call in the diary file should look like this:
5162 &%%(org-diary) ~/path/to/some/orgfile.org
5164 Use a separate line for each org file to check. Or, if you omit the file name,
5165 all files listed in `org-agenda-files' will be checked automatically:
5167 &%%(org-diary)
5169 If you don't give any arguments (as in the example above), the default value
5170 of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
5171 So the example above may also be written as
5173 &%%(org-diary :deadline :timestamp :sexp :scheduled)
5175 The function expects the lisp variables `entry' and `date' to be provided
5176 by the caller, because this is how the calendar works. Don't use this
5177 function from a program - use `org-agenda-get-day-entries' instead."
5178 (when (> (- (float-time)
5179 org-agenda-last-marker-time)
5181 ;; I am not sure if this works with sticky agendas, because the marker
5182 ;; list is then no longer a global variable.
5183 (org-agenda-reset-markers))
5184 (org-compile-prefix-format 'agenda)
5185 (org-set-sorting-strategy 'agenda)
5186 (setq args (or args org-agenda-entry-types))
5187 (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
5188 (list entry)
5189 (org-agenda-files t)))
5190 (time (float-time))
5191 file rtn results)
5192 (when (or (not org-diary-last-run-time)
5193 (> (- time
5194 org-diary-last-run-time)
5196 (org-agenda-prepare-buffers files))
5197 (setq org-diary-last-run-time time)
5198 ;; If this is called during org-agenda, don't return any entries to
5199 ;; the calendar. Org Agenda will list these entries itself.
5200 (if org-disable-agenda-to-diary (setq files nil))
5201 (while (setq file (pop files))
5202 (setq rtn (apply 'org-agenda-get-day-entries file date args))
5203 (setq results (append results rtn)))
5204 (when results
5205 (setq results
5206 (mapcar (lambda (i) (replace-regexp-in-string
5207 org-bracket-link-regexp "\\3" i)) results))
5208 (concat (org-agenda-finalize-entries results) "\n"))))
5210 ;;; Agenda entry finders
5212 (defun org-agenda--timestamp-to-absolute (&rest args)
5213 "Call `org-time-string-to-absolute' with ARGS.
5214 However, throw `:skip' whenever an error is raised."
5215 (condition-case e
5216 (apply #'org-time-string-to-absolute args)
5217 (org-diary-sexp-no-match (throw :skip nil))
5218 (error
5219 (message "%s; Skipping entry" (error-message-string e))
5220 (throw :skip nil))))
5222 (defun org-agenda-get-day-entries (file date &rest args)
5223 "Does the work for `org-diary' and `org-agenda'.
5224 FILE is the path to a file to be checked for entries. DATE is date like
5225 the one returned by `calendar-current-date'. ARGS are symbols indicating
5226 which kind of entries should be extracted. For details about these, see
5227 the documentation of `org-diary'."
5228 (let* ((org-startup-folded nil)
5229 (org-startup-align-all-tables nil)
5230 (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
5231 (error "No such file %s" file))))
5232 (if (not buffer)
5233 ;; If file does not exist, signal it in diary nonetheless.
5234 (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
5235 (with-current-buffer buffer
5236 (unless (derived-mode-p 'org-mode)
5237 (error "Agenda file %s is not in Org mode" file))
5238 (setq org-agenda-buffer (or org-agenda-buffer buffer))
5239 (setf org-agenda-current-date date)
5240 (save-excursion
5241 (save-restriction
5242 (if (eq buffer org-agenda-restrict)
5243 (narrow-to-region org-agenda-restrict-begin
5244 org-agenda-restrict-end)
5245 (widen))
5246 ;; Rationalize ARGS. Also make sure `:deadline' comes
5247 ;; first in order to populate DEADLINES before passing it.
5249 ;; We use `delq' since `org-uniquify' duplicates ARGS,
5250 ;; guarding us from modifying `org-agenda-entry-types'.
5251 (setf args (org-uniquify (or args org-agenda-entry-types)))
5252 (when (and (memq :scheduled args) (memq :scheduled* args))
5253 (setf args (delq :scheduled* args)))
5254 (cond
5255 ((memq :deadline args)
5256 (setf args (cons :deadline
5257 (delq :deadline (delq :deadline* args)))))
5258 ((memq :deadline* args)
5259 (setf args (cons :deadline* (delq :deadline* args)))))
5260 ;; Collect list of headlines. Return them flattened.
5261 (let ((case-fold-search nil) results deadlines)
5262 (dolist (arg args (apply #'nconc (nreverse results)))
5263 (pcase arg
5264 ((and :todo (guard (org-agenda-today-p date)))
5265 (push (org-agenda-get-todos) results))
5266 (:timestamp
5267 (push (org-agenda-get-blocks) results)
5268 (push (org-agenda-get-timestamps deadlines) results))
5269 (:sexp
5270 (push (org-agenda-get-sexps) results))
5271 (:scheduled
5272 (push (org-agenda-get-scheduled deadlines) results))
5273 (:scheduled*
5274 (push (org-agenda-get-scheduled deadlines t) results))
5275 (:closed
5276 (push (org-agenda-get-progress) results))
5277 (:deadline
5278 (setf deadlines (org-agenda-get-deadlines))
5279 (push deadlines results))
5280 (:deadline*
5281 (setf deadlines (org-agenda-get-deadlines t))
5282 (push deadlines results)))))))))))
5284 (defsubst org-em (x y list)
5285 "Is X or Y a member of LIST?"
5286 (or (memq x list) (memq y list)))
5288 (defvar org-heading-keyword-regexp-format) ; defined in org.el
5289 (defvar org-agenda-sorting-strategy-selected nil)
5291 (defun org-agenda-entry-get-agenda-timestamp (pom)
5292 "Retrieve timestamp information for sorting agenda views.
5293 Given a point or marker POM, returns a cons cell of the timestamp
5294 and the timestamp type relevant for the sorting strategy in
5295 `org-agenda-sorting-strategy-selected'."
5296 (let (ts ts-date-type)
5297 (save-match-data
5298 (cond ((org-em 'scheduled-up 'scheduled-down
5299 org-agenda-sorting-strategy-selected)
5300 (setq ts (org-entry-get pom "SCHEDULED")
5301 ts-date-type " scheduled"))
5302 ((org-em 'deadline-up 'deadline-down
5303 org-agenda-sorting-strategy-selected)
5304 (setq ts (org-entry-get pom "DEADLINE")
5305 ts-date-type " deadline"))
5306 ((org-em 'ts-up 'ts-down
5307 org-agenda-sorting-strategy-selected)
5308 (setq ts (org-entry-get pom "TIMESTAMP")
5309 ts-date-type " timestamp"))
5310 ((org-em 'tsia-up 'tsia-down
5311 org-agenda-sorting-strategy-selected)
5312 (setq ts (org-entry-get pom "TIMESTAMP_IA")
5313 ts-date-type " timestamp_ia"))
5314 ((org-em 'timestamp-up 'timestamp-down
5315 org-agenda-sorting-strategy-selected)
5316 (setq ts (or (org-entry-get pom "SCHEDULED")
5317 (org-entry-get pom "DEADLINE")
5318 (org-entry-get pom "TIMESTAMP")
5319 (org-entry-get pom "TIMESTAMP_IA"))
5320 ts-date-type ""))
5321 (t (setq ts-date-type "")))
5322 (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
5323 ts-date-type))))
5325 (defun org-agenda-get-todos ()
5326 "Return the TODO information for agenda display."
5327 (let* ((props (list 'face nil
5328 'done-face 'org-agenda-done
5329 'org-not-done-regexp org-not-done-regexp
5330 'org-todo-regexp org-todo-regexp
5331 'org-complex-heading-regexp org-complex-heading-regexp
5332 'mouse-face 'highlight
5333 'help-echo
5334 (format "mouse-2 or RET jump to org file %s"
5335 (abbreviate-file-name buffer-file-name))))
5336 (case-fold-search nil)
5337 (regexp (format org-heading-keyword-regexp-format
5338 (cond
5339 ((and org-select-this-todo-keyword
5340 (equal org-select-this-todo-keyword "*"))
5341 org-todo-regexp)
5342 (org-select-this-todo-keyword
5343 (concat "\\("
5344 (mapconcat 'identity
5345 (org-split-string
5346 org-select-this-todo-keyword
5347 "|")
5348 "\\|") "\\)"))
5349 (t org-not-done-regexp))))
5350 marker priority category level tags todo-state
5351 ts-date ts-date-type ts-date-pair
5352 ee txt beg end inherited-tags todo-state-end-pos)
5353 (goto-char (point-min))
5354 (while (re-search-forward regexp nil t)
5355 (catch :skip
5356 (save-match-data
5357 (beginning-of-line)
5358 (org-agenda-skip)
5359 (setq beg (point) end (save-excursion (outline-next-heading) (point)))
5360 (unless (and (setq todo-state (org-get-todo-state))
5361 (setq todo-state-end-pos (match-end 2)))
5362 (goto-char end)
5363 (throw :skip nil))
5364 (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
5365 (goto-char (1+ beg))
5366 (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
5367 (throw :skip nil)))
5368 (goto-char (match-beginning 2))
5369 (setq marker (org-agenda-new-marker (match-beginning 0))
5370 category (org-get-category)
5371 ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
5372 ts-date (car ts-date-pair)
5373 ts-date-type (cdr ts-date-pair)
5374 txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
5375 inherited-tags
5376 (or (eq org-agenda-show-inherited-tags 'always)
5377 (and (listp org-agenda-show-inherited-tags)
5378 (memq 'todo org-agenda-show-inherited-tags))
5379 (and (eq org-agenda-show-inherited-tags t)
5380 (or (eq org-agenda-use-tag-inheritance t)
5381 (memq 'todo org-agenda-use-tag-inheritance))))
5382 tags (org-get-tags-at nil (not inherited-tags))
5383 level (make-string (org-reduced-level (org-outline-level)) ? )
5384 txt (org-agenda-format-item "" txt level category tags t)
5385 priority (1+ (org-get-priority txt)))
5386 (org-add-props txt props
5387 'org-marker marker 'org-hd-marker marker
5388 'priority priority
5389 'level level
5390 'ts-date ts-date
5391 'type (concat "todo" ts-date-type) 'todo-state todo-state)
5392 (push txt ee)
5393 (if org-agenda-todo-list-sublevels
5394 (goto-char todo-state-end-pos)
5395 (org-end-of-subtree 'invisible))))
5396 (nreverse ee)))
5398 (defun org-agenda-todo-custom-ignore-p (time n)
5399 "Check whether timestamp is farther away than n number of days.
5400 This function is invoked if `org-agenda-todo-ignore-deadlines',
5401 `org-agenda-todo-ignore-scheduled' or
5402 `org-agenda-todo-ignore-timestamp' is set to an integer."
5403 (let ((days (org-time-stamp-to-now
5404 time org-agenda-todo-ignore-time-comparison-use-seconds)))
5405 (if (>= n 0)
5406 (>= days n)
5407 (<= days n))))
5409 ;;;###autoload
5410 (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
5411 (&optional end)
5412 "Do we have a reason to ignore this TODO entry because it has a time stamp?"
5413 (when (or org-agenda-todo-ignore-with-date
5414 org-agenda-todo-ignore-scheduled
5415 org-agenda-todo-ignore-deadlines
5416 org-agenda-todo-ignore-timestamp)
5417 (setq end (or end (save-excursion (outline-next-heading) (point))))
5418 (save-excursion
5419 (or (and org-agenda-todo-ignore-with-date
5420 (re-search-forward org-ts-regexp end t))
5421 (and org-agenda-todo-ignore-scheduled
5422 (re-search-forward org-scheduled-time-regexp end t)
5423 (cond
5424 ((eq org-agenda-todo-ignore-scheduled 'future)
5425 (> (org-time-stamp-to-now
5426 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5427 ((eq org-agenda-todo-ignore-scheduled 'past)
5428 (<= (org-time-stamp-to-now
5429 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5430 ((numberp org-agenda-todo-ignore-scheduled)
5431 (org-agenda-todo-custom-ignore-p
5432 (match-string 1) org-agenda-todo-ignore-scheduled))
5433 (t)))
5434 (and org-agenda-todo-ignore-deadlines
5435 (re-search-forward org-deadline-time-regexp end t)
5436 (cond
5437 ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
5438 ((eq org-agenda-todo-ignore-deadlines 'far)
5439 (not (org-deadline-close-p (match-string 1))))
5440 ((eq org-agenda-todo-ignore-deadlines 'future)
5441 (> (org-time-stamp-to-now
5442 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5443 ((eq org-agenda-todo-ignore-deadlines 'past)
5444 (<= (org-time-stamp-to-now
5445 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5446 ((numberp org-agenda-todo-ignore-deadlines)
5447 (org-agenda-todo-custom-ignore-p
5448 (match-string 1) org-agenda-todo-ignore-deadlines))
5449 (t (org-deadline-close-p (match-string 1)))))
5450 (and org-agenda-todo-ignore-timestamp
5451 (let ((buffer (current-buffer))
5452 (regexp
5453 (concat
5454 org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
5455 (start (point)))
5456 ;; Copy current buffer into a temporary one
5457 (with-temp-buffer
5458 (insert-buffer-substring buffer start end)
5459 (goto-char (point-min))
5460 ;; Delete SCHEDULED and DEADLINE items
5461 (while (re-search-forward regexp end t)
5462 (delete-region (match-beginning 0) (match-end 0)))
5463 (goto-char (point-min))
5464 ;; No search for timestamp left
5465 (when (re-search-forward org-ts-regexp nil t)
5466 (cond
5467 ((eq org-agenda-todo-ignore-timestamp 'future)
5468 (> (org-time-stamp-to-now
5469 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5470 ((eq org-agenda-todo-ignore-timestamp 'past)
5471 (<= (org-time-stamp-to-now
5472 (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
5473 ((numberp org-agenda-todo-ignore-timestamp)
5474 (org-agenda-todo-custom-ignore-p
5475 (match-string 1) org-agenda-todo-ignore-timestamp))
5476 (t))))))))))
5478 (defun org-agenda-get-timestamps (&optional deadlines)
5479 "Return the date stamp information for agenda display.
5480 Optional argument DEADLINES is a list of deadline items to be
5481 displayed in agenda view."
5482 (let* ((props (list 'face 'org-agenda-calendar-event
5483 'org-not-done-regexp org-not-done-regexp
5484 'org-todo-regexp org-todo-regexp
5485 'org-complex-heading-regexp org-complex-heading-regexp
5486 'mouse-face 'highlight
5487 'help-echo
5488 (format "mouse-2 or RET jump to Org file %s"
5489 (abbreviate-file-name buffer-file-name))))
5490 (current (calendar-absolute-from-gregorian date))
5491 (today (org-today))
5492 (deadline-position-alist
5493 (mapcar (lambda (d)
5494 (let ((m (get-text-property 0 'org-hd-marker d)))
5495 (and m (marker-position m))))
5496 deadlines))
5497 ;; Match time-stamps set to current date, time-stamps with
5498 ;; a repeater, and S-exp time-stamps.
5499 (regexp
5500 (concat
5501 (if org-agenda-include-inactive-timestamps "[[<]" "<")
5502 (regexp-quote
5503 (substring
5504 (format-time-string
5505 (car org-time-stamp-formats)
5506 (apply #'encode-time ; DATE bound by calendar
5507 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5508 1 11))
5509 "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
5510 "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
5511 timestamp-items)
5512 (goto-char (point-min))
5513 (while (re-search-forward regexp nil t)
5514 ;; Skip date ranges, scheduled and deadlines, which are handled
5515 ;; specially. Also skip time-stamps before first headline as
5516 ;; there would be no entry to add to the agenda. Eventually,
5517 ;; ignore clock entries.
5518 (catch :skip
5519 (save-match-data
5520 (when (or (org-at-date-range-p)
5521 (org-at-planning-p)
5522 (org-before-first-heading-p)
5523 (and org-agenda-include-inactive-timestamps
5524 (org-at-clock-log-p)))
5525 (throw :skip nil))
5526 (org-agenda-skip))
5527 (let* ((pos (match-beginning 0))
5528 (repeat (match-string 1))
5529 (sexp-entry (match-string 3))
5530 (time-stamp (if (or repeat sexp-entry) (match-string 0)
5531 (save-excursion
5532 (goto-char pos)
5533 (looking-at org-ts-regexp-both)
5534 (match-string 0))))
5535 (todo-state (org-get-todo-state))
5536 (warntime (get-text-property (point) 'org-appt-warntime))
5537 (done? (member todo-state org-done-keywords)))
5538 ;; Possibly skip done tasks.
5539 (when (and done? org-agenda-skip-timestamp-if-done)
5540 (throw :skip t))
5541 ;; S-exp entry doesn't match current day: skip it.
5542 (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
5543 (throw :skip nil))
5544 (when repeat
5545 (let* ((past
5546 ;; A repeating time stamp is shown at its base
5547 ;; date and every repeated date up to TODAY. If
5548 ;; `org-agenda-prefer-last-repeat' is non-nil,
5549 ;; however, only the last repeat before today
5550 ;; (inclusive) is shown.
5551 (org-agenda--timestamp-to-absolute
5552 repeat
5553 (if (or (> current today)
5554 (eq org-agenda-prefer-last-repeat t)
5555 (member todo-state org-agenda-prefer-last-repeat))
5556 today
5557 current)
5558 'past (current-buffer) pos))
5559 (future
5560 ;; Display every repeated date past TODAY
5561 ;; (exclusive) unless
5562 ;; `org-agenda-show-future-repeats' is nil. If
5563 ;; this variable is set to `next', only display
5564 ;; the first repeated date after TODAY
5565 ;; (exclusive).
5566 (cond
5567 ((<= current today) past)
5568 ((not org-agenda-show-future-repeats) past)
5570 (let ((base (if (eq org-agenda-show-future-repeats 'next)
5571 (1+ today)
5572 current)))
5573 (org-agenda--timestamp-to-absolute
5574 repeat base 'future (current-buffer) pos))))))
5575 (when (and (/= current past) (/= current future))
5576 (throw :skip nil))))
5577 (save-excursion
5578 (re-search-backward org-outline-regexp-bol nil t)
5579 ;; Possibly skip time-stamp when a deadline is set.
5580 (when (and org-agenda-skip-timestamp-if-deadline-is-shown
5581 (assq (point) deadline-position-alist))
5582 (throw :skip nil))
5583 (let* ((category (org-get-category pos))
5584 (inherited-tags
5585 (or (eq org-agenda-show-inherited-tags 'always)
5586 (and (consp org-agenda-show-inherited-tags)
5587 (memq 'agenda org-agenda-show-inherited-tags))
5588 (and (eq org-agenda-show-inherited-tags t)
5589 (or (eq org-agenda-use-tag-inheritance t)
5590 (memq 'agenda
5591 org-agenda-use-tag-inheritance)))))
5592 (tags (org-get-tags-at nil (not inherited-tags)))
5593 (level (make-string (org-reduced-level (org-outline-level))
5594 ?\s))
5595 (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
5596 (match-string 1)))
5597 (inactive? (= (char-after pos) ?\[))
5598 (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
5599 (item
5600 (org-agenda-format-item
5601 (and inactive? org-agenda-inactive-leader)
5602 head level category tags time-stamp org-ts-regexp habit?)))
5603 (org-add-props item props
5604 'priority (if habit?
5605 (org-habit-get-priority (org-habit-parse-todo))
5606 (org-get-priority item))
5607 'org-marker (org-agenda-new-marker pos)
5608 'org-hd-marker (org-agenda-new-marker)
5609 'date date
5610 'level level
5611 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
5612 current)
5613 'todo-state todo-state
5614 'warntime warntime
5615 'type "timestamp")
5616 (push item timestamp-items))))
5617 (when org-agenda-skip-additional-timestamps-same-entry
5618 (outline-next-heading))))
5619 (nreverse timestamp-items)))
5621 (defun org-agenda-get-sexps ()
5622 "Return the sexp information for agenda display."
5623 (require 'diary-lib)
5624 (let* ((props (list 'face 'org-agenda-calendar-sexp
5625 'mouse-face 'highlight
5626 'help-echo
5627 (format "mouse-2 or RET jump to org file %s"
5628 (abbreviate-file-name buffer-file-name))))
5629 (regexp "^&?%%(")
5630 marker category extra level ee txt tags entry
5631 result beg b sexp sexp-entry todo-state warntime inherited-tags)
5632 (goto-char (point-min))
5633 (while (re-search-forward regexp nil t)
5634 (catch :skip
5635 (org-agenda-skip)
5636 (setq beg (match-beginning 0))
5637 (goto-char (1- (match-end 0)))
5638 (setq b (point))
5639 (forward-sexp 1)
5640 (setq sexp (buffer-substring b (point)))
5641 (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
5642 (org-trim (match-string 1))
5643 ""))
5644 (setq result (org-diary-sexp-entry sexp sexp-entry date))
5645 (when result
5646 (setq marker (org-agenda-new-marker beg)
5647 level (make-string (org-reduced-level (org-outline-level)) ? )
5648 category (org-get-category beg)
5649 inherited-tags
5650 (or (eq org-agenda-show-inherited-tags 'always)
5651 (and (listp org-agenda-show-inherited-tags)
5652 (memq 'agenda org-agenda-show-inherited-tags))
5653 (and (eq org-agenda-show-inherited-tags t)
5654 (or (eq org-agenda-use-tag-inheritance t)
5655 (memq 'agenda org-agenda-use-tag-inheritance))))
5656 tags (org-get-tags-at nil (not inherited-tags))
5657 todo-state (org-get-todo-state)
5658 warntime (get-text-property (point) 'org-appt-warntime)
5659 extra nil)
5661 (dolist (r (if (stringp result)
5662 (list result)
5663 result)) ;; we expect a list here
5664 (when (and org-agenda-diary-sexp-prefix
5665 (string-match org-agenda-diary-sexp-prefix r))
5666 (setq extra (match-string 0 r)
5667 r (replace-match "" nil nil r)))
5668 (if (string-match "\\S-" r)
5669 (setq txt r)
5670 (setq txt "SEXP entry returned empty string"))
5671 (setq txt (org-agenda-format-item extra txt level category tags 'time))
5672 (org-add-props txt props 'org-marker marker
5673 'date date 'todo-state todo-state
5674 'level level 'type "sexp" 'warntime warntime)
5675 (push txt ee)))))
5676 (nreverse ee)))
5678 ;; Calendar sanity: define some functions that are independent of
5679 ;; `calendar-date-style'.
5680 (defun org-anniversary (year month day &optional mark)
5681 "Like `diary-anniversary', but with fixed (ISO) order of arguments."
5682 (with-no-warnings
5683 (let ((calendar-date-style 'iso))
5684 (diary-anniversary year month day mark))))
5685 (defun org-cyclic (N year month day &optional mark)
5686 "Like `diary-cyclic', but with fixed (ISO) order of arguments."
5687 (with-no-warnings
5688 (let ((calendar-date-style 'iso))
5689 (diary-cyclic N year month day mark))))
5690 (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
5691 "Like `diary-block', but with fixed (ISO) order of arguments."
5692 (with-no-warnings
5693 (let ((calendar-date-style 'iso))
5694 (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
5695 (defun org-date (year month day &optional mark)
5696 "Like `diary-date', but with fixed (ISO) order of arguments."
5697 (with-no-warnings
5698 (let ((calendar-date-style 'iso))
5699 (diary-date year month day mark))))
5701 ;; Define the `org-class' function
5702 (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
5703 "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
5704 DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
5705 SKIP-WEEKS is any number of ISO weeks in the block period for which the
5706 item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
5707 `holidays', then any date that is known by the Emacs calendar to be a
5708 holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
5709 then those holidays will be skipped."
5710 (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
5711 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
5712 (d (calendar-absolute-from-gregorian date))
5713 (h (when skip-weeks (calendar-check-holidays date))))
5714 (and
5715 (<= date1 d)
5716 (<= d date2)
5717 (= (calendar-day-of-week date) dayname)
5718 (or (not skip-weeks)
5719 (progn
5720 (require 'cal-iso)
5721 (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
5722 (not (or (and h (memq 'holidays skip-weeks))
5723 (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
5724 entry)))
5726 (defalias 'org-get-closed 'org-agenda-get-progress)
5727 (defun org-agenda-get-progress ()
5728 "Return the logged TODO entries for agenda display."
5729 (let* ((props (list 'mouse-face 'highlight
5730 'org-not-done-regexp org-not-done-regexp
5731 'org-todo-regexp org-todo-regexp
5732 'org-complex-heading-regexp org-complex-heading-regexp
5733 'help-echo
5734 (format "mouse-2 or RET jump to org file %s"
5735 (abbreviate-file-name buffer-file-name))))
5736 (items (if (consp org-agenda-show-log-scoped)
5737 org-agenda-show-log-scoped
5738 (if (eq org-agenda-show-log-scoped 'clockcheck)
5739 '(clock)
5740 org-agenda-log-mode-items)))
5741 (parts
5742 (delq nil
5743 (list
5744 (if (memq 'closed items) (concat "\\<" org-closed-string))
5745 (if (memq 'clock items) (concat "\\<" org-clock-string))
5746 (if (memq 'state items)
5747 (format "- State \"%s\".*?" org-todo-regexp)))))
5748 (parts-re (if parts (mapconcat 'identity parts "\\|")
5749 (error "`org-agenda-log-mode-items' is empty")))
5750 (regexp (concat
5751 "\\(" parts-re "\\)"
5752 " *\\["
5753 (regexp-quote
5754 (substring
5755 (format-time-string
5756 (car org-time-stamp-formats)
5757 (apply 'encode-time ; DATE bound by calendar
5758 (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
5759 1 11))))
5760 (org-agenda-search-headline-for-time nil)
5761 marker hdmarker priority category level tags closedp
5762 statep clockp state ee txt extra timestr rest clocked inherited-tags)
5763 (goto-char (point-min))
5764 (while (re-search-forward regexp nil t)
5765 (catch :skip
5766 (org-agenda-skip)
5767 (setq marker (org-agenda-new-marker (match-beginning 0))
5768 closedp (equal (match-string 1) org-closed-string)
5769 statep (equal (string-to-char (match-string 1)) ?-)
5770 clockp (not (or closedp statep))
5771 state (and statep (match-string 2))
5772 category (org-get-category (match-beginning 0))
5773 timestr (buffer-substring (match-beginning 0) (point-at-eol)))
5774 (when (string-match "\\]" timestr)
5775 ;; substring should only run to end of time stamp
5776 (setq rest (substring timestr (match-end 0))
5777 timestr (substring timestr 0 (match-end 0)))
5778 (if (and (not closedp) (not statep)
5779 (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
5780 rest))
5781 (progn (setq timestr (concat (substring timestr 0 -1)
5782 "-" (match-string 1 rest) "]"))
5783 (setq clocked (match-string 2 rest)))
5784 (setq clocked "-")))
5785 (save-excursion
5786 (setq extra
5787 (cond
5788 ((not org-agenda-log-mode-add-notes) nil)
5789 (statep
5790 (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
5791 (match-string 1)))
5792 (clockp
5793 (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
5794 (match-string 1)))))
5795 (if (not (re-search-backward org-outline-regexp-bol nil t))
5796 (throw :skip nil)
5797 (goto-char (match-beginning 0))
5798 (setq hdmarker (org-agenda-new-marker)
5799 inherited-tags
5800 (or (eq org-agenda-show-inherited-tags 'always)
5801 (and (listp org-agenda-show-inherited-tags)
5802 (memq 'todo org-agenda-show-inherited-tags))
5803 (and (eq org-agenda-show-inherited-tags t)
5804 (or (eq org-agenda-use-tag-inheritance t)
5805 (memq 'todo org-agenda-use-tag-inheritance))))
5806 tags (org-get-tags-at nil (not inherited-tags))
5807 level (make-string (org-reduced-level (org-outline-level)) ? ))
5808 (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
5809 (setq txt (match-string 1))
5810 (when extra
5811 (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
5812 (setq txt (concat (substring txt 0 (match-beginning 1))
5813 " - " extra " " (match-string 2 txt)))
5814 (setq txt (concat txt " - " extra))))
5815 (setq txt (org-agenda-format-item
5816 (cond
5817 (closedp "Closed: ")
5818 (statep (concat "State: (" state ")"))
5819 (t (concat "Clocked: (" clocked ")")))
5820 txt level category tags timestr)))
5821 (setq priority 100000)
5822 (org-add-props txt props
5823 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
5824 'priority priority 'level level
5825 'type "closed" 'date date
5826 'undone-face 'org-warning 'done-face 'org-agenda-done)
5827 (push txt ee))
5828 (goto-char (point-at-eol))))
5829 (nreverse ee)))
5831 (defun org-agenda-show-clocking-issues ()
5832 "Add overlays, showing issues with clocking.
5833 See also the user option `org-agenda-clock-consistency-checks'."
5834 (interactive)
5835 (let* ((pl org-agenda-clock-consistency-checks)
5836 (re (concat "^[ \t]*"
5837 org-clock-string
5838 "[ \t]+"
5839 "\\(\\[.*?\\]\\)" ; group 1 is first stamp
5840 "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
5841 (tlstart 0.)
5842 (tlend 0.)
5843 (maxtime (org-duration-to-minutes
5844 (or (plist-get pl :max-duration) "24:00")))
5845 (mintime (org-duration-to-minutes
5846 (or (plist-get pl :min-duration) 0)))
5847 (maxgap (org-duration-to-minutes
5848 ;; default 30:00 means never complain
5849 (or (plist-get pl :max-gap) "30:00")))
5850 (gapok (mapcar #'org-duration-to-minutes
5851 (plist-get pl :gap-ok-around)))
5852 (def-face (or (plist-get pl :default-face)
5853 '((:background "DarkRed") (:foreground "white"))))
5854 issue face m te ts dt ov)
5855 (goto-char (point-min))
5856 (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
5857 (setq issue nil face def-face)
5858 (catch 'next
5859 (setq m (org-get-at-bol 'org-marker)
5860 te nil ts nil)
5861 (unless (and m (markerp m))
5862 (setq issue "No valid clock line") (throw 'next t))
5863 (org-with-point-at m
5864 (save-excursion
5865 (goto-char (point-at-bol))
5866 (unless (looking-at re)
5867 (error "No valid Clock line")
5868 (throw 'next t))
5869 (unless (match-end 3)
5870 (setq issue "No end time"
5871 face (or (plist-get pl :no-end-time-face) face))
5872 (throw 'next t))
5873 (setq ts (match-string 1)
5874 te (match-string 3)
5875 ts (float-time
5876 (apply #'encode-time (org-parse-time-string ts)))
5877 te (float-time
5878 (apply #'encode-time (org-parse-time-string te)))
5879 dt (- te ts))))
5880 (cond
5881 ((> dt (* 60 maxtime))
5882 ;; a very long clocking chunk
5883 (setq issue (format "Clocking interval is very long: %s"
5884 (org-duration-from-minutes (floor (/ dt 60.))))
5885 face (or (plist-get pl :long-face) face)))
5886 ((< dt (* 60 mintime))
5887 ;; a very short clocking chunk
5888 (setq issue (format "Clocking interval is very short: %s"
5889 (org-duration-from-minutes (floor (/ dt 60.))))
5890 face (or (plist-get pl :short-face) face)))
5891 ((and (> tlend 0) (< ts tlend))
5892 ;; Two clock entries are overlapping
5893 (setq issue (format "Clocking overlap: %d minutes"
5894 (/ (- tlend ts) 60))
5895 face (or (plist-get pl :overlap-face) face)))
5896 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
5897 ;; There is a gap, lets see if we need to report it
5898 (unless (org-agenda-check-clock-gap tlend ts gapok)
5899 (setq issue (format "Clocking gap: %d minutes"
5900 (/ (- ts tlend) 60))
5901 face (or (plist-get pl :gap-face) face))))
5902 (t nil)))
5903 (setq tlend (or te tlend) tlstart (or ts tlstart))
5904 (when issue
5905 ;; OK, there was some issue, add an overlay to show the issue
5906 (setq ov (make-overlay (point-at-bol) (point-at-eol)))
5907 (overlay-put ov 'before-string
5908 (concat
5909 (org-add-props
5910 (format "%-43s" (concat " " issue))
5912 'face face)
5913 "\n"))
5914 (overlay-put ov 'evaporate t)))))
5916 (defun org-agenda-check-clock-gap (t1 t2 ok-list)
5917 "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
5918 (catch 'exit
5919 (unless ok-list
5920 ;; there are no OK times for gaps...
5921 (throw 'exit nil))
5922 (if (> (- (/ t2 36000) (/ t1 36000)) 24)
5923 ;; This is more than 24 hours, so it is OK.
5924 ;; because we have at least one OK time, that must be in the
5925 ;; 24 hour interval.
5926 (throw 'exit t))
5927 ;; We have a shorter gap.
5928 ;; Now we have to get the minute of the day when these times are
5929 (let* ((t1dec (decode-time (seconds-to-time t1)))
5930 (t2dec (decode-time (seconds-to-time t2)))
5931 ;; compute the minute on the day
5932 (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
5933 (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
5934 (when (< min2 min1)
5935 ;; if min2 is smaller than min1, this means it is on the next day.
5936 ;; Wrap it to after midnight.
5937 (setq min2 (+ min2 1440)))
5938 ;; Now check if any of the OK times is in the gap
5939 (mapc (lambda (x)
5940 ;; Wrap the time to after midnight if necessary
5941 (if (< x min1) (setq x (+ x 1440)))
5942 ;; Check if in interval
5943 (and (<= min1 x) (>= min2 x) (throw 'exit t)))
5944 ok-list)
5945 ;; Nope, this gap is not OK
5946 nil)))
5948 (defun org-agenda-get-deadlines (&optional with-hour)
5949 "Return the deadline information for agenda display.
5950 When WITH-HOUR is non-nil, only return deadlines with an hour
5951 specification like [h]h:mm."
5952 (let* ((props (list 'mouse-face 'highlight
5953 'org-not-done-regexp org-not-done-regexp
5954 'org-todo-regexp org-todo-regexp
5955 'org-complex-heading-regexp org-complex-heading-regexp
5956 'help-echo
5957 (format "mouse-2 or RET jump to org file %s"
5958 (abbreviate-file-name buffer-file-name))))
5959 (regexp (if with-hour
5960 org-deadline-time-hour-regexp
5961 org-deadline-time-regexp))
5962 (today (org-today))
5963 (today? (org-agenda-today-p date)) ; DATE bound by calendar.
5964 (current (calendar-absolute-from-gregorian date))
5965 deadline-items)
5966 (goto-char (point-min))
5967 (while (re-search-forward regexp nil t)
5968 (catch :skip
5969 (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
5970 (org-agenda-skip)
5971 (let* ((s (match-string 1))
5972 (pos (1- (match-beginning 1)))
5973 (todo-state (save-match-data (org-get-todo-state)))
5974 (done? (member todo-state org-done-keywords))
5975 (sexp? (string-prefix-p "%%" s))
5976 ;; DEADLINE is the deadline date for the entry. It is
5977 ;; either the base date or the last repeat, according
5978 ;; to `org-agenda-prefer-last-repeat'.
5979 (deadline
5980 (cond
5981 (sexp? (org-agenda--timestamp-to-absolute s current))
5982 ((or (eq org-agenda-prefer-last-repeat t)
5983 (member todo-state org-agenda-prefer-last-repeat))
5984 (org-agenda--timestamp-to-absolute
5985 s today 'past (current-buffer) pos))
5986 (t (org-agenda--timestamp-to-absolute s))))
5987 ;; REPEAT is the future repeat closest from CURRENT,
5988 ;; according to `org-agenda-show-future-repeats'. If
5989 ;; the latter is nil, or if the time stamp has no
5990 ;; repeat part, default to DEADLINE.
5991 (repeat
5992 (cond
5993 (sexp? deadline)
5994 ((<= current today) deadline)
5995 ((not org-agenda-show-future-repeats) deadline)
5997 (let ((base (if (eq org-agenda-show-future-repeats 'next)
5998 (1+ today)
5999 current)))
6000 (org-agenda--timestamp-to-absolute
6001 s base 'future (current-buffer) pos)))))
6002 (diff (- deadline current))
6003 (suppress-prewarning
6004 (let ((scheduled
6005 (and org-agenda-skip-deadline-prewarning-if-scheduled
6006 (org-entry-get nil "SCHEDULED"))))
6007 (cond
6008 ((not scheduled) nil)
6009 ;; The current item has a scheduled date, so
6010 ;; evaluate its prewarning lead time.
6011 ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
6012 ;; Use global prewarning-restart lead time.
6013 org-agenda-skip-deadline-prewarning-if-scheduled)
6014 ((eq org-agenda-skip-deadline-prewarning-if-scheduled
6015 'pre-scheduled)
6016 ;; Set pre-warning to no earlier than SCHEDULED.
6017 (min (- deadline
6018 (org-agenda--timestamp-to-absolute scheduled))
6019 org-deadline-warning-days))
6020 ;; Set pre-warning to deadline.
6021 (t 0))))
6022 (wdays (if suppress-prewarning
6023 (let ((org-deadline-warning-days suppress-prewarning))
6024 (org-get-wdays s))
6025 (org-get-wdays s))))
6026 (cond
6027 ;; Only display deadlines at their base date, at future
6028 ;; repeat occurrences or in today agenda.
6029 ((= current deadline) nil)
6030 ((= current repeat) nil)
6031 ((not today?) (throw :skip nil))
6032 ;; Upcoming deadline: display within warning period WDAYS.
6033 ((> deadline current) (when (> diff wdays) (throw :skip nil)))
6034 ;; Overdue deadline: warn about it for
6035 ;; `org-deadline-past-days' duration.
6036 (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
6037 ;; Possibly skip done tasks.
6038 (when (and done?
6039 (or org-agenda-skip-deadline-if-done
6040 (/= deadline current)))
6041 (throw :skip nil))
6042 (save-excursion
6043 (re-search-backward "^\\*+[ \t]+" nil t)
6044 (goto-char (match-end 0))
6045 (let* ((category (org-get-category))
6046 (level (make-string (org-reduced-level (org-outline-level))
6047 ?\s))
6048 (head (buffer-substring (point) (line-end-position)))
6049 (inherited-tags
6050 (or (eq org-agenda-show-inherited-tags 'always)
6051 (and (listp org-agenda-show-inherited-tags)
6052 (memq 'agenda org-agenda-show-inherited-tags))
6053 (and (eq org-agenda-show-inherited-tags t)
6054 (or (eq org-agenda-use-tag-inheritance t)
6055 (memq 'agenda
6056 org-agenda-use-tag-inheritance)))))
6057 (tags (org-get-tags-at nil (not inherited-tags)))
6058 (time
6059 (cond
6060 ;; No time of day designation if it is only
6061 ;; a reminder.
6062 ((and (/= current deadline) (/= current repeat)) nil)
6063 ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6064 (concat (substring s (match-beginning 1)) " "))
6065 (t 'time)))
6066 (item
6067 (org-agenda-format-item
6068 ;; Insert appropriate suffixes before deadlines.
6069 ;; Those only apply to today agenda.
6070 (pcase-let ((`(,now ,future ,past)
6071 org-agenda-deadline-leaders))
6072 (cond
6073 ((and today? (< deadline today)) (format past (- diff)))
6074 ((and today? (> deadline today)) (format future diff))
6075 (t now)))
6076 head level category tags time))
6077 (face (org-agenda-deadline-face
6078 (- 1 (/ (float diff) (max wdays 1)))))
6079 (upcoming? (and today? (> deadline today)))
6080 (warntime (get-text-property (point) 'org-appt-warntime)))
6081 (org-add-props item props
6082 'org-marker (org-agenda-new-marker pos)
6083 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
6084 'warntime warntime
6085 'level level
6086 'ts-date deadline
6087 'priority
6088 ;; Adjust priority to today reminders about deadlines.
6089 ;; Overdue deadlines get the highest priority
6090 ;; increase, then imminent deadlines and eventually
6091 ;; more distant deadlines.
6092 (let ((adjust (if today? (- diff) 0)))
6093 (+ adjust (org-get-priority item)))
6094 'todo-state todo-state
6095 'type (if upcoming? "upcoming-deadline" "deadline")
6096 'date (if upcoming? date deadline)
6097 'face (if done? 'org-agenda-done face)
6098 'undone-face face
6099 'done-face 'org-agenda-done)
6100 (push item deadline-items))))))
6101 (nreverse deadline-items)))
6103 (defun org-agenda-deadline-face (fraction)
6104 "Return the face to displaying a deadline item.
6105 FRACTION is what fraction of the head-warning time has passed."
6106 (assoc-default fraction org-agenda-deadline-faces #'<=))
6108 (defun org-agenda-get-scheduled (&optional deadlines with-hour)
6109 "Return the scheduled information for agenda display.
6110 Optional argument DEADLINES is a list of deadline items to be
6111 displayed in agenda view. When WITH-HOUR is non-nil, only return
6112 scheduled items with an hour specification like [h]h:mm."
6113 (let* ((props (list 'org-not-done-regexp org-not-done-regexp
6114 'org-todo-regexp org-todo-regexp
6115 'org-complex-heading-regexp org-complex-heading-regexp
6116 'done-face 'org-agenda-done
6117 'mouse-face 'highlight
6118 'help-echo
6119 (format "mouse-2 or RET jump to Org file %s"
6120 (abbreviate-file-name buffer-file-name))))
6121 (regexp (if with-hour
6122 org-scheduled-time-hour-regexp
6123 org-scheduled-time-regexp))
6124 (today (org-today))
6125 (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
6126 (current (calendar-absolute-from-gregorian date))
6127 (deadline-pos
6128 (mapcar (lambda (d)
6129 (let ((m (get-text-property 0 'org-hd-marker d)))
6130 (and m (marker-position m))))
6131 deadlines))
6132 scheduled-items)
6133 (goto-char (point-min))
6134 (while (re-search-forward regexp nil t)
6135 (catch :skip
6136 (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
6137 (org-agenda-skip)
6138 (let* ((s (match-string 1))
6139 (pos (1- (match-beginning 1)))
6140 (todo-state (save-match-data (org-get-todo-state)))
6141 (donep (member todo-state org-done-keywords))
6142 (sexp? (string-prefix-p "%%" s))
6143 ;; SCHEDULE is the scheduled date for the entry. It is
6144 ;; either the bare date or the last repeat, according
6145 ;; to `org-agenda-prefer-last-repeat'.
6146 (schedule
6147 (cond
6148 (sexp? (org-agenda--timestamp-to-absolute s current))
6149 ((or (eq org-agenda-prefer-last-repeat t)
6150 (member todo-state org-agenda-prefer-last-repeat))
6151 (org-agenda--timestamp-to-absolute
6152 s today 'past (current-buffer) pos))
6153 (t (org-agenda--timestamp-to-absolute s))))
6154 ;; REPEAT is the future repeat closest from CURRENT,
6155 ;; according to `org-agenda-show-future-repeats'. If
6156 ;; the latter is nil, or if the time stamp has no
6157 ;; repeat part, default to SCHEDULE.
6158 (repeat
6159 (cond
6160 (sexp? schedule)
6161 ((<= current today) schedule)
6162 ((not org-agenda-show-future-repeats) schedule)
6164 (let ((base (if (eq org-agenda-show-future-repeats 'next)
6165 (1+ today)
6166 current)))
6167 (org-agenda--timestamp-to-absolute
6168 s base 'future (current-buffer) pos)))))
6169 (diff (- current schedule))
6170 (warntime (get-text-property (point) 'org-appt-warntime))
6171 (pastschedp (< schedule today))
6172 (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
6173 (suppress-delay
6174 (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
6175 (org-entry-get nil "DEADLINE"))))
6176 (cond
6177 ((not deadline) nil)
6178 ;; The current item has a deadline date, so
6179 ;; evaluate its delay time.
6180 ((integerp org-agenda-skip-scheduled-delay-if-deadline)
6181 ;; Use global delay time.
6182 (- org-agenda-skip-scheduled-delay-if-deadline))
6183 ((eq org-agenda-skip-scheduled-delay-if-deadline
6184 'post-deadline)
6185 ;; Set delay to no later than DEADLINE.
6186 (min (- schedule
6187 (org-agenda--timestamp-to-absolute deadline))
6188 org-scheduled-delay-days))
6189 (t 0))))
6190 (ddays
6191 (cond
6192 ;; Nullify delay when a repeater triggered already
6193 ;; and the delay is of the form --Xd.
6194 ((and (string-match-p "--[0-9]+[hdwmy]" s)
6195 (> schedule (org-agenda--timestamp-to-absolute s)))
6197 (suppress-delay
6198 (let ((org-scheduled-delay-days suppress-delay))
6199 (org-get-wdays s t t)))
6200 (t (org-get-wdays s t)))))
6201 ;; Display scheduled items at base date (SCHEDULE), today if
6202 ;; scheduled before the current date, and at any repeat past
6203 ;; today. However, skip delayed items and items that have
6204 ;; been displayed for more than `org-scheduled-past-days'.
6205 (unless (and todayp
6206 habitp
6207 (bound-and-true-p org-habit-show-all-today))
6208 (when (or (and (> ddays 0) (< diff ddays))
6209 (> diff org-scheduled-past-days)
6210 (> schedule current)
6211 (and (/= current schedule)
6212 (/= current today)
6213 (/= current repeat)))
6214 (throw :skip nil)))
6215 ;; Possibly skip done tasks.
6216 (when (and donep
6217 (or org-agenda-skip-scheduled-if-done
6218 (/= schedule current)))
6219 (throw :skip nil))
6220 ;; Skip entry if it already appears as a deadline, per
6221 ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
6222 ;; doesn't apply to habits.
6223 (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
6224 ((guard
6225 (or (not (memq (line-beginning-position 0) deadline-pos))
6226 habitp))
6227 nil)
6228 (`repeated-after-deadline
6229 (let ((deadline (time-to-days
6230 (org-get-deadline-time (point)))))
6231 (and (<= schedule deadline) (> current deadline))))
6232 (`not-today pastschedp)
6233 (`t t)
6234 (_ nil))
6235 (throw :skip nil))
6236 ;; Skip habits if `org-habit-show-habits' is nil, or if we
6237 ;; only show them for today. Also skip done habits.
6238 (when (and habitp
6239 (or donep
6240 (not (bound-and-true-p org-habit-show-habits))
6241 (and (not todayp)
6242 (bound-and-true-p
6243 org-habit-show-habits-only-for-today))))
6244 (throw :skip nil))
6245 (save-excursion
6246 (re-search-backward "^\\*+[ \t]+" nil t)
6247 (goto-char (match-end 0))
6248 (let* ((category (org-get-category))
6249 (inherited-tags
6250 (or (eq org-agenda-show-inherited-tags 'always)
6251 (and (listp org-agenda-show-inherited-tags)
6252 (memq 'agenda org-agenda-show-inherited-tags))
6253 (and (eq org-agenda-show-inherited-tags t)
6254 (or (eq org-agenda-use-tag-inheritance t)
6255 (memq 'agenda
6256 org-agenda-use-tag-inheritance)))))
6257 (tags (org-get-tags-at nil (not inherited-tags)))
6258 (level (make-string (org-reduced-level (org-outline-level))
6259 ?\s))
6260 (head (buffer-substring (point) (line-end-position)))
6261 (time
6262 (cond
6263 ;; No time of day designation if it is only
6264 ;; a reminder.
6265 ((and (/= current schedule) (/= current repeat)) nil)
6266 ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
6267 (concat (substring s (match-beginning 1)) " "))
6268 (t 'time)))
6269 (item
6270 (org-agenda-format-item
6271 (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
6272 ;; Show a reminder of a past scheduled today.
6273 (if (and todayp pastschedp)
6274 (format past diff)
6275 first))
6276 head level category tags time nil habitp))
6277 (face (cond ((and (not habitp) pastschedp)
6278 'org-scheduled-previously)
6279 (todayp 'org-scheduled-today)
6280 (t 'org-scheduled)))
6281 (habitp (and habitp (org-habit-parse-todo))))
6282 (org-add-props item props
6283 'undone-face face
6284 'face (if donep 'org-agenda-done face)
6285 'org-marker (org-agenda-new-marker pos)
6286 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
6287 'type (if pastschedp "past-scheduled" "scheduled")
6288 'date (if pastschedp schedule date)
6289 'ts-date schedule
6290 'warntime warntime
6291 'level level
6292 'priority (if habitp (org-habit-get-priority habitp)
6293 (+ 99 diff (org-get-priority item)))
6294 'org-habit-p habitp
6295 'todo-state todo-state)
6296 (push item scheduled-items))))))
6297 (nreverse scheduled-items)))
6299 (defun org-agenda-get-blocks ()
6300 "Return the date-range information for agenda display."
6301 (let* ((props (list 'face nil
6302 'org-not-done-regexp org-not-done-regexp
6303 'org-todo-regexp org-todo-regexp
6304 'org-complex-heading-regexp org-complex-heading-regexp
6305 'mouse-face 'highlight
6306 'help-echo
6307 (format "mouse-2 or RET jump to org file %s"
6308 (abbreviate-file-name buffer-file-name))))
6309 (regexp org-tr-regexp)
6310 (d0 (calendar-absolute-from-gregorian date))
6311 marker hdmarker ee txt d1 d2 s1 s2 category
6312 level todo-state tags pos head donep inherited-tags)
6313 (goto-char (point-min))
6314 (while (re-search-forward regexp nil t)
6315 (catch :skip
6316 (org-agenda-skip)
6317 (setq pos (point))
6318 (let ((start-time (match-string 1))
6319 (end-time (match-string 2)))
6320 (setq s1 (match-string 1)
6321 s2 (match-string 2)
6322 d1 (time-to-days
6323 (condition-case err
6324 (org-time-string-to-time s1)
6325 (error
6326 (error
6327 "Bad timestamp %S at %d in buffer %S\nError was: %s"
6330 (current-buffer)
6331 (error-message-string err)))))
6332 d2 (time-to-days
6333 (condition-case err
6334 (org-time-string-to-time s2)
6335 (error
6336 (error
6337 "Bad timestamp %S at %d in buffer %S\nError was: %s"
6340 (current-buffer)
6341 (error-message-string err))))))
6342 (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
6343 ;; Only allow days between the limits, because the normal
6344 ;; date stamps will catch the limits.
6345 (save-excursion
6346 (setq todo-state (org-get-todo-state))
6347 (setq donep (member todo-state org-done-keywords))
6348 (if (and donep org-agenda-skip-timestamp-if-done)
6349 (throw :skip t))
6350 (setq marker (org-agenda-new-marker (point))
6351 category (org-get-category))
6352 (if (not (re-search-backward org-outline-regexp-bol nil t))
6353 (throw :skip nil)
6354 (goto-char (match-beginning 0))
6355 (setq hdmarker (org-agenda-new-marker (point))
6356 inherited-tags
6357 (or (eq org-agenda-show-inherited-tags 'always)
6358 (and (listp org-agenda-show-inherited-tags)
6359 (memq 'agenda org-agenda-show-inherited-tags))
6360 (and (eq org-agenda-show-inherited-tags t)
6361 (or (eq org-agenda-use-tag-inheritance t)
6362 (memq 'agenda org-agenda-use-tag-inheritance))))
6364 tags (org-get-tags-at nil (not inherited-tags)))
6365 (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
6366 (looking-at "\\*+[ \t]+\\(.*\\)")
6367 (setq head (match-string 1))
6368 (let ((remove-re
6369 (if org-agenda-remove-timeranges-from-blocks
6370 (concat
6371 "<" (regexp-quote s1) ".*?>"
6372 "--"
6373 "<" (regexp-quote s2) ".*?>")
6374 nil)))
6375 (setq txt (org-agenda-format-item
6376 (format
6377 (nth (if (= d1 d2) 0 1)
6378 org-agenda-timerange-leaders)
6379 (1+ (- d0 d1)) (1+ (- d2 d1)))
6380 head level category tags
6381 (cond ((and (= d1 d0) (= d2 d0))
6382 (concat "<" start-time ">--<" end-time ">"))
6383 ((= d1 d0)
6384 (concat "<" start-time ">"))
6385 ((= d2 d0)
6386 (concat "<" end-time ">")))
6387 remove-re))))
6388 (org-add-props txt props
6389 'org-marker marker 'org-hd-marker hdmarker
6390 'type "block" 'date date
6391 'level level
6392 'todo-state todo-state
6393 'priority (org-get-priority txt))
6394 (push txt ee))))
6395 (goto-char pos)))
6396 ;; Sort the entries by expiration date.
6397 (nreverse ee)))
6399 ;;; Agenda presentation and sorting
6401 (defvar org-prefix-has-time nil
6402 "A flag, set by `org-compile-prefix-format'.
6403 The flag is set if the currently compiled format contains a `%t'.")
6404 (defvar org-prefix-has-tag nil
6405 "A flag, set by `org-compile-prefix-format'.
6406 The flag is set if the currently compiled format contains a `%T'.")
6407 (defvar org-prefix-has-effort nil
6408 "A flag, set by `org-compile-prefix-format'.
6409 The flag is set if the currently compiled format contains a `%e'.")
6410 (defvar org-prefix-has-breadcrumbs nil
6411 "A flag, set by `org-compile-prefix-format'.
6412 The flag is set if the currently compiled format contains a `%b'.")
6413 (defvar org-prefix-category-length nil
6414 "Used by `org-compile-prefix-format' to remember the category field width.")
6415 (defvar org-prefix-category-max-length nil
6416 "Used by `org-compile-prefix-format' to remember the category field width.")
6418 (defun org-agenda-get-category-icon (category)
6419 "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
6420 (cl-dolist (entry org-agenda-category-icon-alist)
6421 (when (string-match-p (car entry) category)
6422 (if (listp (cadr entry))
6423 (cl-return (cadr entry))
6424 (cl-return (apply #'create-image (cdr entry)))))))
6426 (defun org-agenda-format-item (extra txt &optional level category tags dotime
6427 remove-re habitp)
6428 "Format TXT to be inserted into the agenda buffer.
6429 In particular, add the prefix and corresponding text properties.
6431 EXTRA must be a string to replace the `%s' specifier in the prefix format.
6432 LEVEL may be a string to replace the `%l' specifier.
6433 CATEGORY (a string, a symbol or nil) may be used to overrule the default
6434 category taken from local variable or file name. It will replace the `%c'
6435 specifier in the format.
6436 DOTIME, when non-nil, indicates that a time-of-day should be extracted from
6437 TXT for sorting of this entry, and for the `%t' specifier in the format.
6438 When DOTIME is a string, this string is searched for a time before TXT is.
6439 TAGS can be the tags of the headline.
6440 Any match of REMOVE-RE will be removed from TXT."
6441 ;; We keep the org-prefix-* variable values along with a compiled
6442 ;; formatter, so that multiple agendas existing at the same time do
6443 ;; not step on each other toes.
6445 ;; It was inconvenient to make these variables buffer local in
6446 ;; Agenda buffers, because this function expects to be called with
6447 ;; the buffer where item comes from being current, and not agenda
6448 ;; buffer
6449 (let* ((bindings (car org-prefix-format-compiled))
6450 (formatter (cadr org-prefix-format-compiled)))
6451 (cl-loop for (var value) in bindings
6452 do (set var value))
6453 (save-match-data
6454 ;; Diary entries sometimes have extra whitespace at the beginning
6455 (setq txt (org-trim txt))
6457 ;; Fix the tags part in txt
6458 (setq txt (org-agenda-fix-displayed-tags
6459 txt tags
6460 org-agenda-show-inherited-tags
6461 org-agenda-hide-tags-regexp))
6463 (let* ((category (or category
6464 (if buffer-file-name
6465 (file-name-sans-extension
6466 (file-name-nondirectory buffer-file-name))
6467 "")))
6468 (category-icon (org-agenda-get-category-icon category))
6469 (category-icon (if category-icon
6470 (propertize " " 'display category-icon)
6471 ""))
6472 (effort (and (not (string= txt ""))
6473 (get-text-property 1 'effort txt)))
6474 ;; time, tag, effort are needed for the eval of the prefix format
6475 (tag (if tags (nth (1- (length tags)) tags) ""))
6476 (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
6477 time
6478 (ts (if dotime (concat
6479 (if (stringp dotime) dotime "")
6480 (and org-agenda-search-headline-for-time txt))))
6481 (time-of-day (and dotime (org-get-time-of-day ts)))
6482 stamp plain s0 s1 s2 rtn srp l
6483 duration breadcrumbs)
6484 (and (derived-mode-p 'org-mode) buffer-file-name
6485 (add-to-list 'org-agenda-contributing-files buffer-file-name))
6486 (when (and dotime time-of-day)
6487 ;; Extract starting and ending time and move them to prefix
6488 (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
6489 (setq plain (string-match org-plain-time-of-day-regexp ts)))
6490 (setq s0 (match-string 0 ts)
6491 srp (and stamp (match-end 3))
6492 s1 (match-string (if plain 1 2) ts)
6493 s2 (match-string (if plain 8 (if srp 4 6)) ts))
6495 ;; If the times are in TXT (not in DOTIMES), and the prefix will list
6496 ;; them, we might want to remove them there to avoid duplication.
6497 ;; The user can turn this off with a variable.
6498 (if (and org-prefix-has-time
6499 org-agenda-remove-times-when-in-prefix (or stamp plain)
6500 (string-match (concat (regexp-quote s0) " *") txt)
6501 (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
6502 (if (eq org-agenda-remove-times-when-in-prefix 'beg)
6503 (= (match-beginning 0) 0)
6505 (setq txt (replace-match "" nil nil txt))))
6506 ;; Normalize the time(s) to 24 hour
6507 (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
6508 (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
6510 ;; Try to set s2 if s1 and
6511 ;; `org-agenda-default-appointment-duration' are set
6512 (when (and s1 (not s2) org-agenda-default-appointment-duration)
6513 (setq s2
6514 (org-duration-from-minutes
6515 (+ (org-duration-to-minutes s1 t)
6516 org-agenda-default-appointment-duration)
6517 nil t)))
6519 ;; Compute the duration
6520 (when s2
6521 (setq duration (- (org-duration-to-minutes s2)
6522 (org-duration-to-minutes s1)))))
6524 (when (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
6525 ;; Tags are in the string
6526 (if (or (eq org-agenda-remove-tags t)
6527 (and org-agenda-remove-tags
6528 org-prefix-has-tag))
6529 (setq txt (replace-match "" t t txt))
6530 (setq txt (replace-match
6531 (concat (make-string (max (- 50 (length txt)) 1) ?\ )
6532 (match-string 2 txt))
6533 t t txt))))
6535 (when remove-re
6536 (while (string-match remove-re txt)
6537 (setq txt (replace-match "" t t txt))))
6539 ;; Set org-heading property on `txt' to mark the start of the
6540 ;; heading.
6541 (add-text-properties 0 (length txt) '(org-heading t) txt)
6543 ;; Prepare the variables needed in the eval of the compiled format
6544 (if org-prefix-has-breadcrumbs
6545 (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
6546 (let ((s (org-display-outline-path nil nil "->" t)))
6547 (if (eq "" s) "" (concat s "->"))))))
6548 (setq time (cond (s2 (concat
6549 (org-agenda-time-of-day-to-ampm-maybe s1)
6550 "-" (org-agenda-time-of-day-to-ampm-maybe s2)
6551 (if org-agenda-timegrid-use-ampm " ")))
6552 (s1 (concat
6553 (org-agenda-time-of-day-to-ampm-maybe s1)
6554 (if org-agenda-timegrid-use-ampm
6555 (concat time-grid-trailing-characters " ")
6556 time-grid-trailing-characters)))
6557 (t ""))
6558 extra (or (and (not habitp) extra) "")
6559 category (if (symbolp category) (symbol-name category) category)
6560 level (or level ""))
6561 (if (string-match org-bracket-link-regexp category)
6562 (progn
6563 (setq l (if (match-end 3)
6564 (- (match-end 3) (match-beginning 3))
6565 (- (match-end 1) (match-beginning 1))))
6566 (when (< l (or org-prefix-category-length 0))
6567 (setq category (copy-sequence category))
6568 (org-add-props category nil
6569 'extra-space (make-string
6570 (- org-prefix-category-length l 1) ?\ ))))
6571 (if (and org-prefix-category-max-length
6572 (>= (length category) org-prefix-category-max-length))
6573 (setq category (substring category 0 (1- org-prefix-category-max-length)))))
6574 ;; Evaluate the compiled format
6575 (setq rtn (concat (eval formatter) txt))
6577 ;; And finally add the text properties
6578 (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
6579 (org-add-props rtn nil
6580 'org-category category
6581 'tags (mapcar 'org-downcase-keep-props tags)
6582 'org-highest-priority org-highest-priority
6583 'org-lowest-priority org-lowest-priority
6584 'time-of-day time-of-day
6585 'duration duration
6586 'breadcrumbs breadcrumbs
6587 'txt txt
6588 'level level
6589 'time time
6590 'extra extra
6591 'format org-prefix-format-compiled
6592 'dotime dotime)))))
6594 (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
6595 "Remove tags string from TXT, and add a modified list of tags.
6596 The modified list may contain inherited tags, and tags matched by
6597 `org-agenda-hide-tags-regexp' will be removed."
6598 (when (or add-inherited hide-re)
6599 (if (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
6600 (setq txt (substring txt 0 (match-beginning 0))))
6601 (setq tags
6602 (delq nil
6603 (mapcar (lambda (tg)
6604 (if (or (and hide-re (string-match hide-re tg))
6605 (and (not add-inherited)
6606 (get-text-property 0 'inherited tg)))
6608 tg))
6609 tags)))
6610 (when tags
6611 (let ((have-i (get-text-property 0 'inherited (car tags)))
6613 (setq txt (concat txt " :"
6614 (mapconcat
6615 (lambda (x)
6616 (setq i (get-text-property 0 'inherited x))
6617 (if (and have-i (not i))
6618 (progn
6619 (setq have-i nil)
6620 (concat ":" x))
6622 tags ":")
6623 (if have-i "::" ":"))))))
6624 txt)
6626 (defun org-downcase-keep-props (s)
6627 (let ((props (text-properties-at 0 s)))
6628 (setq s (downcase s))
6629 (add-text-properties 0 (length s) props s)
6632 (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
6634 (defun org-agenda-add-time-grid-maybe (list ndays todayp)
6635 "Add a time-grid for agenda items which need it.
6637 LIST is the list of agenda items formatted by `org-agenda-list'.
6638 NDAYS is the span of the current agenda view.
6639 TODAYP is t when the current agenda view is on today."
6640 (catch 'exit
6641 (cond ((not org-agenda-use-time-grid) (throw 'exit list))
6642 ((and todayp (member 'today (car org-agenda-time-grid))))
6643 ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
6644 ((member 'weekly (car org-agenda-time-grid)))
6645 (t (throw 'exit list)))
6646 (let* ((have (delq nil (mapcar
6647 (lambda (x) (get-text-property 1 'time-of-day x))
6648 list)))
6649 (string (nth 3 org-agenda-time-grid))
6650 (gridtimes (nth 1 org-agenda-time-grid))
6651 (req (car org-agenda-time-grid))
6652 (remove (member 'remove-match req))
6653 new time)
6654 (if (and (member 'require-timed req) (not have))
6655 ;; don't show empty grid
6656 (throw 'exit list))
6657 (while (setq time (pop gridtimes))
6658 (unless (and remove (member time have))
6659 (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
6660 (push (org-agenda-format-item
6661 nil string nil "" nil
6662 (concat (substring time 0 -2) ":" (substring time -2)))
6663 new)
6664 (put-text-property
6665 2 (length (car new)) 'face 'org-time-grid (car new))))
6666 (when (and todayp org-agenda-show-current-time-in-grid)
6667 (push (org-agenda-format-item
6668 nil org-agenda-current-time-string nil "" nil
6669 (format-time-string "%H:%M "))
6670 new)
6671 (put-text-property
6672 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
6674 (if (member 'time-up org-agenda-sorting-strategy-selected)
6675 (append new list)
6676 (append list new)))))
6678 (defun org-compile-prefix-format (key)
6679 "Compile the prefix format into a Lisp form that can be evaluated.
6680 The resulting form and associated variable bindings is returned
6681 and stored in the variable `org-prefix-format-compiled'."
6682 (setq org-prefix-has-time nil
6683 org-prefix-has-tag nil
6684 org-prefix-category-length nil
6685 org-prefix-has-effort nil
6686 org-prefix-has-breadcrumbs nil)
6687 (let ((s (cond
6688 ((stringp org-agenda-prefix-format)
6689 org-agenda-prefix-format)
6690 ((assq key org-agenda-prefix-format)
6691 (cdr (assq key org-agenda-prefix-format)))
6692 (t " %-12:c%?-12t% s")))
6693 (start 0)
6694 varform vars var e c f opt)
6695 (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
6696 s start)
6697 (setq var (or (cdr (assoc (match-string 4 s)
6698 '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
6699 ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
6700 'eval)
6701 c (or (match-string 3 s) "")
6702 opt (match-beginning 1)
6703 start (1+ (match-beginning 0)))
6704 (if (eq var 'time) (setq org-prefix-has-time t))
6705 (if (eq var 'tag) (setq org-prefix-has-tag t))
6706 (if (eq var 'effort) (setq org-prefix-has-effort t))
6707 (if (eq var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
6708 (setq f (concat "%" (match-string 2 s) "s"))
6709 (when (eq var 'category)
6710 (setq org-prefix-category-length
6711 (floor (abs (string-to-number (match-string 2 s)))))
6712 (setq org-prefix-category-max-length
6713 (let ((x (match-string 2 s)))
6714 (save-match-data
6715 (if (string-match "\\.[0-9]+" x)
6716 (string-to-number (substring (match-string 0 x) 1)))))))
6717 (if (eq var 'eval)
6718 (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
6719 (if opt
6720 (setq varform
6721 `(if (or (equal "" ,var) (equal nil ,var))
6723 (format ,f (concat ,var ,c))))
6724 (setq varform
6725 `(format ,f (if (or (equal ,var "")
6726 (equal ,var nil)) ""
6727 (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
6728 (setq s (replace-match "%s" t nil s))
6729 (push varform vars))
6730 (setq vars (nreverse vars))
6731 (with-current-buffer (or org-agenda-buffer (current-buffer))
6732 (setq org-prefix-format-compiled
6733 (list
6734 `((org-prefix-has-time ,org-prefix-has-time)
6735 (org-prefix-has-tag ,org-prefix-has-tag)
6736 (org-prefix-category-length ,org-prefix-category-length)
6737 (org-prefix-has-effort ,org-prefix-has-effort)
6738 (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
6739 `(format ,s ,@vars))))))
6741 (defun org-set-sorting-strategy (key)
6742 (if (symbolp (car org-agenda-sorting-strategy))
6743 ;; the old format
6744 (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
6745 (setq org-agenda-sorting-strategy-selected
6746 (or (cdr (assq key org-agenda-sorting-strategy))
6747 (cdr (assq 'agenda org-agenda-sorting-strategy))
6748 '(time-up category-keep priority-down)))))
6750 (defun org-get-time-of-day (s &optional string mod24)
6751 "Check string S for a time of day.
6752 If found, return it as a military time number between 0 and 2400.
6753 If not found, return nil.
6754 The optional STRING argument forces conversion into a 5 character wide string
6755 HH:MM."
6756 (save-match-data
6757 (when
6758 (and
6759 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
6760 (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
6761 (not (eq (get-text-property 1 'face s) 'org-link)))
6762 (let* ((h (string-to-number (match-string 1 s)))
6763 (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
6764 (ampm (if (match-end 4) (downcase (match-string 4 s))))
6765 (am-p (equal ampm "am"))
6766 (h1 (cond ((not ampm) h)
6767 ((= h 12) (if am-p 0 12))
6768 (t (+ h (if am-p 0 12)))))
6769 (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
6770 (mod h1 24) h1))
6771 (t0 (+ (* 100 h2) m))
6772 (t1 (concat (if (>= h1 24) "+" " ")
6773 (if (and org-agenda-time-leading-zero
6774 (< t0 1000)) "0" "")
6775 (if (< t0 100) "0" "")
6776 (if (< t0 10) "0" "")
6777 (int-to-string t0))))
6778 (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
6780 (defvar org-agenda-before-sorting-filter-function nil
6781 "Function to be applied to agenda items prior to sorting.
6782 Prior to sorting also means just before they are inserted into the agenda.
6784 To aid sorting, you may revisit the original entries and add more text
6785 properties which will later be used by the sorting functions.
6787 The function should take a string argument, an agenda line.
6788 It has access to the text properties in that line, which contain among
6789 other things, the property `org-hd-marker' that points to the entry
6790 where the line comes from. Note that not all lines going into the agenda
6791 have this property, only most.
6793 The function should return the modified string. It is probably best
6794 to ONLY change text properties.
6796 You can also use this function as a filter, by returning nil for lines
6797 you don't want to have in the agenda at all. For this application, you
6798 could bind the variable in the options section of a custom command.")
6800 (defun org-agenda-finalize-entries (list &optional type)
6801 "Sort, limit and concatenate the LIST of agenda items.
6802 The optional argument TYPE tells the agenda type."
6803 (let ((max-effort (cond ((listp org-agenda-max-effort)
6804 (cdr (assoc type org-agenda-max-effort)))
6805 (t org-agenda-max-effort)))
6806 (max-todo (cond ((listp org-agenda-max-todos)
6807 (cdr (assoc type org-agenda-max-todos)))
6808 (t org-agenda-max-todos)))
6809 (max-tags (cond ((listp org-agenda-max-tags)
6810 (cdr (assoc type org-agenda-max-tags)))
6811 (t org-agenda-max-tags)))
6812 (max-entries (cond ((listp org-agenda-max-entries)
6813 (cdr (assoc type org-agenda-max-entries)))
6814 (t org-agenda-max-entries))))
6815 (when org-agenda-before-sorting-filter-function
6816 (setq list
6817 (delq nil
6818 (mapcar
6819 org-agenda-before-sorting-filter-function list))))
6820 (setq list (mapcar 'org-agenda-highlight-todo list)
6821 list (mapcar 'identity (sort list 'org-entries-lessp)))
6822 (when max-effort
6823 (setq list (org-agenda-limit-entries
6824 list 'effort-minutes max-effort
6825 (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
6826 32767 -1))))))
6827 (when max-todo
6828 (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
6829 (when max-tags
6830 (setq list (org-agenda-limit-entries list 'tags max-tags)))
6831 (when max-entries
6832 (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
6833 (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
6834 (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
6835 (mapconcat 'identity list "\n")))
6837 (defun org-agenda-limit-entries (list prop limit &optional fn)
6838 "Limit the number of agenda entries."
6839 (let ((include (and limit (< limit 0))))
6840 (if limit
6841 (let ((fun (or fn (lambda (p) (if p 1))))
6842 (lim 0))
6843 (delq nil
6844 (mapcar
6845 (lambda (e)
6846 (let ((pval (funcall
6847 fun (get-text-property (1- (length e))
6848 prop e))))
6849 (if pval (setq lim (+ lim pval)))
6850 (cond ((and pval (<= lim (abs limit))) e)
6851 ((and include (not pval)) e))))
6852 list)))
6853 list)))
6855 (defun org-agenda-limit-interactively (remove)
6856 "In agenda, interactively limit entries to various maximums."
6857 (interactive "P")
6858 (if remove
6859 (progn (setq org-agenda-max-entries nil
6860 org-agenda-max-todos nil
6861 org-agenda-max-tags nil
6862 org-agenda-max-effort nil)
6863 (org-agenda-redo))
6864 (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
6865 (msg (cond ((= max ?E) "How many minutes? ")
6866 ((= max ?e) "How many entries? ")
6867 ((= max ?t) "How many TODO entries? ")
6868 ((= max ?T) "How many tagged entries? ")
6869 (t (user-error "Wrong input"))))
6870 (num (string-to-number (read-from-minibuffer msg))))
6871 (cond ((equal max ?e)
6872 (let ((org-agenda-max-entries num)) (org-agenda-redo)))
6873 ((equal max ?t)
6874 (let ((org-agenda-max-todos num)) (org-agenda-redo)))
6875 ((equal max ?T)
6876 (let ((org-agenda-max-tags num)) (org-agenda-redo)))
6877 ((equal max ?E)
6878 (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
6879 (org-agenda-fit-window-to-buffer))
6881 (defun org-agenda-highlight-todo (x)
6882 (let ((org-done-keywords org-done-keywords-for-agenda)
6883 (case-fold-search nil)
6885 (if (eq x 'line)
6886 (save-excursion
6887 (beginning-of-line 1)
6888 (setq re (org-get-at-bol 'org-todo-regexp))
6889 (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
6890 (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
6891 (add-text-properties (match-beginning 0) (match-end 1)
6892 (list 'face (org-get-todo-face 1)))
6893 (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
6894 (delete-region (match-beginning 1) (1- (match-end 0)))
6895 (goto-char (match-beginning 1))
6896 (insert (format org-agenda-todo-keyword-format s)))))
6897 (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
6898 (setq re (get-text-property 0 'org-todo-regexp x))
6899 (when (and re
6900 ;; Test `pl' because if there's no heading content,
6901 ;; there's no point matching to highlight. Note
6902 ;; that if we didn't test `pl' first, and there
6903 ;; happened to be no keyword from `org-todo-regexp'
6904 ;; on this heading line, then the `equal' comparison
6905 ;; afterwards would spuriously succeed in the case
6906 ;; where `pl' is nil -- causing an args-out-of-range
6907 ;; error when we try to add text properties to text
6908 ;; that isn't there.
6910 (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
6911 x pl) pl))
6912 (add-text-properties
6913 (or (match-end 1) (match-end 0)) (match-end 0)
6914 (list 'face (org-get-todo-face (match-string 2 x)))
6916 (when (match-end 1)
6917 (setq x
6918 (concat
6919 (substring x 0 (match-end 1))
6920 (format org-agenda-todo-keyword-format
6921 (match-string 2 x))
6922 ;; Remove `display' property as the icon could leak
6923 ;; on the white space.
6924 (org-add-props " " (org-plist-delete (text-properties-at 0 x)
6925 'display))
6926 (substring x (match-end 3)))))))
6927 x)))
6929 (defsubst org-cmp-values (a b property)
6930 "Compare the numeric value of text PROPERTY for string A and B."
6931 (let ((pa (or (get-text-property (1- (length a)) property a) 0))
6932 (pb (or (get-text-property (1- (length b)) property b) 0)))
6933 (cond ((> pa pb) +1)
6934 ((< pa pb) -1))))
6936 (defsubst org-cmp-effort (a b)
6937 "Compare the effort values of string A and B."
6938 (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
6939 ;; `effort-minutes' property is not directly accessible from
6940 ;; the strings, but is stored as a property in `txt'.
6941 (ea (or (get-text-property
6942 0 'effort-minutes (get-text-property 0 'txt a))
6943 def))
6944 (eb (or (get-text-property
6945 0 'effort-minutes (get-text-property 0 'txt b))
6946 def)))
6947 (cond ((> ea eb) +1)
6948 ((< ea eb) -1))))
6950 (defsubst org-cmp-category (a b)
6951 "Compare the string values of categories of strings A and B."
6952 (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
6953 (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
6954 (cond ((string-lessp ca cb) -1)
6955 ((string-lessp cb ca) +1))))
6957 (defsubst org-cmp-todo-state (a b)
6958 "Compare the todo states of strings A and B."
6959 (let* ((ma (or (get-text-property 1 'org-marker a)
6960 (get-text-property 1 'org-hd-marker a)))
6961 (mb (or (get-text-property 1 'org-marker b)
6962 (get-text-property 1 'org-hd-marker b)))
6963 (fa (and ma (marker-buffer ma)))
6964 (fb (and mb (marker-buffer mb)))
6965 (todo-kwds
6966 (or (and fa (with-current-buffer fa org-todo-keywords-1))
6967 (and fb (with-current-buffer fb org-todo-keywords-1))))
6968 (ta (or (get-text-property 1 'todo-state a) ""))
6969 (tb (or (get-text-property 1 'todo-state b) ""))
6970 (la (- (length (member ta todo-kwds))))
6971 (lb (- (length (member tb todo-kwds))))
6972 (donepa (member ta org-done-keywords-for-agenda))
6973 (donepb (member tb org-done-keywords-for-agenda)))
6974 (cond ((and donepa (not donepb)) -1)
6975 ((and (not donepa) donepb) +1)
6976 ((< la lb) -1)
6977 ((< lb la) +1))))
6979 (defsubst org-cmp-alpha (a b)
6980 "Compare the headlines, alphabetically."
6981 (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
6982 (plb (text-property-any 0 (length b) 'org-heading t b))
6983 (ta (and pla (substring a pla)))
6984 (tb (and plb (substring b plb)))
6985 (case-fold-search nil))
6986 (when pla
6987 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
6988 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
6989 (setq ta (substring ta (match-end 0))))
6990 (setq ta (downcase ta)))
6991 (when plb
6992 (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
6993 "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
6994 (setq tb (substring tb (match-end 0))))
6995 (setq tb (downcase tb)))
6996 (cond ((not ta) +1)
6997 ((not tb) -1)
6998 ((string-lessp ta tb) -1)
6999 ((string-lessp tb ta) +1))))
7001 (defsubst org-cmp-tag (a b)
7002 "Compare the string values of the first tags of A and B."
7003 (let ((ta (car (last (get-text-property 1 'tags a))))
7004 (tb (car (last (get-text-property 1 'tags b)))))
7005 (cond ((not ta) +1)
7006 ((not tb) -1)
7007 ((string-lessp ta tb) -1)
7008 ((string-lessp tb ta) +1))))
7010 (defsubst org-cmp-time (a b)
7011 "Compare the time-of-day values of strings A and B."
7012 (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
7013 (ta (or (get-text-property 1 'time-of-day a) def))
7014 (tb (or (get-text-property 1 'time-of-day b) def)))
7015 (cond ((< ta tb) -1)
7016 ((< tb ta) +1))))
7018 (defsubst org-cmp-ts (a b type)
7019 "Compare the timestamps values of entries A and B.
7020 When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
7021 \"timestamp_ia\", compare within each of these type. When TYPE
7022 is the empty string, compare all timestamps without respect of
7023 their type."
7024 (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
7025 (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
7026 (get-text-property 1 'ts-date a))
7027 def))
7028 (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
7029 (get-text-property 1 'ts-date b))
7030 def)))
7031 (cond ((< ta tb) -1)
7032 ((< tb ta) +1))))
7034 (defsubst org-cmp-habit-p (a b)
7035 "Compare the todo states of strings A and B."
7036 (let ((ha (get-text-property 1 'org-habit-p a))
7037 (hb (get-text-property 1 'org-habit-p b)))
7038 (cond ((and ha (not hb)) -1)
7039 ((and (not ha) hb) +1))))
7041 (defun org-entries-lessp (a b)
7042 "Predicate for sorting agenda entries."
7043 ;; The following variables will be used when the form is evaluated.
7044 ;; So even though the compiler complains, keep them.
7045 (let* ((ss org-agenda-sorting-strategy-selected)
7046 (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
7047 (org-cmp-ts a b "")))
7048 (timestamp-down (if timestamp-up (- timestamp-up) nil))
7049 (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
7050 (org-cmp-ts a b "scheduled")))
7051 (scheduled-down (if scheduled-up (- scheduled-up) nil))
7052 (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
7053 (org-cmp-ts a b "deadline")))
7054 (deadline-down (if deadline-up (- deadline-up) nil))
7055 (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
7056 (org-cmp-ts a b "timestamp_ia")))
7057 (tsia-down (if tsia-up (- tsia-up) nil))
7058 (ts-up (and (org-em 'ts-up 'ts-down ss)
7059 (org-cmp-ts a b "timestamp")))
7060 (ts-down (if ts-up (- ts-up) nil))
7061 (time-up (and (org-em 'time-up 'time-down ss)
7062 (org-cmp-time a b)))
7063 (time-down (if time-up (- time-up) nil))
7064 (stats-up (and (org-em 'stats-up 'stats-down ss)
7065 (org-cmp-values a b 'org-stats)))
7066 (stats-down (if stats-up (- stats-up) nil))
7067 (priority-up (and (org-em 'priority-up 'priority-down ss)
7068 (org-cmp-values a b 'priority)))
7069 (priority-down (if priority-up (- priority-up) nil))
7070 (effort-up (and (org-em 'effort-up 'effort-down ss)
7071 (org-cmp-effort a b)))
7072 (effort-down (if effort-up (- effort-up) nil))
7073 (category-up (and (or (org-em 'category-up 'category-down ss)
7074 (memq 'category-keep ss))
7075 (org-cmp-category a b)))
7076 (category-down (if category-up (- category-up) nil))
7077 (category-keep (if category-up +1 nil))
7078 (tag-up (and (org-em 'tag-up 'tag-down ss)
7079 (org-cmp-tag a b)))
7080 (tag-down (if tag-up (- tag-up) nil))
7081 (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
7082 (org-cmp-todo-state a b)))
7083 (todo-state-down (if todo-state-up (- todo-state-up) nil))
7084 (habit-up (and (org-em 'habit-up 'habit-down ss)
7085 (org-cmp-habit-p a b)))
7086 (habit-down (if habit-up (- habit-up) nil))
7087 (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
7088 (org-cmp-alpha a b)))
7089 (alpha-down (if alpha-up (- alpha-up) nil))
7090 (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
7091 user-defined-up user-defined-down)
7092 (if (and need-user-cmp org-agenda-cmp-user-defined
7093 (functionp org-agenda-cmp-user-defined))
7094 (setq user-defined-up
7095 (funcall org-agenda-cmp-user-defined a b)
7096 user-defined-down (if user-defined-up (- user-defined-up) nil)))
7097 (cdr (assoc
7098 (eval (cons 'or org-agenda-sorting-strategy-selected))
7099 '((-1 . t) (1 . nil) (nil . nil))))))
7101 ;;; Agenda restriction lock
7103 (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
7104 "Overlay to mark the headline to which agenda commands are restricted.")
7105 (overlay-put org-agenda-restriction-lock-overlay
7106 'face 'org-agenda-restriction-lock)
7107 (overlay-put org-agenda-restriction-lock-overlay
7108 'help-echo "Agendas are currently limited to this subtree.")
7109 (delete-overlay org-agenda-restriction-lock-overlay)
7111 (defun org-agenda-set-restriction-lock-from-agenda (arg)
7112 "Set the restriction lock to the agenda item at point from within the agenda.
7113 When called with a `\\[universal-argument]' prefix, restrict to
7114 the file which contains the item.
7115 Argument ARG is the prefix argument."
7116 (interactive "P")
7117 (unless (derived-mode-p 'org-agenda-mode)
7118 (user-error "Not in an Org agenda buffer"))
7119 (let* ((marker (or (org-get-at-bol 'org-marker)
7120 (org-agenda-error)))
7121 (buffer (marker-buffer marker))
7122 (pos (marker-position marker)))
7123 (with-current-buffer buffer
7124 (goto-char pos)
7125 (org-agenda-set-restriction-lock arg))))
7127 ;;;###autoload
7128 (defun org-agenda-set-restriction-lock (&optional type)
7129 "Set restriction lock for agenda, to current subtree or file.
7130 Restriction will be the file if TYPE is `file', or if type is the
7131 universal prefix \\='(4), or if the cursor is before the first headline
7132 in the file. Otherwise, restriction will be to the current subtree."
7133 (interactive "P")
7134 (org-agenda-remove-restriction-lock 'noupdate)
7135 (and (equal type '(4)) (setq type 'file))
7136 (setq type (cond
7137 (type type)
7138 ((org-at-heading-p) 'subtree)
7139 ((condition-case nil (org-back-to-heading t) (error nil))
7140 'subtree)
7141 (t 'file)))
7142 (if (eq type 'subtree)
7143 (progn
7144 (setq org-agenda-restrict (current-buffer))
7145 (setq org-agenda-overriding-restriction 'subtree)
7146 (put 'org-agenda-files 'org-restrict
7147 (list (buffer-file-name (buffer-base-buffer))))
7148 (org-back-to-heading t)
7149 (move-overlay org-agenda-restriction-lock-overlay
7150 (point)
7151 (if org-agenda-restriction-lock-highlight-subtree
7152 (save-excursion (org-end-of-subtree t t) (point))
7153 (point-at-eol)))
7154 (move-marker org-agenda-restrict-begin (point))
7155 (move-marker org-agenda-restrict-end
7156 (save-excursion (org-end-of-subtree t t)))
7157 (message "Locking agenda restriction to subtree"))
7158 (put 'org-agenda-files 'org-restrict
7159 (list (buffer-file-name (buffer-base-buffer))))
7160 (setq org-agenda-restrict nil)
7161 (setq org-agenda-overriding-restriction 'file)
7162 (move-marker org-agenda-restrict-begin nil)
7163 (move-marker org-agenda-restrict-end nil)
7164 (message "Locking agenda restriction to file"))
7165 (setq current-prefix-arg nil)
7166 (org-agenda-maybe-redo))
7168 (defun org-agenda-remove-restriction-lock (&optional noupdate)
7169 "Remove the agenda restriction lock."
7170 (interactive "P")
7171 (delete-overlay org-agenda-restriction-lock-overlay)
7172 (delete-overlay org-speedbar-restriction-lock-overlay)
7173 (setq org-agenda-overriding-restriction nil)
7174 (setq org-agenda-restrict nil)
7175 (put 'org-agenda-files 'org-restrict nil)
7176 (move-marker org-agenda-restrict-begin nil)
7177 (move-marker org-agenda-restrict-end nil)
7178 (setq current-prefix-arg nil)
7179 (message "Agenda restriction lock removed")
7180 (or noupdate (org-agenda-maybe-redo)))
7182 (defun org-agenda-maybe-redo ()
7183 "If there is any window showing the agenda view, update it."
7184 (let ((w (get-buffer-window (or org-agenda-this-buffer-name
7185 org-agenda-buffer-name)
7187 (w0 (selected-window)))
7188 (when w
7189 (select-window w)
7190 (org-agenda-redo)
7191 (select-window w0)
7192 (if org-agenda-overriding-restriction
7193 (message "Agenda view shifted to new %s restriction"
7194 org-agenda-overriding-restriction)
7195 (message "Agenda restriction lock removed")))))
7197 ;;; Agenda commands
7199 (defun org-agenda-check-type (error &rest types)
7200 "Check if agenda buffer is of allowed type.
7201 If ERROR is non-nil, throw an error, otherwise just return nil.
7202 Allowed types are `agenda' `todo' `tags' `search'."
7203 (cond ((not org-agenda-type)
7204 (error "No Org agenda currently displayed"))
7205 ((memq org-agenda-type types) t)
7206 (error
7207 (error "Not allowed in %s-type agenda buffers" org-agenda-type))
7208 (t nil)))
7210 (defun org-agenda-Quit ()
7211 "Exit the agenda, killing the agenda buffer.
7212 Like `org-agenda-quit', but kill the buffer even when
7213 `org-agenda-sticky' is non-nil."
7214 (interactive)
7215 (org-agenda--quit))
7217 (defun org-agenda-quit ()
7218 "Exit the agenda.
7220 When `org-agenda-sticky' is non-nil, bury the agenda buffer
7221 instead of killing it.
7223 When `org-agenda-restore-windows-after-quit' is non-nil, restore
7224 the pre-agenda window configuration.
7226 When column view is active, exit column view instead of the
7227 agenda."
7228 (interactive)
7229 (org-agenda--quit org-agenda-sticky))
7231 (defun org-agenda--quit (&optional bury)
7232 (if org-agenda-columns-active
7233 (org-columns-quit)
7234 (let ((wconf org-agenda-pre-window-conf)
7235 (buf (current-buffer))
7236 (org-agenda-last-indirect-window
7237 (and (eq org-indirect-buffer-display 'other-window)
7238 org-agenda-last-indirect-buffer
7239 (get-buffer-window org-agenda-last-indirect-buffer))))
7240 (cond
7241 ((eq org-agenda-window-setup 'other-frame)
7242 (delete-frame))
7243 ((and org-agenda-restore-windows-after-quit
7244 wconf)
7245 ;; Maybe restore the pre-agenda window configuration. Reset
7246 ;; `org-agenda-pre-window-conf' before running
7247 ;; `set-window-configuration', which loses the current buffer.
7248 (setq org-agenda-pre-window-conf nil)
7249 (set-window-configuration wconf))
7251 (when org-agenda-last-indirect-window
7252 (delete-window org-agenda-last-indirect-window))
7253 (and (not (eq org-agenda-window-setup 'current-window))
7254 (not (one-window-p))
7255 (delete-window))))
7256 (if bury
7257 ;; Set the agenda buffer as the current buffer instead of
7258 ;; passing it as an argument to `bury-buffer' so that
7259 ;; `bury-buffer' removes it from the window.
7260 (with-current-buffer buf
7261 (bury-buffer))
7262 (kill-buffer buf)
7263 (setq org-agenda-archives-mode nil
7264 org-agenda-buffer nil)))))
7266 (defun org-agenda-exit ()
7267 "Exit the agenda, killing Org buffers loaded by the agenda.
7268 Like `org-agenda-Quit', but kill any buffers that were created by
7269 the agenda. Org buffers visited directly by the user will not be
7270 touched. Also, exit the agenda even if it is in column view."
7271 (interactive)
7272 (when org-agenda-columns-active
7273 (org-columns-quit))
7274 (org-release-buffers org-agenda-new-buffers)
7275 (setq org-agenda-new-buffers nil)
7276 (org-agenda-Quit))
7278 (defun org-agenda-kill-all-agenda-buffers ()
7279 "Kill all buffers in `org-agenda-mode'.
7280 This is used when toggling sticky agendas."
7281 (interactive)
7282 (let (blist)
7283 (dolist (buf (buffer-list))
7284 (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
7285 (push buf blist)))
7286 (mapc 'kill-buffer blist)))
7288 (defun org-agenda-execute (arg)
7289 "Execute another agenda command, keeping same window.
7290 So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
7291 in the agenda."
7292 (interactive "P")
7293 (let ((org-agenda-window-setup 'current-window))
7294 (org-agenda arg)))
7296 (defun org-agenda-redo (&optional all)
7297 "Rebuild possibly ALL agenda view(s) in the current buffer."
7298 (interactive "P")
7299 (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
7300 (cpa (unless (eq all t) current-prefix-arg))
7301 (org-agenda-doing-sticky-redo org-agenda-sticky)
7302 (org-agenda-sticky nil)
7303 (org-agenda-buffer-name (or org-agenda-this-buffer-name
7304 org-agenda-buffer-name))
7305 (org-agenda-keep-modes t)
7306 (tag-filter org-agenda-tag-filter)
7307 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
7308 (top-hl-filter org-agenda-top-headline-filter)
7309 (cat-filter org-agenda-category-filter)
7310 (cat-preset (get 'org-agenda-category-filter :preset-filter))
7311 (re-filter org-agenda-regexp-filter)
7312 (re-preset (get 'org-agenda-regexp-filter :preset-filter))
7313 (effort-filter org-agenda-effort-filter)
7314 (effort-preset (get 'org-agenda-effort-filter :preset-filter))
7315 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
7316 (cols org-agenda-columns-active)
7317 (line (org-current-line))
7318 (window-line (- line (org-current-line (window-start))))
7319 (lprops (get 'org-agenda-redo-command 'org-lprops))
7320 (redo-cmd (get-text-property p 'org-redo-cmd))
7321 (last-args (get-text-property p 'org-last-args))
7322 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
7323 (org-agenda-overriding-cmd-arguments
7324 (unless (eq all t)
7325 (cond ((listp last-args)
7326 (cons (or cpa (car last-args)) (cdr last-args)))
7327 ((stringp last-args)
7328 last-args))))
7329 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
7330 (put 'org-agenda-tag-filter :preset-filter nil)
7331 (put 'org-agenda-category-filter :preset-filter nil)
7332 (put 'org-agenda-regexp-filter :preset-filter nil)
7333 (put 'org-agenda-effort-filter :preset-filter nil)
7334 (and cols (org-columns-quit))
7335 (message "Rebuilding agenda buffer...")
7336 (if series-redo-cmd
7337 (eval series-redo-cmd)
7338 (org-let lprops redo-cmd))
7339 (setq org-agenda-undo-list nil
7340 org-agenda-pending-undo-list nil
7341 org-agenda-tag-filter tag-filter
7342 org-agenda-category-filter cat-filter
7343 org-agenda-regexp-filter re-filter
7344 org-agenda-effort-filter effort-filter
7345 org-agenda-top-headline-filter top-hl-filter)
7346 (message "Rebuilding agenda buffer...done")
7347 (put 'org-agenda-tag-filter :preset-filter tag-preset)
7348 (put 'org-agenda-category-filter :preset-filter cat-preset)
7349 (put 'org-agenda-regexp-filter :preset-filter re-preset)
7350 (put 'org-agenda-effort-filter :preset-filter effort-preset)
7351 (let ((tag (or tag-filter tag-preset))
7352 (cat (or cat-filter cat-preset))
7353 (effort (or effort-filter effort-preset))
7354 (re (or re-filter re-preset)))
7355 (when tag (org-agenda-filter-apply tag 'tag t))
7356 (when cat (org-agenda-filter-apply cat 'category))
7357 (when effort (org-agenda-filter-apply effort 'effort))
7358 (when re (org-agenda-filter-apply re 'regexp)))
7359 (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
7360 (and cols (called-interactively-p 'any) (org-agenda-columns))
7361 (org-goto-line line)
7362 (recenter window-line)))
7364 (defun org-agenda-redo-all (&optional exhaustive)
7365 "Rebuild all agenda views in the current buffer.
7366 With a prefix argument, do so in all agenda buffers."
7367 (interactive "P")
7368 (if exhaustive
7369 (dolist (buffer (buffer-list))
7370 (with-current-buffer buffer
7371 (when (derived-mode-p 'org-agenda-mode)
7372 (org-agenda-redo t))))
7373 (org-agenda-redo t)))
7375 (defvar org-global-tags-completion-table nil)
7376 (defvar org-agenda-filter-form nil)
7377 (defvar org-agenda-filtered-by-category nil)
7379 (defun org-agenda-filter-by-category (strip)
7380 "Filter lines in the agenda buffer that have a specific category.
7381 The category is that of the current line.
7382 Without prefix argument, keep only the lines of that category.
7383 With a prefix argument, exclude the lines of that category.
7385 (interactive "P")
7386 (if (and org-agenda-filtered-by-category
7387 org-agenda-category-filter)
7388 (org-agenda-filter-show-all-cat)
7389 (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
7390 (cond
7391 ((and cat strip)
7392 (org-agenda-filter-apply
7393 (push (concat "-" cat) org-agenda-category-filter) 'category))
7394 (cat
7395 (org-agenda-filter-apply
7396 (setq org-agenda-category-filter
7397 (list (concat "+" cat))) 'category))
7398 (t (error "No category at point"))))))
7400 (defun org-find-top-headline (&optional pos)
7401 "Find the topmost parent headline and return it.
7402 POS when non-nil is the marker or buffer position to start the
7403 search from."
7404 (save-excursion
7405 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
7406 (when pos (goto-char pos))
7407 ;; Skip up to the topmost parent.
7408 (while (org-up-heading-safe))
7409 (ignore-errors (nth 4 (org-heading-components))))))
7411 (defvar org-agenda-filtered-by-top-headline nil)
7412 (defun org-agenda-filter-by-top-headline (strip)
7413 "Keep only those lines that are descendants from the same top headline.
7414 The top headline is that of the current line."
7415 (interactive "P")
7416 (if org-agenda-filtered-by-top-headline
7417 (progn
7418 (setq org-agenda-filtered-by-top-headline nil
7419 org-agenda-top-headline-filter nil)
7420 (org-agenda-filter-show-all-top-filter))
7421 (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
7422 (if toph (org-agenda-filter-top-headline-apply toph strip)
7423 (error "No top-level headline at point")))))
7425 (defvar org-agenda-regexp-filter nil)
7426 (defun org-agenda-filter-by-regexp (strip)
7427 "Filter agenda entries by a regular expression.
7428 Regexp filters are cumulative.
7429 With no prefix argument, keep entries matching the regexp.
7430 With one prefix argument, filter out entries matching the regexp.
7431 With two prefix arguments, remove the regexp filters."
7432 (interactive "P")
7433 (if (not (equal strip '(16)))
7434 (let ((flt (concat (if (equal strip '(4)) "-" "+")
7435 (read-from-minibuffer
7436 (if (equal strip '(4))
7437 "Filter out entries matching regexp: "
7438 "Narrow to entries matching regexp: ")))))
7439 (push flt org-agenda-regexp-filter)
7440 (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
7441 (org-agenda-filter-show-all-re)
7442 (message "Regexp filter removed")))
7444 (defvar org-agenda-effort-filter nil)
7445 (defun org-agenda-filter-by-effort (strip)
7446 "Filter agenda entries by effort.
7447 With no prefix argument, keep entries matching the effort condition.
7448 With one prefix argument, filter out entries matching the condition.
7449 With two prefix arguments, remove the effort filters."
7450 (interactive "P")
7451 (cond
7452 ((member strip '(nil 4))
7453 (let* ((efforts (split-string
7454 (or (cdr (assoc (concat org-effort-property "_ALL")
7455 org-global-properties))
7456 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
7457 ;; XXX: the following handles only up to 10 different
7458 ;; effort values.
7459 (allowed-keys (if (null efforts) nil
7460 (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
7461 (number-sequence 1 (length efforts)))))
7462 (op nil))
7463 (while (not (memq op '(?< ?> ?=)))
7464 (setq op (read-char-exclusive "Effort operator? (> = or <)")))
7465 ;; Select appropriate duration. Ignore non-digit characters.
7466 (let ((prompt
7467 (apply #'format
7468 (concat "Effort %c "
7469 (mapconcat (lambda (s) (concat "[%d]" s))
7470 efforts
7471 " "))
7472 op allowed-keys))
7473 (eff -1))
7474 (while (not (memq eff allowed-keys))
7475 (message prompt)
7476 (setq eff (- (read-char-exclusive) 48)))
7477 (setq org-agenda-effort-filter
7478 (list (concat (if strip "-" "+")
7479 (char-to-string op)
7480 ;; Numbering is 1 2 3 ... 9 0, but we want
7481 ;; 0 1 2 ... 8 9.
7482 (nth (mod (1- eff) 10) efforts)))))
7483 (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
7484 (t (org-agenda-filter-show-all-effort)
7485 (message "Effort filter removed"))))
7487 (defun org-agenda-filter-remove-all ()
7488 "Remove all filters from the current agenda buffer."
7489 (interactive)
7490 (when org-agenda-tag-filter
7491 (org-agenda-filter-show-all-tag))
7492 (when org-agenda-category-filter
7493 (org-agenda-filter-show-all-cat))
7494 (when org-agenda-regexp-filter
7495 (org-agenda-filter-show-all-re))
7496 (when org-agenda-top-headline-filter
7497 (org-agenda-filter-show-all-top-filter))
7498 (when org-agenda-effort-filter
7499 (org-agenda-filter-show-all-effort))
7500 (org-agenda-finalize))
7502 (defun org-agenda-filter-by-tag (arg &optional char exclude)
7503 "Keep only those lines in the agenda buffer that have a specific tag.
7505 The tag is selected with its fast selection letter, as configured.
7507 With a `\\[universal-argument]' prefix, exclude the agenda search.
7509 With a `\\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
7510 i.e. don't
7511 filter on all its group members.
7513 A lisp caller can specify CHAR. EXCLUDE means that the new tag
7514 should be used to exclude the search - the interactive user can
7515 also press `-' or `+' to switch between filtering and excluding."
7516 (interactive "P")
7517 (let* ((alist org-tag-alist-for-agenda)
7518 (tag-chars (mapconcat
7519 (lambda (x) (if (and (not (symbolp (car x)))
7520 (cdr x))
7521 (char-to-string (cdr x))
7522 ""))
7523 org-tag-alist-for-agenda ""))
7524 (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
7525 (string-to-list tag-chars)))
7526 (exclude (or exclude (equal arg '(4))))
7527 (expand (not (equal arg '(16))))
7528 (inhibit-read-only t)
7529 (current org-agenda-tag-filter)
7530 a n tag)
7531 (unless char
7532 (while (not (memq char valid-char-list))
7533 (org-unlogged-message
7534 "%s by tag [%s ]:tag-char, [TAB]:tag, %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
7535 (if exclude "Exclude" "Filter")
7536 tag-chars
7537 (if org-agenda-auto-exclude-function "[RET], " "")
7538 (if expand "" ", no grouptag expand"))
7539 (setq char (read-char-exclusive))
7540 ;; Excluding or filtering down
7541 (cond ((eq char ?-) (setq exclude t))
7542 ((eq char ?+) (setq exclude nil)))))
7543 (when (eq char ?\t)
7544 (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
7545 (setq-local org-global-tags-completion-table
7546 (org-global-tags-completion-table)))
7547 (let ((completion-ignore-case t))
7548 (setq tag (completing-read
7549 "Tag: " org-global-tags-completion-table nil t))))
7550 (cond
7551 ((eq char ?\r)
7552 (org-agenda-filter-show-all-tag)
7553 (when org-agenda-auto-exclude-function
7554 (setq org-agenda-tag-filter nil)
7555 (dolist (tag (org-agenda-get-represented-tags))
7556 (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
7557 (if modifier
7558 (push modifier org-agenda-tag-filter))))
7559 (if (not (null org-agenda-tag-filter))
7560 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
7561 ((eq char ?/)
7562 (org-agenda-filter-show-all-tag)
7563 (when (get 'org-agenda-tag-filter :preset-filter)
7564 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
7565 ((eq char ?.)
7566 (setq org-agenda-tag-filter
7567 (mapcar (lambda(tag) (concat "+" tag))
7568 (org-get-at-bol 'tags)))
7569 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
7570 ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
7571 ((or (eq char ?\s)
7572 (setq a (rassoc char alist))
7573 (and tag (setq a (cons tag nil))))
7574 (org-agenda-filter-show-all-tag)
7575 (setq tag (car a))
7576 (setq org-agenda-tag-filter
7577 (cons (concat (if exclude "-" "+") tag)
7578 current))
7579 (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
7580 (t (error "Invalid tag selection character %c" char)))))
7582 (defun org-agenda-get-represented-tags ()
7583 "Get a list of all tags currently represented in the agenda."
7584 (let (p tags)
7585 (save-excursion
7586 (goto-char (point-min))
7587 (while (setq p (next-single-property-change (point) 'tags))
7588 (goto-char p)
7589 (mapc (lambda (x) (add-to-list 'tags x))
7590 (get-text-property (point) 'tags))))
7591 tags))
7594 (defun org-agenda-filter-make-matcher (filter type &optional expand)
7595 "Create the form that tests a line for agenda filter. Optional
7596 argument EXPAND can be used for the TYPE tag and will expand the
7597 tags in the FILTER if any of the tags in FILTER are grouptags."
7598 (let (f f1)
7599 (cond
7600 ;; Tag filter
7601 ((eq type 'tag)
7602 (setq filter
7603 (delete-dups
7604 (append (get 'org-agenda-tag-filter :preset-filter)
7605 filter)))
7606 (dolist (x filter)
7607 (let ((op (string-to-char x)))
7608 (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
7609 (setq x (list x)))
7610 (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
7611 (push f1 f))))
7612 ;; Category filter
7613 ((eq type 'category)
7614 (setq filter
7615 (delete-dups
7616 (append (get 'org-agenda-category-filter :preset-filter)
7617 filter)))
7618 (dolist (x filter)
7619 (if (equal "-" (substring x 0 1))
7620 (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
7621 (setq f1 (list 'equal (substring x 1) 'cat)))
7622 (push f1 f)))
7623 ;; Regexp filter
7624 ((eq type 'regexp)
7625 (setq filter
7626 (delete-dups
7627 (append (get 'org-agenda-regexp-filter :preset-filter)
7628 filter)))
7629 (dolist (x filter)
7630 (if (equal "-" (substring x 0 1))
7631 (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
7632 (setq f1 (list 'string-match (substring x 1) 'txt)))
7633 (push f1 f)))
7634 ;; Effort filter
7635 ((eq type 'effort)
7636 (setq filter
7637 (delete-dups
7638 (append (get 'org-agenda-effort-filter :preset-filter)
7639 filter)))
7640 (dolist (x filter)
7641 (push (org-agenda-filter-effort-form x) f))))
7642 (cons 'and (nreverse f))))
7644 (defun org-agenda-filter-make-matcher-tag-exp (tags op)
7645 "Return a form associated to tag-expression TAGS.
7646 Build a form testing a line for agenda filter for
7647 tag-expressions. OP is an operator of type CHAR that allows the
7648 function to set the right switches in the returned form."
7649 (let (form)
7650 ;; Any of the expressions can match if OP is +, all must match if
7651 ;; the operator is -.
7652 (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
7653 (let* ((tag (substring x 1))
7654 (f (cond
7655 ((string= "" tag) '(not tags))
7656 ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
7657 ;; TAG is a regexp.
7658 (list 'org-match-any-p (substring tag 1 -1) 'tags))
7659 (t (list 'member (downcase tag) 'tags)))))
7660 (push (if (eq op ?-) (list 'not f) f) form)))))
7662 (defun org-agenda-filter-effort-form (e)
7663 "Return the form to compare the effort of the current line with what E says.
7664 E looks like \"+<2:25\"."
7665 (let (op)
7666 (setq e (substring e 1))
7667 (setq op (string-to-char e) e (substring e 1))
7668 (setq op (cond ((equal op ?<) '<=)
7669 ((equal op ?>) '>=)
7670 ((equal op ??) op)
7671 (t '=)))
7672 (list 'org-agenda-compare-effort (list 'quote op)
7673 (org-duration-to-minutes e))))
7675 (defun org-agenda-compare-effort (op value)
7676 "Compare the effort of the current line with VALUE, using OP.
7677 If the line does not have an effort defined, return nil."
7678 ;; `effort-minutes' property cannot be extracted directly from
7679 ;; current line but is stored as a property in `txt'.
7680 (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
7681 (funcall op
7682 (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
7683 value)))
7685 (defun org-agenda-filter-expand-tags (filter &optional no-operator)
7686 "Expand group tags in FILTER for the agenda.
7687 When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
7688 (if org-group-tags
7689 (let ((case-fold-search t) rtn)
7690 (mapc
7691 (lambda (f)
7692 (let (f0 dir)
7693 (if (string-match "^\\([+-]\\)\\(.+\\)" f)
7694 (setq dir (match-string 1 f) f0 (match-string 2 f))
7695 (setq dir (if no-operator "" "+") f0 f))
7696 (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
7697 (org-tags-expand f0 t t))
7698 rtn))))
7699 filter)
7700 (reverse rtn))
7701 filter))
7703 (defun org-agenda-filter-apply (filter type &optional expand)
7704 "Set FILTER as the new agenda filter and apply it. Optional
7705 argument EXPAND can be used for the TYPE tag and will expand the
7706 tags in the FILTER if any of the tags in FILTER are grouptags."
7707 ;; Deactivate `org-agenda-entry-text-mode' when filtering
7708 (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
7709 (let (tags cat txt)
7710 (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
7711 ;; Only set `org-agenda-filtered-by-category' to t when a unique
7712 ;; category is used as the filter:
7713 (setq org-agenda-filtered-by-category
7714 (and (eq type 'category)
7715 (not (equal (substring (car filter) 0 1) "-"))))
7716 (org-agenda-set-mode-name)
7717 (save-excursion
7718 (goto-char (point-min))
7719 (while (not (eobp))
7720 (if (org-get-at-bol 'org-marker)
7721 (progn
7722 (setq tags (org-get-at-bol 'tags)
7723 cat (org-get-at-eol 'org-category 1)
7724 txt (org-get-at-bol 'txt))
7725 (if (not (eval org-agenda-filter-form))
7726 (org-agenda-filter-hide-line type))
7727 (beginning-of-line 2))
7728 (beginning-of-line 2))))
7729 (if (get-char-property (point) 'invisible)
7730 (ignore-errors (org-agenda-previous-line)))))
7732 (defun org-agenda-filter-top-headline-apply (hl &optional negative)
7733 "Filter by top headline HL."
7734 (org-agenda-set-mode-name)
7735 (save-excursion
7736 (goto-char (point-min))
7737 (while (not (eobp))
7738 (let* ((pos (org-get-at-bol 'org-hd-marker))
7739 (tophl (and pos (org-find-top-headline pos))))
7740 (if (and tophl (funcall (if negative 'identity 'not)
7741 (string= hl tophl)))
7742 (org-agenda-filter-hide-line 'top-headline)))
7743 (beginning-of-line 2)))
7744 (if (get-char-property (point) 'invisible)
7745 (org-agenda-previous-line))
7746 (setq org-agenda-top-headline-filter hl
7747 org-agenda-filtered-by-top-headline t))
7749 (defun org-agenda-filter-hide-line (type)
7750 "Hide lines with TYPE in the agenda buffer."
7751 (let* ((b (max (point-min) (1- (point-at-bol))))
7752 (e (point-at-eol)))
7753 (let ((inhibit-read-only t))
7754 (add-text-properties
7755 b e `(invisible org-filtered org-filter-type ,type)))))
7757 (defun org-agenda-remove-filter (type)
7758 (interactive)
7759 "Remove filter of type TYPE from the agenda buffer."
7760 (save-excursion
7761 (goto-char (point-min))
7762 (let ((inhibit-read-only t) pos)
7763 (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
7764 (goto-char pos)
7765 (remove-text-properties
7766 (point) (next-single-property-change (point) 'org-filter-type)
7767 `(invisible org-filtered org-filter-type ,type))))
7768 (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
7769 (setq org-agenda-filter-form nil)
7770 (org-agenda-set-mode-name)
7771 (org-agenda-finalize)))
7773 (defun org-agenda-filter-show-all-tag nil
7774 (org-agenda-remove-filter 'tag))
7775 (defun org-agenda-filter-show-all-re nil
7776 (org-agenda-remove-filter 'regexp))
7777 (defun org-agenda-filter-show-all-effort nil
7778 (org-agenda-remove-filter 'effort))
7779 (defun org-agenda-filter-show-all-cat nil
7780 (org-agenda-remove-filter 'category))
7781 (defun org-agenda-filter-show-all-top-filter nil
7782 (org-agenda-remove-filter 'top-headline))
7784 (defun org-agenda-manipulate-query-add ()
7785 "Manipulate the query by adding a search term with positive selection.
7786 Positive selection means the term must be matched for selection of an entry."
7787 (interactive)
7788 (org-agenda-manipulate-query ?\[))
7789 (defun org-agenda-manipulate-query-subtract ()
7790 "Manipulate the query by adding a search term with negative selection.
7791 Negative selection means term must not be matched for selection of an entry."
7792 (interactive)
7793 (org-agenda-manipulate-query ?\]))
7794 (defun org-agenda-manipulate-query-add-re ()
7795 "Manipulate the query by adding a search regexp with positive selection.
7796 Positive selection means the regexp must match for selection of an entry."
7797 (interactive)
7798 (org-agenda-manipulate-query ?\{))
7799 (defun org-agenda-manipulate-query-subtract-re ()
7800 "Manipulate the query by adding a search regexp with negative selection.
7801 Negative selection means regexp must not match for selection of an entry."
7802 (interactive)
7803 (org-agenda-manipulate-query ?\}))
7804 (defun org-agenda-manipulate-query (char)
7805 (cond
7806 ((eq org-agenda-type 'agenda)
7807 (let ((org-agenda-include-inactive-timestamps t))
7808 (org-agenda-redo))
7809 (message "Display now includes inactive timestamps as well"))
7810 ((eq org-agenda-type 'search)
7811 (org-add-to-string
7812 'org-agenda-query-string
7813 (if org-agenda-last-search-view-search-was-boolean
7814 (cdr (assoc char '((?\[ . " +") (?\] . " -")
7815 (?\{ . " +{}") (?\} . " -{}"))))
7816 " "))
7817 (setq org-agenda-redo-command
7818 (list 'org-search-view
7819 (car (get-text-property (min (1- (point-max)) (point))
7820 'org-last-args))
7821 org-agenda-query-string
7822 (+ (length org-agenda-query-string)
7823 (if (member char '(?\{ ?\})) 0 1))))
7824 (set-register org-agenda-query-register org-agenda-query-string)
7825 (let ((org-agenda-overriding-arguments
7826 (cdr org-agenda-redo-command)))
7827 (org-agenda-redo)))
7828 (t (error "Cannot manipulate query for %s-type agenda buffers"
7829 org-agenda-type))))
7831 (defun org-add-to-string (var string)
7832 (set var (concat (symbol-value var) string)))
7834 (defun org-agenda-goto-date (span)
7835 "Jump to DATE in agenda."
7836 (interactive "P")
7837 (let* ((org-read-date-prefer-future
7838 (eval org-agenda-jump-prefer-future))
7839 (date (org-read-date))
7840 (day (time-to-days (org-time-string-to-time date)))
7841 (org-agenda-sticky-orig org-agenda-sticky)
7842 (org-agenda-buffer-tmp-name (buffer-name))
7843 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7844 (0-arg (or current-prefix-arg (car args)))
7845 (2-arg (nth 2 args))
7846 (with-hour-p (nth 4 org-agenda-redo-command))
7847 (newcmd (list 'org-agenda-list 0-arg date
7848 (org-agenda-span-to-ndays
7849 2-arg (org-time-string-to-absolute date))
7850 with-hour-p))
7851 (newargs (cdr newcmd))
7852 (inhibit-read-only t)
7853 org-agenda-sticky)
7854 (if (not (org-agenda-check-type t 'agenda))
7855 (error "Not available in non-agenda views")
7856 (add-text-properties (point-min) (point-max)
7857 `(org-redo-cmd ,newcmd org-last-args ,newargs))
7858 (org-agenda-redo)
7859 (goto-char (point-min))
7860 (while (not (or (= (or (get-text-property (point) 'day) 0) day)
7861 (save-excursion (move-beginning-of-line 2) (eobp))))
7862 (move-beginning-of-line 2))
7863 (setq org-agenda-sticky org-agenda-sticky-orig
7864 org-agenda-this-buffer-is-sticky org-agenda-sticky))))
7866 (defun org-agenda-goto-today ()
7867 "Go to today."
7868 (interactive)
7869 (org-agenda-check-type t 'agenda)
7870 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7871 (curspan (nth 2 args))
7872 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
7873 (cond
7874 (tdpos (goto-char tdpos))
7875 ((eq org-agenda-type 'agenda)
7876 (let* ((sd (org-agenda-compute-starting-span
7877 (org-today) (or curspan org-agenda-span)))
7878 (org-agenda-overriding-arguments args))
7879 (setf (nth 1 org-agenda-overriding-arguments) sd)
7880 (org-agenda-redo)
7881 (org-agenda-find-same-or-today-or-agenda)))
7882 (t (error "Cannot find today")))))
7884 (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
7885 (goto-char
7886 (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
7887 (text-property-any (point-min) (point-max) 'org-today t)
7888 (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
7889 (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
7890 (org-agenda-backward-block))
7891 (point-min))))
7893 (defun org-agenda-backward-block ()
7894 "Move backward by one agenda block."
7895 (interactive)
7896 (org-agenda-forward-block 'backward))
7898 (defun org-agenda-forward-block (&optional backward)
7899 "Move forward by one agenda block.
7900 When optional argument BACKWARD is set, go backward"
7901 (interactive)
7902 (cond ((not (derived-mode-p 'org-agenda-mode))
7903 (user-error
7904 "Cannot execute this command outside of org-agenda-mode buffers"))
7905 ((looking-at (if backward "\\`" "\\'"))
7906 (message "Already at the %s block" (if backward "first" "last")))
7907 (t (let ((pos (prog1 (point)
7908 (ignore-errors (if backward (backward-char 1)
7909 (move-end-of-line 1)))))
7910 (f (if backward
7911 'previous-single-property-change
7912 'next-single-property-change))
7913 moved dest)
7914 (while (and (setq dest (funcall
7915 f (point) 'org-agenda-structural-header))
7916 (not (get-text-property
7917 (point) 'org-agenda-structural-header)))
7918 (setq moved t)
7919 (goto-char dest))
7920 (if moved (move-beginning-of-line 1)
7921 (goto-char (if backward (point-min) (point-max)))
7922 (move-beginning-of-line 1)
7923 (message "No %s block" (if backward "previous" "further")))))))
7925 (defun org-agenda-later (arg)
7926 "Go forward in time by the current span.
7927 With prefix ARG, go forward that many times the current span."
7928 (interactive "p")
7929 (org-agenda-check-type t 'agenda)
7930 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
7931 (span (or (nth 2 args) org-agenda-current-span))
7932 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
7933 (greg (calendar-gregorian-from-absolute sd))
7934 (cnt (org-get-at-bol 'org-day-cnt))
7935 greg2)
7936 (cond
7937 ((numberp span)
7938 (setq sd (+ (* span arg) sd)))
7939 ((eq span 'day)
7940 (setq sd (+ arg sd)))
7941 ((eq span 'week)
7942 (setq sd (+ (* 7 arg) sd)))
7943 ((eq span 'fortnight)
7944 (setq sd (+ (* 14 arg) sd)))
7945 ((eq span 'month)
7946 (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
7947 sd (calendar-absolute-from-gregorian greg2))
7948 (setcar greg2 (1+ (car greg2))))
7949 ((eq span 'year)
7950 (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
7951 sd (calendar-absolute-from-gregorian greg2))
7952 (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
7954 (setq sd (+ (* span arg) sd))))
7955 (let ((org-agenda-overriding-cmd
7956 ;; `cmd' may have been set by `org-agenda-run-series' which
7957 ;; uses `org-agenda-overriding-cmd' to decide whether
7958 ;; overriding is allowed for `cmd'
7959 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
7960 (org-agenda-overriding-arguments
7961 (list (car args) sd span)))
7962 (org-agenda-redo)
7963 (org-agenda-find-same-or-today-or-agenda cnt))))
7965 (defun org-agenda-earlier (arg)
7966 "Go backward in time by the current span.
7967 With prefix ARG, go backward that many times the current span."
7968 (interactive "p")
7969 (org-agenda-later (- arg)))
7971 (defun org-agenda-view-mode-dispatch ()
7972 "Call one of the view mode commands."
7973 (interactive)
7974 (org-unlogged-message
7975 "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
7976 time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
7977 [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
7978 (pcase (read-char-exclusive)
7979 (?\ (call-interactively 'org-agenda-reset-view))
7980 (?d (call-interactively 'org-agenda-day-view))
7981 (?w (call-interactively 'org-agenda-week-view))
7982 (?t (call-interactively 'org-agenda-fortnight-view))
7983 (?m (call-interactively 'org-agenda-month-view))
7984 (?y (call-interactively 'org-agenda-year-view))
7985 (?l (call-interactively 'org-agenda-log-mode))
7986 (?L (org-agenda-log-mode '(4)))
7987 (?c (org-agenda-log-mode 'clockcheck))
7988 ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
7989 (?a (call-interactively 'org-agenda-archives-mode))
7990 (?A (org-agenda-archives-mode 'files))
7991 ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
7992 ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
7993 (?G (call-interactively 'org-agenda-toggle-time-grid))
7994 (?D (call-interactively 'org-agenda-toggle-diary))
7995 (?\! (call-interactively 'org-agenda-toggle-deadlines))
7996 (?\[ (let ((org-agenda-include-inactive-timestamps t))
7997 (org-agenda-check-type t 'agenda)
7998 (org-agenda-redo))
7999 (message "Display now includes inactive timestamps as well"))
8000 (?q (message "Abort"))
8001 (key (user-error "Invalid key: %s" key))))
8003 (defun org-agenda-reset-view ()
8004 "Switch to default view for agenda."
8005 (interactive)
8006 (org-agenda-change-time-span org-agenda-span))
8008 (defun org-agenda-day-view (&optional day-of-month)
8009 "Switch to daily view for agenda.
8010 With argument DAY-OF-MONTH, switch to that day of the month."
8011 (interactive "P")
8012 (org-agenda-change-time-span 'day day-of-month))
8014 (defun org-agenda-week-view (&optional iso-week)
8015 "Switch to weekly view for agenda.
8016 With argument ISO-WEEK, switch to the corresponding ISO week.
8017 If ISO-WEEK has more then 2 digits, only the last two encode
8018 the week. Any digits before this encode a year. So 200712
8019 means week 12 of year 2007. Years ranging from 70 years ago
8020 to 30 years in the future can also be written as 2-digit years."
8021 (interactive "P")
8022 (org-agenda-change-time-span 'week iso-week))
8024 (defun org-agenda-fortnight-view (&optional iso-week)
8025 "Switch to fortnightly view for agenda.
8026 With argument ISO-WEEK, switch to the corresponding ISO week.
8027 If ISO-WEEK has more then 2 digits, only the last two encode
8028 the week. Any digits before this encode a year. So 200712
8029 means week 12 of year 2007. Years ranging from 70 years ago
8030 to 30 years in the future can also be written as 2-digit years."
8031 (interactive "P")
8032 (org-agenda-change-time-span 'fortnight iso-week))
8034 (defun org-agenda-month-view (&optional month)
8035 "Switch to monthly view for agenda.
8036 With argument MONTH, switch to that month. If MONTH has more
8037 then 2 digits, only the last two encode the month. Any digits
8038 before this encode a year. So 200712 means December year 2007.
8039 Years ranging from 70 years ago to 30 years in the future can
8040 also be written as 2-digit years."
8041 (interactive "P")
8042 (org-agenda-change-time-span 'month month))
8044 (defun org-agenda-year-view (&optional year)
8045 "Switch to yearly view for agenda.
8046 With argument YEAR, switch to that year. Years ranging from 70
8047 years ago to 30 years in the future can also be written as
8048 2-digit years."
8049 (interactive "P")
8050 (when year
8051 (setq year (org-small-year-to-year year)))
8052 (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
8053 (org-agenda-change-time-span 'year year)
8054 (error "Abort")))
8056 (defun org-agenda-change-time-span (span &optional n)
8057 "Change the agenda view to SPAN.
8058 SPAN may be `day', `week', `fortnight', `month', `year'."
8059 (org-agenda-check-type t 'agenda)
8060 (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
8061 (curspan (nth 2 args)))
8062 (if (and (not n) (equal curspan span))
8063 (error "Viewing span is already \"%s\"" span))
8064 (let* ((sd (or (org-get-at-bol 'day)
8065 (nth 1 args)
8066 org-starting-day))
8067 (sd (org-agenda-compute-starting-span sd span n))
8068 (org-agenda-overriding-cmd
8069 (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
8070 (org-agenda-overriding-arguments
8071 (list (car args) sd span)))
8072 (org-agenda-redo)
8073 (org-agenda-find-same-or-today-or-agenda))
8074 (org-agenda-set-mode-name)
8075 (message "Switched to %s view" span)))
8077 (defun org-agenda-compute-starting-span (sd span &optional n)
8078 "Compute starting date for agenda.
8079 SPAN may be `day', `week', `fortnight', `month', `year'. The return value
8080 is a cons cell with the starting date and the number of days,
8081 so that the date SD will be in that range."
8082 (let* ((greg (calendar-gregorian-from-absolute sd))
8083 (dg (nth 1 greg))
8084 (mg (car greg))
8085 (yg (nth 2 greg)))
8086 (cond
8087 ((eq span 'day)
8088 (when n
8089 (setq sd (+ (calendar-absolute-from-gregorian
8090 (list mg 1 yg))
8091 n -1))))
8092 ((or (eq span 'week) (eq span 'fortnight))
8093 (let* ((nt (calendar-day-of-week
8094 (calendar-gregorian-from-absolute sd)))
8095 (d (if org-agenda-start-on-weekday
8096 (- nt org-agenda-start-on-weekday)
8099 (setq sd (- sd (+ (if (< d 0) 7 0) d)))
8100 (when n
8101 (require 'cal-iso)
8102 (when (> n 99)
8103 (setq y1 (org-small-year-to-year (/ n 100))
8104 n (mod n 100)))
8105 (setq sd
8106 (calendar-iso-to-absolute
8107 (list n 1
8108 (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
8109 ((eq span 'month)
8110 (let (y1)
8111 (when (and n (> n 99))
8112 (setq y1 (org-small-year-to-year (/ n 100))
8113 n (mod n 100)))
8114 (setq sd (calendar-absolute-from-gregorian
8115 (list (or n mg) 1 (or y1 yg))))))
8116 ((eq span 'year)
8117 (setq sd (calendar-absolute-from-gregorian
8118 (list 1 1 (or n yg))))))
8119 sd))
8121 (defun org-agenda-next-date-line (&optional arg)
8122 "Jump to the next line indicating a date in agenda buffer."
8123 (interactive "p")
8124 (org-agenda-check-type t 'agenda)
8125 (beginning-of-line 1)
8126 ;; This does not work if user makes date format that starts with a blank
8127 (if (looking-at "^\\S-") (forward-char 1))
8128 (if (not (re-search-forward "^\\S-" nil t arg))
8129 (progn
8130 (backward-char 1)
8131 (error "No next date after this line in this buffer")))
8132 (goto-char (match-beginning 0)))
8134 (defun org-agenda-previous-date-line (&optional arg)
8135 "Jump to the previous line indicating a date in agenda buffer."
8136 (interactive "p")
8137 (org-agenda-check-type t 'agenda)
8138 (beginning-of-line 1)
8139 (if (not (re-search-backward "^\\S-" nil t arg))
8140 (error "No previous date before this line in this buffer")))
8142 ;; Initialize the highlight
8143 (defvar org-hl (make-overlay 1 1))
8144 (overlay-put org-hl 'face 'highlight)
8146 (defun org-highlight (begin end &optional buffer)
8147 "Highlight a region with overlay."
8148 (move-overlay org-hl begin end (or buffer (current-buffer))))
8150 (defun org-unhighlight ()
8151 "Detach overlay INDEX."
8152 (delete-overlay org-hl))
8154 (defun org-unhighlight-once ()
8155 "Remove the highlight from its position, and this function from the hook."
8156 (remove-hook 'pre-command-hook 'org-unhighlight-once)
8157 (org-unhighlight))
8159 (defvar org-agenda-pre-follow-window-conf nil)
8160 (defun org-agenda-follow-mode ()
8161 "Toggle follow mode in an agenda buffer."
8162 (interactive)
8163 (unless org-agenda-follow-mode
8164 (setq org-agenda-pre-follow-window-conf
8165 (current-window-configuration)))
8166 (setq org-agenda-follow-mode (not org-agenda-follow-mode))
8167 (unless org-agenda-follow-mode
8168 (set-window-configuration org-agenda-pre-follow-window-conf))
8169 (org-agenda-set-mode-name)
8170 (org-agenda-do-context-action)
8171 (message "Follow mode is %s"
8172 (if org-agenda-follow-mode "on" "off")))
8174 (defun org-agenda-entry-text-mode (&optional arg)
8175 "Toggle entry text mode in an agenda buffer."
8176 (interactive "P")
8177 (if (or org-agenda-tag-filter
8178 org-agenda-category-filter
8179 org-agenda-regexp-filter
8180 org-agenda-top-headline-filter)
8181 (user-error "Can't show entry text in filtered views")
8182 (setq org-agenda-entry-text-mode (or (integerp arg)
8183 (not org-agenda-entry-text-mode)))
8184 (org-agenda-entry-text-hide)
8185 (and org-agenda-entry-text-mode
8186 (let ((org-agenda-entry-text-maxlines
8187 (if (integerp arg) arg org-agenda-entry-text-maxlines)))
8188 (org-agenda-entry-text-show)))
8189 (org-agenda-set-mode-name)
8190 (message "Entry text mode is %s%s"
8191 (if org-agenda-entry-text-mode "on" "off")
8192 (if (not org-agenda-entry-text-mode) ""
8193 (format " (maximum number of lines is %d)"
8194 (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
8196 (defun org-agenda-clockreport-mode ()
8197 "Toggle clocktable mode in an agenda buffer."
8198 (interactive)
8199 (org-agenda-check-type t 'agenda)
8200 (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
8201 (org-agenda-set-mode-name)
8202 (org-agenda-redo)
8203 (message "Clocktable mode is %s"
8204 (if org-agenda-clockreport-mode "on" "off")))
8206 (defun org-agenda-log-mode (&optional special)
8207 "Toggle log mode in an agenda buffer.
8209 With argument SPECIAL, show all possible log items, not only the ones
8210 configured in `org-agenda-log-mode-items'.
8212 With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
8213 log items, nothing else."
8214 (interactive "P")
8215 (org-agenda-check-type t 'agenda)
8216 (setq org-agenda-show-log
8217 (cond
8218 ((equal special '(16)) 'only)
8219 ((eq special 'clockcheck)
8220 (if (eq org-agenda-show-log 'clockcheck)
8221 nil 'clockcheck))
8222 (special '(closed clock state))
8223 (t (not org-agenda-show-log))))
8224 (org-agenda-set-mode-name)
8225 (org-agenda-redo)
8226 (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
8228 (defun org-agenda-archives-mode (&optional with-files)
8229 "Toggle inclusion of items in trees marked with :ARCHIVE:.
8230 When called with a prefix argument, include all archive files as well."
8231 (interactive "P")
8232 (setq org-agenda-archives-mode
8233 (if with-files t (if org-agenda-archives-mode nil 'trees)))
8234 (org-agenda-set-mode-name)
8235 (org-agenda-redo)
8236 (message
8237 "%s"
8238 (cond
8239 ((eq org-agenda-archives-mode nil)
8240 "No archives are included")
8241 ((eq org-agenda-archives-mode 'trees)
8242 (format "Trees with :%s: tag are included" org-archive-tag))
8243 ((eq org-agenda-archives-mode t)
8244 (format "Trees with :%s: tag and all active archive files are included"
8245 org-archive-tag)))))
8247 (defun org-agenda-toggle-diary ()
8248 "Toggle diary inclusion in an agenda buffer."
8249 (interactive)
8250 (org-agenda-check-type t 'agenda)
8251 (setq org-agenda-include-diary (not org-agenda-include-diary))
8252 (org-agenda-redo)
8253 (org-agenda-set-mode-name)
8254 (message "Diary inclusion turned %s"
8255 (if org-agenda-include-diary "on" "off")))
8257 (defun org-agenda-toggle-deadlines ()
8258 "Toggle inclusion of entries with a deadline in an agenda buffer."
8259 (interactive)
8260 (org-agenda-check-type t 'agenda)
8261 (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
8262 (org-agenda-redo)
8263 (org-agenda-set-mode-name)
8264 (message "Deadlines inclusion turned %s"
8265 (if org-agenda-include-deadlines "on" "off")))
8267 (defun org-agenda-toggle-time-grid ()
8268 "Toggle time grid in an agenda buffer."
8269 (interactive)
8270 (org-agenda-check-type t 'agenda)
8271 (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
8272 (org-agenda-redo)
8273 (org-agenda-set-mode-name)
8274 (message "Time-grid turned %s"
8275 (if org-agenda-use-time-grid "on" "off")))
8277 (defun org-agenda-set-mode-name ()
8278 "Set the mode name to indicate all the small mode settings."
8279 (setq mode-name
8280 (list "Org-Agenda"
8281 (if (get 'org-agenda-files 'org-restrict) " []" "")
8283 '(:eval (org-agenda-span-name org-agenda-current-span))
8284 (if org-agenda-follow-mode " Follow" "")
8285 (if org-agenda-entry-text-mode " ETxt" "")
8286 (if org-agenda-include-diary " Diary" "")
8287 (if org-agenda-include-deadlines " Ddl" "")
8288 (if org-agenda-use-time-grid " Grid" "")
8289 (if (and (boundp 'org-habit-show-habits)
8290 org-habit-show-habits) " Habit" "")
8291 (cond
8292 ((consp org-agenda-show-log) " LogAll")
8293 ((eq org-agenda-show-log 'clockcheck) " ClkCk")
8294 (org-agenda-show-log " Log")
8295 (t ""))
8296 (if (or org-agenda-category-filter
8297 (get 'org-agenda-category-filter :preset-filter))
8298 '(:eval (propertize
8299 (concat " <"
8300 (mapconcat
8301 'identity
8302 (append
8303 (get 'org-agenda-category-filter :preset-filter)
8304 org-agenda-category-filter)
8306 ">")
8307 'face 'org-agenda-filter-category
8308 'help-echo "Category used in filtering")) "")
8309 (if (or org-agenda-tag-filter
8310 (get 'org-agenda-tag-filter :preset-filter))
8311 '(:eval (propertize
8312 (concat " {"
8313 (mapconcat
8314 'identity
8315 (append
8316 (get 'org-agenda-tag-filter :preset-filter)
8317 org-agenda-tag-filter)
8319 "}")
8320 'face 'org-agenda-filter-tags
8321 'help-echo "Tags used in filtering")) "")
8322 (if (or org-agenda-effort-filter
8323 (get 'org-agenda-effort-filter :preset-filter))
8324 '(:eval (propertize
8325 (concat " {"
8326 (mapconcat
8327 'identity
8328 (append
8329 (get 'org-agenda-effort-filter :preset-filter)
8330 org-agenda-effort-filter)
8332 "}")
8333 'face 'org-agenda-filter-effort
8334 'help-echo "Effort conditions used in filtering")) "")
8335 (if (or org-agenda-regexp-filter
8336 (get 'org-agenda-regexp-filter :preset-filter))
8337 '(:eval (propertize
8338 (concat " ["
8339 (mapconcat
8340 'identity
8341 (append
8342 (get 'org-agenda-regexp-filter :preset-filter)
8343 org-agenda-regexp-filter)
8345 "]")
8346 'face 'org-agenda-filter-regexp
8347 'help-echo "Regexp used in filtering")) "")
8348 (if org-agenda-archives-mode
8349 (if (eq org-agenda-archives-mode t)
8350 " Archives"
8351 (format " :%s:" org-archive-tag))
8353 (if org-agenda-clockreport-mode " Clock" "")))
8354 (force-mode-line-update))
8356 (defun org-agenda-update-agenda-type ()
8357 "Update the agenda type after each command."
8358 (setq org-agenda-type
8359 (or (get-text-property (point) 'org-agenda-type)
8360 (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
8362 (defun org-agenda-next-line ()
8363 "Move cursor to the next line, and show if follow mode is active."
8364 (interactive)
8365 (call-interactively 'next-line)
8366 (org-agenda-do-context-action))
8368 (defun org-agenda-previous-line ()
8369 "Move cursor to the previous line, and show if follow-mode is active."
8370 (interactive)
8371 (call-interactively 'previous-line)
8372 (org-agenda-do-context-action))
8374 (defun org-agenda-next-item (n)
8375 "Move cursor to next agenda item."
8376 (interactive "p")
8377 (let ((col (current-column)))
8378 (dotimes (c n)
8379 (when (next-single-property-change (point-at-eol) 'org-marker)
8380 (move-end-of-line 1)
8381 (goto-char (next-single-property-change (point) 'org-marker))))
8382 (org-move-to-column col))
8383 (org-agenda-do-context-action))
8385 (defun org-agenda-previous-item (n)
8386 "Move cursor to next agenda item."
8387 (interactive "p")
8388 (dotimes (c n)
8389 (let ((col (current-column))
8390 (goto (save-excursion
8391 (move-end-of-line 0)
8392 (previous-single-property-change (point) 'org-marker))))
8393 (if goto (goto-char goto))
8394 (org-move-to-column col)))
8395 (org-agenda-do-context-action))
8397 (defun org-agenda-do-context-action ()
8398 "Show outline path and, maybe, follow mode window."
8399 (let ((m (org-get-at-bol 'org-marker)))
8400 (when (and (markerp m) (marker-buffer m))
8401 (and org-agenda-follow-mode
8402 (if org-agenda-follow-indirect
8403 (org-agenda-tree-to-indirect-buffer nil)
8404 (org-agenda-show)))
8405 (and org-agenda-show-outline-path
8406 (org-with-point-at m (org-display-outline-path t))))))
8408 (defun org-agenda-show-tags ()
8409 "Show the tags applicable to the current item."
8410 (interactive)
8411 (let* ((tags (org-get-at-bol 'tags)))
8412 (if tags
8413 (message "Tags are :%s:"
8414 (org-no-properties (mapconcat 'identity tags ":")))
8415 (message "No tags associated with this line"))))
8417 (defun org-agenda-goto (&optional highlight)
8418 "Go to the entry at point in the corresponding Org file."
8419 (interactive)
8420 (let* ((marker (or (org-get-at-bol 'org-marker)
8421 (org-agenda-error)))
8422 (buffer (marker-buffer marker))
8423 (pos (marker-position marker)))
8424 (switch-to-buffer-other-window buffer)
8425 (widen)
8426 (push-mark)
8427 (goto-char pos)
8428 (when (derived-mode-p 'org-mode)
8429 (org-show-context 'agenda)
8430 (recenter (/ (window-height) 2))
8431 (org-back-to-heading t)
8432 (let ((case-fold-search nil))
8433 (when (re-search-forward org-complex-heading-regexp nil t)
8434 (goto-char (match-beginning 4)))))
8435 (run-hooks 'org-agenda-after-show-hook)
8436 (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
8438 (defvar org-agenda-after-show-hook nil
8439 "Normal hook run after an item has been shown from the agenda.
8440 Point is in the buffer where the item originated.")
8442 (defun org-agenda-kill ()
8443 "Kill the entry or subtree belonging to the current agenda entry."
8444 (interactive)
8445 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8446 (let* ((bufname-orig (buffer-name))
8447 (marker (or (org-get-at-bol 'org-marker)
8448 (org-agenda-error)))
8449 (buffer (marker-buffer marker))
8450 (pos (marker-position marker))
8451 (type (org-get-at-bol 'type))
8452 dbeg dend (n 0) conf)
8453 (org-with-remote-undo buffer
8454 (with-current-buffer buffer
8455 (save-excursion
8456 (goto-char pos)
8457 (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
8458 (setq dbeg (progn (org-back-to-heading t) (point))
8459 dend (org-end-of-subtree t t))
8460 (setq dbeg (point-at-bol)
8461 dend (min (point-max) (1+ (point-at-eol)))))
8462 (goto-char dbeg)
8463 (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
8464 (setq conf (or (eq t org-agenda-confirm-kill)
8465 (and (numberp org-agenda-confirm-kill)
8466 (> n org-agenda-confirm-kill))))
8467 (and conf
8468 (not (y-or-n-p
8469 (format "Delete entry with %d lines in buffer \"%s\"? "
8470 n (buffer-name buffer))))
8471 (error "Abort"))
8472 (let ((org-agenda-buffer-name bufname-orig))
8473 (org-remove-subtree-entries-from-agenda buffer dbeg dend))
8474 (with-current-buffer buffer (delete-region dbeg dend))
8475 (message "Agenda item and source killed"))))
8477 (defvar org-archive-default-command) ; defined in org-archive.el
8478 (defun org-agenda-archive-default ()
8479 "Archive the entry or subtree belonging to the current agenda entry."
8480 (interactive)
8481 (require 'org-archive)
8482 (org-agenda-archive-with org-archive-default-command))
8484 (defun org-agenda-archive-default-with-confirmation ()
8485 "Archive the entry or subtree belonging to the current agenda entry."
8486 (interactive)
8487 (require 'org-archive)
8488 (org-agenda-archive-with org-archive-default-command 'confirm))
8490 (defun org-agenda-archive ()
8491 "Archive the entry or subtree belonging to the current agenda entry."
8492 (interactive)
8493 (org-agenda-archive-with 'org-archive-subtree))
8495 (defun org-agenda-archive-to-archive-sibling ()
8496 "Move the entry to the archive sibling."
8497 (interactive)
8498 (org-agenda-archive-with 'org-archive-to-archive-sibling))
8500 (defun org-agenda-archive-with (cmd &optional confirm)
8501 "Move the entry to the archive sibling."
8502 (interactive)
8503 (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
8504 (let* ((bufname-orig (buffer-name))
8505 (marker (or (org-get-at-bol 'org-marker)
8506 (org-agenda-error)))
8507 (buffer (marker-buffer marker))
8508 (pos (marker-position marker)))
8509 (org-with-remote-undo buffer
8510 (with-current-buffer buffer
8511 (if (derived-mode-p 'org-mode)
8512 (if (and confirm
8513 (not (y-or-n-p "Archive this subtree or entry? ")))
8514 (error "Abort")
8515 (save-window-excursion
8516 (goto-char pos)
8517 (let ((org-agenda-buffer-name bufname-orig))
8518 (org-remove-subtree-entries-from-agenda))
8519 (org-back-to-heading t)
8520 (funcall cmd)))
8521 (error "Archiving works only in Org files"))))))
8523 (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
8524 "Remove all lines in the agenda that correspond to a given subtree.
8525 The subtree is the one in buffer BUF, starting at BEG and ending at END.
8526 If this information is not given, the function uses the tree at point."
8527 (let ((buf (or buf (current-buffer))) m p)
8528 (save-excursion
8529 (unless (and beg end)
8530 (org-back-to-heading t)
8531 (setq beg (point))
8532 (org-end-of-subtree t)
8533 (setq end (point)))
8534 (set-buffer (get-buffer org-agenda-buffer-name))
8535 (save-excursion
8536 (goto-char (point-max))
8537 (beginning-of-line 1)
8538 (while (not (bobp))
8539 (when (and (setq m (org-get-at-bol 'org-marker))
8540 (equal buf (marker-buffer m))
8541 (setq p (marker-position m))
8542 (>= p beg)
8543 (< p end))
8544 (let ((inhibit-read-only t))
8545 (delete-region (point-at-bol) (1+ (point-at-eol)))))
8546 (beginning-of-line 0))))))
8548 (defun org-agenda-refile (&optional goto rfloc no-update)
8549 "Refile the item at point.
8551 When called with `\\[universal-argument] \\[universal-argument]', \
8552 go to the location of the last
8553 refiled item.
8555 When called with `\\[universal-argument] \\[universal-argument] \
8556 \\[universal-argument]' prefix or when GOTO is 0, clear
8557 the refile cache.
8559 RFLOC can be a refile location obtained in a different way.
8561 When NO-UPDATE is non-nil, don't redo the agenda buffer."
8562 (interactive "P")
8563 (cond
8564 ((member goto '(0 (64)))
8565 (org-refile-cache-clear))
8566 ((equal goto '(16))
8567 (org-refile-goto-last-stored))
8569 (let* ((buffer-orig (buffer-name))
8570 (marker (or (org-get-at-bol 'org-hd-marker)
8571 (org-agenda-error)))
8572 (buffer (marker-buffer marker))
8573 (pos (marker-position marker))
8574 (rfloc (or rfloc
8575 (org-refile-get-location
8576 (if goto "Goto" "Refile to") buffer
8577 org-refile-allow-creating-parent-nodes))))
8578 (with-current-buffer buffer
8579 (org-with-wide-buffer
8580 (goto-char marker)
8581 (let ((org-agenda-buffer-name buffer-orig))
8582 (org-remove-subtree-entries-from-agenda))
8583 (org-refile goto buffer rfloc))))
8584 (unless no-update (org-agenda-redo)))))
8586 (defun org-agenda-open-link (&optional arg)
8587 "Open the link(s) in the current entry, if any.
8588 This looks for a link in the displayed line in the agenda.
8589 It also looks at the text of the entry itself."
8590 (interactive "P")
8591 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
8592 (org-get-at-bol 'org-marker)))
8593 (buffer (and marker (marker-buffer marker)))
8594 (prefix (buffer-substring (point-at-bol) (point-at-eol)))
8595 (lkall (and buffer (org-offer-links-in-entry
8596 buffer marker arg prefix)))
8597 (lk0 (car lkall))
8598 (lk (if (stringp lk0) (list lk0) lk0))
8599 (lkend (cdr lkall))
8600 trg)
8601 (cond
8602 ((and buffer lk)
8603 (mapcar (lambda(l)
8604 (with-current-buffer buffer
8605 (setq trg (and (string-match org-bracket-link-regexp l)
8606 (match-string 1 l)))
8607 (if (or (not trg) (string-match org-any-link-re trg))
8608 (org-with-wide-buffer
8609 (goto-char marker)
8610 (when (search-forward l nil lkend)
8611 (goto-char (match-beginning 0))
8612 (org-open-at-point)))
8613 ;; This is an internal link, widen the buffer
8614 (switch-to-buffer-other-window buffer)
8615 (widen)
8616 (goto-char marker)
8617 (when (search-forward l nil lkend)
8618 (goto-char (match-beginning 0))
8619 (org-open-at-point)))))
8620 lk))
8621 ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
8622 (save-excursion
8623 (beginning-of-line 1)
8624 (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
8625 (org-open-link-from-string (match-string 1)))
8626 (t (message "No link to open here")))))
8628 (defun org-agenda-copy-local-variable (var)
8629 "Get a variable from a referenced buffer and install it here."
8630 (let ((m (org-get-at-bol 'org-marker)))
8631 (when (and m (buffer-live-p (marker-buffer m)))
8632 (set (make-local-variable var)
8633 (with-current-buffer (marker-buffer m)
8634 (symbol-value var))))))
8636 (defun org-agenda-switch-to (&optional delete-other-windows)
8637 "Go to the Org mode file which contains the item at point.
8638 When optional argument DELETE-OTHER-WINDOWS is non-nil, the
8639 displayed Org file fills the frame."
8640 (interactive)
8641 (if (and org-return-follows-link
8642 (not (org-get-at-bol 'org-marker))
8643 (org-in-regexp org-bracket-link-regexp))
8644 (org-open-link-from-string (match-string 0))
8645 (let* ((marker (or (org-get-at-bol 'org-marker)
8646 (org-agenda-error)))
8647 (buffer (marker-buffer marker))
8648 (pos (marker-position marker)))
8649 (unless buffer (user-error "Trying to switch to non-existent buffer"))
8650 (pop-to-buffer-same-window buffer)
8651 (when delete-other-windows (delete-other-windows))
8652 (widen)
8653 (goto-char pos)
8654 (when (derived-mode-p 'org-mode)
8655 (org-show-context 'agenda)
8656 (run-hooks 'org-agenda-after-show-hook)))))
8658 (defun org-agenda-goto-mouse (ev)
8659 "Go to the Org file which contains the item at the mouse click."
8660 (interactive "e")
8661 (mouse-set-point ev)
8662 (org-agenda-goto))
8664 (defun org-agenda-show (&optional full-entry)
8665 "Display the Org file which contains the item at point.
8666 With prefix argument FULL-ENTRY, make the entire entry visible
8667 if it was hidden in the outline."
8668 (interactive "P")
8669 (let ((win (selected-window)))
8670 (org-agenda-goto t)
8671 (when full-entry (org-show-entry))
8672 (select-window win)))
8674 (defvar org-agenda-show-window nil)
8675 (defun org-agenda-show-and-scroll-up (&optional arg)
8676 "Display the Org file which contains the item at point.
8678 When called repeatedly, scroll the window that is displaying the buffer.
8680 With a `\\[universal-argument]' prefix, use `org-show-entry' instead of \
8681 `outline-show-subtree'
8682 to display the item, so that drawers and logbooks stay folded."
8683 (interactive "P")
8684 (let ((win (selected-window)))
8685 (if (and (window-live-p org-agenda-show-window)
8686 (eq this-command last-command))
8687 (progn
8688 (select-window org-agenda-show-window)
8689 (ignore-errors (scroll-up)))
8690 (org-agenda-goto t)
8691 (if arg (org-show-entry) (outline-show-subtree))
8692 (setq org-agenda-show-window (selected-window)))
8693 (select-window win)))
8695 (defun org-agenda-show-scroll-down ()
8696 "Scroll down the window showing the agenda."
8697 (interactive)
8698 (let ((win (selected-window)))
8699 (when (window-live-p org-agenda-show-window)
8700 (select-window org-agenda-show-window)
8701 (ignore-errors (scroll-down))
8702 (select-window win))))
8704 (defun org-agenda-show-1 (&optional more)
8705 "Display the Org file which contains the item at point.
8706 The prefix arg selects the amount of information to display:
8708 0 hide the subtree
8709 1 just show the entry according to defaults.
8710 2 show the children view
8711 3 show the subtree view
8712 4 show the entire subtree and any LOGBOOK drawers
8713 5 show the entire subtree and any drawers
8714 With prefix argument FULL-ENTRY, make the entire entry visible
8715 if it was hidden in the outline."
8716 (interactive "p")
8717 (let ((win (selected-window)))
8718 (org-agenda-goto t)
8719 (org-back-to-heading)
8720 (set-window-start (selected-window) (point-at-bol))
8721 (cond
8722 ((= more 0)
8723 (outline-hide-subtree)
8724 (save-excursion
8725 (org-back-to-heading)
8726 (run-hook-with-args 'org-cycle-hook 'folded))
8727 (message "Remote: FOLDED"))
8728 ((and (called-interactively-p 'any) (= more 1))
8729 (message "Remote: show with default settings"))
8730 ((= more 2)
8731 (outline-show-entry)
8732 (org-show-children)
8733 (save-excursion
8734 (org-back-to-heading)
8735 (run-hook-with-args 'org-cycle-hook 'children))
8736 (message "Remote: CHILDREN"))
8737 ((= more 3)
8738 (outline-show-subtree)
8739 (save-excursion
8740 (org-back-to-heading)
8741 (run-hook-with-args 'org-cycle-hook 'subtree))
8742 (message "Remote: SUBTREE"))
8743 ((= more 4)
8744 (outline-show-subtree)
8745 (save-excursion
8746 (org-back-to-heading)
8747 (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
8748 (message "Remote: SUBTREE AND LOGBOOK"))
8749 ((> more 4)
8750 (outline-show-subtree)
8751 (message "Remote: SUBTREE AND ALL DRAWERS")))
8752 (select-window win)))
8754 (defvar org-agenda-cycle-counter nil)
8755 (defun org-agenda-cycle-show (&optional n)
8756 "Show the current entry in another window, with default settings.
8758 Default settings are taken from `org-show-context-detail'. When
8759 use repeatedly in immediate succession, the remote entry will
8760 cycle through visibility
8762 children -> subtree -> folded
8764 When called with a numeric prefix arg, that arg will be passed through to
8765 `org-agenda-show-1'. For the interpretation of that argument, see the
8766 docstring of `org-agenda-show-1'."
8767 (interactive "P")
8768 (if (integerp n)
8769 (setq org-agenda-cycle-counter n)
8770 (if (not (eq last-command this-command))
8771 (setq org-agenda-cycle-counter 1)
8772 (if (equal org-agenda-cycle-counter 0)
8773 (setq org-agenda-cycle-counter 2)
8774 (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
8775 (if (> org-agenda-cycle-counter 3)
8776 (setq org-agenda-cycle-counter 0)))))
8777 (org-agenda-show-1 org-agenda-cycle-counter))
8779 (defun org-agenda-recenter (arg)
8780 "Display the Org file which contains the item at point and recenter."
8781 (interactive "P")
8782 (let ((win (selected-window)))
8783 (org-agenda-goto t)
8784 (recenter arg)
8785 (select-window win)))
8787 (defun org-agenda-show-mouse (ev)
8788 "Display the Org file which contains the item at the mouse click."
8789 (interactive "e")
8790 (mouse-set-point ev)
8791 (org-agenda-show))
8793 (defun org-agenda-check-no-diary ()
8794 "Check if the entry is a diary link and abort if yes."
8795 (if (org-get-at-bol 'org-agenda-diary-link)
8796 (org-agenda-error)))
8798 (defun org-agenda-error ()
8799 "Throw an error when a command is not allowed in the agenda."
8800 (user-error "Command not allowed in this line"))
8802 (defun org-agenda-tree-to-indirect-buffer (arg)
8803 "Show the subtree corresponding to the current entry in an indirect buffer.
8804 This calls the command `org-tree-to-indirect-buffer' from the original buffer.
8806 With a numerical prefix ARG, go up to this level and then take that tree.
8807 With a negative numeric ARG, go up by this number of levels.
8809 With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
8810 i.e. don't use
8811 the dedicated frame."
8812 (interactive "P")
8813 (if current-prefix-arg
8814 (org-agenda-do-tree-to-indirect-buffer arg)
8815 (let ((agenda-buffer (buffer-name))
8816 (agenda-window (selected-window))
8817 (indirect-window
8818 (and org-last-indirect-buffer
8819 (get-buffer-window org-last-indirect-buffer))))
8820 (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
8821 (unless (or (eq org-indirect-buffer-display 'new-frame)
8822 (eq org-indirect-buffer-display 'dedicated-frame))
8823 (unwind-protect
8824 (unless (and indirect-window (window-live-p indirect-window))
8825 (setq indirect-window (split-window agenda-window)))
8826 (and indirect-window (select-window indirect-window))
8827 (switch-to-buffer org-last-indirect-buffer :norecord)
8828 (fit-window-to-buffer indirect-window)))
8829 (select-window (get-buffer-window agenda-buffer))
8830 (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
8832 (defun org-agenda-do-tree-to-indirect-buffer (arg)
8833 "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
8834 (org-agenda-check-no-diary)
8835 (let* ((marker (or (org-get-at-bol 'org-marker)
8836 (org-agenda-error)))
8837 (buffer (marker-buffer marker))
8838 (pos (marker-position marker)))
8839 (with-current-buffer buffer
8840 (save-excursion
8841 (goto-char pos)
8842 (funcall 'org-tree-to-indirect-buffer arg)))))
8844 (defvar org-last-heading-marker (make-marker)
8845 "Marker pointing to the headline that last changed its TODO state
8846 by a remote command from the agenda.")
8848 (defun org-agenda-todo-nextset ()
8849 "Switch TODO entry to next sequence."
8850 (interactive)
8851 (org-agenda-todo 'nextset))
8853 (defun org-agenda-todo-previousset ()
8854 "Switch TODO entry to previous sequence."
8855 (interactive)
8856 (org-agenda-todo 'previousset))
8858 (defun org-agenda-todo (&optional arg)
8859 "Cycle TODO state of line at point, also in Org file.
8860 This changes the line at point, all other lines in the agenda referring to
8861 the same tree node, and the headline of the tree node in the Org file."
8862 (interactive "P")
8863 (org-agenda-check-no-diary)
8864 (let* ((col (current-column))
8865 (marker (or (org-get-at-bol 'org-marker)
8866 (org-agenda-error)))
8867 (buffer (marker-buffer marker))
8868 (pos (marker-position marker))
8869 (hdmarker (org-get-at-bol 'org-hd-marker))
8870 (todayp (org-agenda-today-p (org-get-at-bol 'day)))
8871 (inhibit-read-only t)
8872 org-agenda-headline-snapshot-before-repeat newhead just-one)
8873 (org-with-remote-undo buffer
8874 (with-current-buffer buffer
8875 (widen)
8876 (goto-char pos)
8877 (org-show-context 'agenda)
8878 (let ((current-prefix-arg arg))
8879 (call-interactively 'org-todo))
8880 (and (bolp) (forward-char 1))
8881 (setq newhead (org-get-heading))
8882 (when (and (bound-and-true-p
8883 org-agenda-headline-snapshot-before-repeat)
8884 (not (equal org-agenda-headline-snapshot-before-repeat
8885 newhead))
8886 todayp)
8887 (setq newhead org-agenda-headline-snapshot-before-repeat
8888 just-one t))
8889 (save-excursion
8890 (org-back-to-heading)
8891 (move-marker org-last-heading-marker (point))))
8892 (beginning-of-line 1)
8893 (save-window-excursion
8894 (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
8895 (when (bound-and-true-p org-clock-out-when-done)
8896 (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
8897 newhead)
8898 (org-agenda-unmark-clocking-task))
8899 (org-move-to-column col)
8900 (org-agenda-mark-clocking-task))))
8902 (defun org-agenda-add-note (&optional arg)
8903 "Add a time-stamped note to the entry at point."
8904 (interactive "P")
8905 (org-agenda-check-no-diary)
8906 (let* ((marker (or (org-get-at-bol 'org-marker)
8907 (org-agenda-error)))
8908 (buffer (marker-buffer marker))
8909 (pos (marker-position marker))
8910 (hdmarker (org-get-at-bol 'org-hd-marker))
8911 (inhibit-read-only t))
8912 (with-current-buffer buffer
8913 (widen)
8914 (goto-char pos)
8915 (org-show-context 'agenda)
8916 (org-add-note))))
8918 (defun org-agenda-change-all-lines (newhead hdmarker
8919 &optional fixface just-this)
8920 "Change all lines in the agenda buffer which match HDMARKER.
8921 The new content of the line will be NEWHEAD (as modified by
8922 `org-agenda-format-item'). HDMARKER is checked with
8923 `equal' against all `org-hd-marker' text properties in the file.
8924 If FIXFACE is non-nil, the face of each item is modified according to
8925 the new TODO state.
8926 If JUST-THIS is non-nil, change just the current line, not all.
8927 If FORCE-TAGS is non nil, the car of it returns the new tags."
8928 (let* ((inhibit-read-only t)
8929 (line (org-current-line))
8930 (org-agenda-buffer (current-buffer))
8931 (thetags (with-current-buffer (marker-buffer hdmarker)
8932 (org-with-wide-buffer
8933 (goto-char hdmarker)
8934 (org-get-tags-at))))
8935 props m pl undone-face done-face finish new dotime level cat tags)
8936 (save-excursion
8937 (goto-char (point-max))
8938 (beginning-of-line 1)
8939 (while (not finish)
8940 (setq finish (bobp))
8941 (when (and (setq m (org-get-at-bol 'org-hd-marker))
8942 (or (not just-this) (= (org-current-line) line))
8943 (equal m hdmarker))
8944 (setq props (text-properties-at (point))
8945 dotime (org-get-at-bol 'dotime)
8946 cat (org-get-at-eol 'org-category 1)
8947 level (org-get-at-bol 'level)
8948 tags thetags
8950 (let ((org-prefix-format-compiled
8951 (or (get-text-property (min (1- (point-max)) (point)) 'format)
8952 org-prefix-format-compiled))
8953 (extra (org-get-at-bol 'extra)))
8954 (with-current-buffer (marker-buffer hdmarker)
8955 (org-with-wide-buffer
8956 (org-agenda-format-item extra newhead level cat tags dotime))))
8957 pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
8958 undone-face (org-get-at-bol 'undone-face)
8959 done-face (org-get-at-bol 'done-face))
8960 (beginning-of-line 1)
8961 (cond
8962 ((equal new "") (delete-region (point) (line-beginning-position 2)))
8963 ((looking-at ".*")
8964 ;; When replacing the whole line, preserve bulk mark
8965 ;; overlay, if any.
8966 (let ((mark (catch :overlay
8967 (dolist (o (overlays-in (point) (+ 2 (point))))
8968 (when (eq (overlay-get o 'type)
8969 'org-marked-entry-overlay)
8970 (throw :overlay o))))))
8971 (replace-match new t t)
8972 (beginning-of-line)
8973 (when mark (move-overlay mark (point) (+ 2 (point)))))
8974 (add-text-properties (point-at-bol) (point-at-eol) props)
8975 (when fixface
8976 (add-text-properties
8977 (point-at-bol) (point-at-eol)
8978 (list 'face
8979 (if org-last-todo-state-is-todo
8980 undone-face done-face))))
8981 (org-agenda-highlight-todo 'line)
8982 (beginning-of-line 1))
8983 (t (error "Line update did not work")))
8984 (save-restriction
8985 (narrow-to-region (point-at-bol) (point-at-eol))
8986 (org-agenda-finalize)))
8987 (beginning-of-line 0)))))
8989 (defun org-agenda-align-tags (&optional line)
8990 "Align all tags in agenda items to `org-agenda-tags-column'."
8991 (let ((inhibit-read-only t)
8992 (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
8993 (- (window-text-width))
8994 org-agenda-tags-column))
8995 l c)
8996 (save-excursion
8997 (goto-char (if line (point-at-bol) (point-min)))
8998 (while (re-search-forward "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
8999 (if line (point-at-eol) nil) t)
9000 (add-text-properties
9001 (match-beginning 2) (match-end 2)
9002 (list 'face (delq nil (let ((prop (get-text-property
9003 (match-beginning 2) 'face)))
9004 (or (listp prop) (setq prop (list prop)))
9005 (if (memq 'org-tag prop)
9006 prop
9007 (cons 'org-tag prop))))))
9008 (setq l (- (match-end 2) (match-beginning 2))
9009 c (if (< org-agenda-tags-column 0)
9010 (- (abs org-agenda-tags-column) l)
9011 org-agenda-tags-column))
9012 (delete-region (match-beginning 1) (match-end 1))
9013 (goto-char (match-beginning 1))
9014 (insert (org-add-props
9015 (make-string (max 1 (- c (current-column))) ?\ )
9016 (plist-put (copy-sequence (text-properties-at (point)))
9017 'face nil))))
9018 (goto-char (point-min))
9019 (org-font-lock-add-tag-faces (point-max)))))
9021 (defun org-agenda-priority-up ()
9022 "Increase the priority of line at point, also in Org file."
9023 (interactive)
9024 (org-agenda-priority 'up))
9026 (defun org-agenda-priority-down ()
9027 "Decrease the priority of line at point, also in Org file."
9028 (interactive)
9029 (org-agenda-priority 'down))
9031 (defun org-agenda-priority (&optional force-direction)
9032 "Set the priority of line at point, also in Org file.
9033 This changes the line at point, all other lines in the agenda referring to
9034 the same tree node, and the headline of the tree node in the Org file.
9035 Called with a universal prefix arg, show the priority instead of setting it."
9036 (interactive "P")
9037 (if (equal force-direction '(4))
9038 (org-show-priority)
9039 (unless org-enable-priority-commands
9040 (error "Priority commands are disabled"))
9041 (org-agenda-check-no-diary)
9042 (let* ((col (current-column))
9043 (marker (or (org-get-at-bol 'org-marker)
9044 (org-agenda-error)))
9045 (hdmarker (org-get-at-bol 'org-hd-marker))
9046 (buffer (marker-buffer hdmarker))
9047 (pos (marker-position hdmarker))
9048 (inhibit-read-only t)
9049 newhead)
9050 (org-with-remote-undo buffer
9051 (with-current-buffer buffer
9052 (widen)
9053 (goto-char pos)
9054 (org-show-context 'agenda)
9055 (funcall 'org-priority force-direction)
9056 (end-of-line 1)
9057 (setq newhead (org-get-heading)))
9058 (org-agenda-change-all-lines newhead hdmarker)
9059 (org-move-to-column col)))))
9061 ;; FIXME: should fix the tags property of the agenda line.
9062 (defun org-agenda-set-tags (&optional tag onoff)
9063 "Set tags for the current headline."
9064 (interactive)
9065 (org-agenda-check-no-diary)
9066 (if (and (org-region-active-p) (called-interactively-p 'any))
9067 (call-interactively 'org-change-tag-in-region)
9068 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9069 (org-agenda-error)))
9070 (buffer (marker-buffer hdmarker))
9071 (pos (marker-position hdmarker))
9072 (inhibit-read-only t)
9073 newhead)
9074 (org-with-remote-undo buffer
9075 (with-current-buffer buffer
9076 (widen)
9077 (goto-char pos)
9078 (org-show-context 'agenda)
9079 (if tag
9080 (org-toggle-tag tag onoff)
9081 (call-interactively 'org-set-tags))
9082 (end-of-line 1)
9083 (setq newhead (org-get-heading)))
9084 (org-agenda-change-all-lines newhead hdmarker)
9085 (beginning-of-line 1)))))
9087 (defun org-agenda-set-property ()
9088 "Set a property for the current headline."
9089 (interactive)
9090 (org-agenda-check-no-diary)
9091 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9092 (org-agenda-error)))
9093 (buffer (marker-buffer hdmarker))
9094 (pos (marker-position hdmarker))
9095 (inhibit-read-only t)
9096 newhead)
9097 (org-with-remote-undo buffer
9098 (with-current-buffer buffer
9099 (widen)
9100 (goto-char pos)
9101 (org-show-context 'agenda)
9102 (call-interactively 'org-set-property)))))
9104 (defun org-agenda-set-effort ()
9105 "Set the effort property for the current headline."
9106 (interactive)
9107 (org-agenda-check-no-diary)
9108 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9109 (org-agenda-error)))
9110 (buffer (marker-buffer hdmarker))
9111 (pos (marker-position hdmarker))
9112 (inhibit-read-only t)
9113 newhead)
9114 (org-with-remote-undo buffer
9115 (with-current-buffer buffer
9116 (widen)
9117 (goto-char pos)
9118 (org-show-context 'agenda)
9119 (call-interactively 'org-set-effort)
9120 (end-of-line 1)
9121 (setq newhead (org-get-heading)))
9122 (org-agenda-change-all-lines newhead hdmarker))))
9124 (defun org-agenda-toggle-archive-tag ()
9125 "Toggle the archive tag for the current entry."
9126 (interactive)
9127 (org-agenda-check-no-diary)
9128 (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
9129 (org-agenda-error)))
9130 (buffer (marker-buffer hdmarker))
9131 (pos (marker-position hdmarker))
9132 (inhibit-read-only t)
9133 newhead)
9134 (org-with-remote-undo buffer
9135 (with-current-buffer buffer
9136 (widen)
9137 (goto-char pos)
9138 (org-show-context 'agenda)
9139 (call-interactively 'org-toggle-archive-tag)
9140 (end-of-line 1)
9141 (setq newhead (org-get-heading)))
9142 (org-agenda-change-all-lines newhead hdmarker)
9143 (beginning-of-line 1))))
9145 (defun org-agenda-do-date-later (arg)
9146 (interactive "P")
9147 (cond
9148 ((or (equal arg '(16))
9149 (memq last-command
9150 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9151 (setq this-command 'org-agenda-date-later-minutes)
9152 (org-agenda-date-later-minutes 1))
9153 ((or (equal arg '(4))
9154 (memq last-command
9155 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9156 (setq this-command 'org-agenda-date-later-hours)
9157 (org-agenda-date-later-hours 1))
9159 (org-agenda-date-later (prefix-numeric-value arg)))))
9161 (defun org-agenda-do-date-earlier (arg)
9162 (interactive "P")
9163 (cond
9164 ((or (equal arg '(16))
9165 (memq last-command
9166 '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
9167 (setq this-command 'org-agenda-date-earlier-minutes)
9168 (org-agenda-date-earlier-minutes 1))
9169 ((or (equal arg '(4))
9170 (memq last-command
9171 '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
9172 (setq this-command 'org-agenda-date-earlier-hours)
9173 (org-agenda-date-earlier-hours 1))
9175 (org-agenda-date-earlier (prefix-numeric-value arg)))))
9177 (defun org-agenda-date-later (arg &optional what)
9178 "Change the date of this item to ARG day(s) later."
9179 (interactive "p")
9180 (org-agenda-check-type t 'agenda)
9181 (org-agenda-check-no-diary)
9182 (let* ((marker (or (org-get-at-bol 'org-marker)
9183 (org-agenda-error)))
9184 (buffer (marker-buffer marker))
9185 (pos (marker-position marker))
9186 cdate today)
9187 (org-with-remote-undo buffer
9188 (with-current-buffer buffer
9189 (widen)
9190 (goto-char pos)
9191 (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
9192 (when (and org-agenda-move-date-from-past-immediately-to-today
9193 (equal arg 1)
9194 (or (not what) (eq what 'day))
9195 (not (save-match-data (org-at-date-range-p))))
9196 (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
9197 cdate (calendar-absolute-from-gregorian
9198 (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
9199 today (org-today))
9200 (if (> today cdate)
9201 ;; immediately shift to today
9202 (setq arg (- today cdate))))
9203 (org-timestamp-change arg (or what 'day))
9204 (when (and (org-at-date-range-p)
9205 (re-search-backward org-tr-regexp-both (point-at-bol)))
9206 (let ((end org-last-changed-timestamp))
9207 (org-timestamp-change arg (or what 'day))
9208 (setq org-last-changed-timestamp
9209 (concat org-last-changed-timestamp "--" end)))))
9210 (org-agenda-show-new-time marker org-last-changed-timestamp))
9211 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9213 (defun org-agenda-date-earlier (arg &optional what)
9214 "Change the date of this item to ARG day(s) earlier."
9215 (interactive "p")
9216 (org-agenda-date-later (- arg) what))
9218 (defun org-agenda-date-later-minutes (arg)
9219 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9220 (interactive "p")
9221 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9222 (org-agenda-date-later arg 'minute))
9224 (defun org-agenda-date-earlier-minutes (arg)
9225 "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
9226 (interactive "p")
9227 (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
9228 (org-agenda-date-earlier arg 'minute))
9230 (defun org-agenda-date-later-hours (arg)
9231 "Change the time of this item, in hour steps."
9232 (interactive "p")
9233 (org-agenda-date-later arg 'hour))
9235 (defun org-agenda-date-earlier-hours (arg)
9236 "Change the time of this item, in hour steps."
9237 (interactive "p")
9238 (org-agenda-date-earlier arg 'hour))
9240 (defun org-agenda-show-new-time (marker stamp &optional prefix)
9241 "Show new date stamp via text properties."
9242 ;; We use text properties to make this undoable
9243 (let ((inhibit-read-only t))
9244 (setq stamp (concat prefix " => " stamp " "))
9245 (save-excursion
9246 (goto-char (point-max))
9247 (while (not (bobp))
9248 (when (equal marker (org-get-at-bol 'org-marker))
9249 (remove-text-properties (point-at-bol) (point-at-eol) '(display))
9250 (org-move-to-column (- (window-width) (length stamp)) t)
9251 (add-text-properties
9252 (1- (point)) (point-at-eol)
9253 (list 'display (org-add-props stamp nil
9254 'face '(secondary-selection default))))
9255 (beginning-of-line 1))
9256 (beginning-of-line 0)))))
9258 (defun org-agenda-date-prompt (arg)
9259 "Change the date of this item. Date is prompted for, with default today.
9260 The prefix ARG is passed to the `org-time-stamp' command and can therefore
9261 be used to request time specification in the time stamp."
9262 (interactive "P")
9263 (org-agenda-check-type t 'agenda)
9264 (org-agenda-check-no-diary)
9265 (let* ((marker (or (org-get-at-bol 'org-marker)
9266 (org-agenda-error)))
9267 (buffer (marker-buffer marker))
9268 (pos (marker-position marker)))
9269 (org-with-remote-undo buffer
9270 (with-current-buffer buffer
9271 (widen)
9272 (goto-char pos)
9273 (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
9274 (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
9275 (org-agenda-show-new-time marker org-last-changed-timestamp))
9276 (message "Time stamp changed to %s" org-last-changed-timestamp)))
9278 (defun org-agenda-schedule (arg &optional time)
9279 "Schedule the item at point.
9280 ARG is passed through to `org-schedule'."
9281 (interactive "P")
9282 (org-agenda-check-type t 'agenda 'todo 'tags 'search)
9283 (org-agenda-check-no-diary)
9284 (let* ((marker (or (org-get-at-bol 'org-marker)
9285 (org-agenda-error)))
9286 (type (marker-insertion-type marker))
9287 (buffer (marker-buffer marker))
9288 (pos (marker-position marker))
9290 (set-marker-insertion-type marker t)
9291 (org-with-remote-undo buffer
9292 (with-current-buffer buffer
9293 (widen)
9294 (goto-char pos)
9295 (setq ts (org-schedule arg time)))
9296 (org-agenda-show-new-time marker ts " S"))
9297 (message "%s" ts)))
9299 (defun org-agenda-deadline (arg &optional time)
9300 "Schedule the item at point.
9301 ARG is passed through to `org-deadline'."
9302 (interactive "P")
9303 (org-agenda-check-type t 'agenda 'todo 'tags 'search)
9304 (org-agenda-check-no-diary)
9305 (let* ((marker (or (org-get-at-bol 'org-marker)
9306 (org-agenda-error)))
9307 (buffer (marker-buffer marker))
9308 (pos (marker-position marker))
9310 (org-with-remote-undo buffer
9311 (with-current-buffer buffer
9312 (widen)
9313 (goto-char pos)
9314 (setq ts (org-deadline arg time)))
9315 (org-agenda-show-new-time marker ts " D"))
9316 (message "%s" ts)))
9318 (defun org-agenda-clock-in (&optional arg)
9319 "Start the clock on the currently selected item."
9320 (interactive "P")
9321 (org-agenda-check-no-diary)
9322 (if (equal arg '(4))
9323 (org-clock-in arg)
9324 (let* ((marker (or (org-get-at-bol 'org-marker)
9325 (org-agenda-error)))
9326 (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
9327 (pos (marker-position marker))
9328 (col (current-column))
9329 newhead)
9330 (org-with-remote-undo (marker-buffer marker)
9331 (with-current-buffer (marker-buffer marker)
9332 (widen)
9333 (goto-char pos)
9334 (org-show-context 'agenda)
9335 (org-clock-in arg)
9336 (setq newhead (org-get-heading)))
9337 (org-agenda-change-all-lines newhead hdmarker))
9338 (org-move-to-column col))))
9340 (defun org-agenda-clock-out ()
9341 "Stop the currently running clock."
9342 (interactive)
9343 (unless (marker-buffer org-clock-marker)
9344 (error "No running clock"))
9345 (let ((marker (make-marker)) (col (current-column)) newhead)
9346 (org-with-remote-undo (marker-buffer org-clock-marker)
9347 (with-current-buffer (marker-buffer org-clock-marker)
9348 (org-with-wide-buffer
9349 (goto-char org-clock-marker)
9350 (org-back-to-heading t)
9351 (move-marker marker (point))
9352 (org-clock-out)
9353 (setq newhead (org-get-heading)))))
9354 (org-agenda-change-all-lines newhead marker)
9355 (move-marker marker nil)
9356 (org-move-to-column col)
9357 (org-agenda-unmark-clocking-task)))
9359 (defun org-agenda-clock-cancel (&optional arg)
9360 "Cancel the currently running clock."
9361 (interactive "P")
9362 (unless (marker-buffer org-clock-marker)
9363 (user-error "No running clock"))
9364 (org-with-remote-undo (marker-buffer org-clock-marker)
9365 (org-clock-cancel)))
9367 (defun org-agenda-clock-goto ()
9368 "Jump to the currently clocked in task within the agenda.
9369 If the currently clocked in task is not listed in the agenda
9370 buffer, display it in another window."
9371 (interactive)
9372 (let (pos)
9373 (mapc (lambda (o)
9374 (if (eq (overlay-get o 'type) 'org-agenda-clocking)
9375 (setq pos (overlay-start o))))
9376 (overlays-in (point-min) (point-max)))
9377 (cond (pos (goto-char pos))
9378 ;; If the currently clocked entry is not in the agenda
9379 ;; buffer, we visit it in another window:
9380 ((bound-and-true-p org-clock-current-task)
9381 (org-switch-to-buffer-other-window (org-clock-goto)))
9382 (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
9384 (defun org-agenda-diary-entry-in-org-file ()
9385 "Make a diary entry in the file `org-agenda-diary-file'."
9386 (let (d1 d2 char (text "") dp1 dp2)
9387 (if (equal (buffer-name) "*Calendar*")
9388 (setq d1 (calendar-cursor-to-date t)
9389 d2 (car calendar-mark-ring))
9390 (setq dp1 (get-text-property (point-at-bol) 'day))
9391 (unless dp1 (user-error "No date defined in current line"))
9392 (setq d1 (calendar-gregorian-from-absolute dp1)
9393 d2 (and (ignore-errors (mark))
9394 (save-excursion
9395 (goto-char (mark))
9396 (setq dp2 (get-text-property (point-at-bol) 'day)))
9397 (calendar-gregorian-from-absolute dp2))))
9398 (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
9399 (setq char (read-char-exclusive))
9400 (cond
9401 ((equal char ?d)
9402 (setq text (read-string "Day entry: "))
9403 (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
9404 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9405 ((equal char ?a)
9406 (setq d1 (list (car d1) (nth 1 d1)
9407 (read-number (format "Reference year [%d]: " (nth 2 d1))
9408 (nth 2 d1))))
9409 (setq text (read-string "Anniversary (use %d to show years): "))
9410 (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
9411 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9412 ((equal char ?b)
9413 (setq text (read-string "Block entry: "))
9414 (unless (and d1 d2 (not (equal d1 d2)))
9415 (user-error "No block of days selected"))
9416 (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
9417 (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
9418 ((equal char ?j)
9419 (org-switch-to-buffer-other-window
9420 (find-file-noselect org-agenda-diary-file))
9421 (require 'org-datetree)
9422 (org-datetree-find-date-create d1)
9423 (org-reveal t))
9424 (t (user-error "Invalid selection character `%c'" char)))))
9426 (defcustom org-agenda-insert-diary-strategy 'date-tree
9427 "Where in `org-agenda-diary-file' should new entries be added?
9428 Valid values:
9430 date-tree in the date tree, as first child of the date
9431 date-tree-last in the date tree, as last child of the date
9432 top-level as top-level entries at the end of the file."
9433 :group 'org-agenda
9434 :type '(choice
9435 (const :tag "first in a date tree" date-tree)
9436 (const :tag "last in a date tree" date-tree-last)
9437 (const :tag "as top level at end of file" top-level)))
9439 (defcustom org-agenda-insert-diary-extract-time nil
9440 "Non-nil means extract any time specification from the diary entry."
9441 :group 'org-agenda
9442 :version "24.1"
9443 :type 'boolean)
9445 (defcustom org-agenda-bulk-mark-char ">"
9446 "A single-character string to be used as the bulk mark."
9447 :group 'org-agenda
9448 :version "24.1"
9449 :type 'string)
9451 (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
9452 "Add a diary entry with TYPE to `org-agenda-diary-file'.
9453 If TEXT is not empty, it will become the headline of the new entry, and
9454 the resulting entry will not be shown. When TEXT is empty, switch to
9455 `org-agenda-diary-file' and let the user finish the entry there."
9456 (let ((cw (current-window-configuration)))
9457 (org-switch-to-buffer-other-window
9458 (find-file-noselect org-agenda-diary-file))
9459 (widen)
9460 (goto-char (point-min))
9461 (cond
9462 ((eq type 'anniversary)
9463 (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
9464 (progn
9465 (or (org-at-heading-p t)
9466 (progn
9467 (outline-next-heading)
9468 (insert "* Anniversaries\n\n")
9469 (beginning-of-line -1)))))
9470 (outline-next-heading)
9471 (org-back-over-empty-lines)
9472 (backward-char 1)
9473 (insert "\n")
9474 (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
9475 (nth 2 d1) (car d1) (nth 1 d1) text)))
9476 ((eq type 'day)
9477 (let ((org-prefix-has-time t)
9478 (org-agenda-time-leading-zero t)
9479 fmt time time2)
9480 (if org-agenda-insert-diary-extract-time
9481 ;; Use org-agenda-format-item to parse text for a time-range and
9482 ;; remove it. FIXME: This is a hack, we should refactor
9483 ;; that function to make time extraction available separately
9484 (setq fmt (org-agenda-format-item nil text nil nil nil t)
9485 time (get-text-property 0 'time fmt)
9486 time2 (if (> (length time) 0)
9487 ;; split-string removes trailing ...... if
9488 ;; no end time given. First space
9489 ;; separates time from date.
9490 (concat " " (car (split-string time "\\.")))
9491 nil)
9492 text (get-text-property 0 'txt fmt)))
9493 (if (eq org-agenda-insert-diary-strategy 'top-level)
9494 (org-agenda-insert-diary-as-top-level text)
9495 (require 'org-datetree)
9496 (org-datetree-find-date-create d1)
9497 (org-agenda-insert-diary-make-new-entry text))
9498 (org-insert-time-stamp (org-time-from-absolute
9499 (calendar-absolute-from-gregorian d1))
9500 nil nil nil nil time2))
9501 (end-of-line 0))
9502 ((eq type 'block)
9503 (if (> (calendar-absolute-from-gregorian d1)
9504 (calendar-absolute-from-gregorian d2))
9505 (setq d1 (prog1 d2 (setq d2 d1))))
9506 (if (eq org-agenda-insert-diary-strategy 'top-level)
9507 (org-agenda-insert-diary-as-top-level text)
9508 (require 'org-datetree)
9509 (org-datetree-find-date-create d1)
9510 (org-agenda-insert-diary-make-new-entry text))
9511 (org-insert-time-stamp (org-time-from-absolute
9512 (calendar-absolute-from-gregorian d1)))
9513 (insert "--")
9514 (org-insert-time-stamp (org-time-from-absolute
9515 (calendar-absolute-from-gregorian d2)))
9516 (end-of-line 0)))
9517 (if (string-match "\\S-" text)
9518 (progn
9519 (set-window-configuration cw)
9520 (message "%s entry added to %s"
9521 (capitalize (symbol-name type))
9522 (abbreviate-file-name org-agenda-diary-file)))
9523 (org-reveal t)
9524 (message "Please finish entry here"))))
9526 (defun org-agenda-insert-diary-as-top-level (text)
9527 "Make new entry as a top-level entry at the end of the file.
9528 Add TEXT as headline, and position the cursor in the second line so that
9529 a timestamp can be added there."
9530 (widen)
9531 (goto-char (point-max))
9532 (unless (bolp) (insert "\n"))
9533 (org-insert-heading nil t t)
9534 (insert text)
9535 (org-end-of-meta-data)
9536 (unless (bolp) (insert "\n"))
9537 (when org-adapt-indentation (indent-to-column 2)))
9539 (defun org-agenda-insert-diary-make-new-entry (text)
9540 "Make a new entry with TEXT as a child of the current subtree.
9541 Position the point in the heading's first body line so that
9542 a timestamp can be added there."
9543 (cond
9544 ((eq org-agenda-insert-diary-strategy 'date-tree-last)
9545 (end-of-line)
9546 (org-insert-heading '(4) t)
9547 (org-do-demote))
9549 (outline-next-heading)
9550 (org-back-over-empty-lines)
9551 (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
9552 (org-insert-heading nil t)
9553 (org-do-demote)))
9554 (let ((col (current-column)))
9555 (insert text)
9556 (org-end-of-meta-data)
9557 ;; Ensure point is left on a blank line, at proper indentation.
9558 (unless (bolp) (insert "\n"))
9559 (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
9560 (when org-adapt-indentation (indent-to-column col)))
9561 (org-show-set-visibility 'lineage))
9563 (defun org-agenda-diary-entry ()
9564 "Make a diary entry, like the `i' command from the calendar.
9565 All the standard commands work: block, weekly etc.
9566 When `org-agenda-diary-file' points to a file,
9567 `org-agenda-diary-entry-in-org-file' is called instead to create
9568 entries in that Org file."
9569 (interactive)
9570 (if (not (eq org-agenda-diary-file 'diary-file))
9571 (org-agenda-diary-entry-in-org-file)
9572 (require 'diary-lib)
9573 (let* ((char (read-char-exclusive
9574 "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
9575 [a]nniversary [b]lock [c]yclic"))
9576 (cmd (cdr (assoc char
9577 '((?d . diary-insert-entry)
9578 (?w . diary-insert-weekly-entry)
9579 (?m . diary-insert-monthly-entry)
9580 (?y . diary-insert-yearly-entry)
9581 (?a . diary-insert-anniversary-entry)
9582 (?b . diary-insert-block-entry)
9583 (?c . diary-insert-cyclic-entry)))))
9584 (oldf (symbol-function 'calendar-cursor-to-date))
9585 ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
9586 (point (point))
9587 (mark (or (mark t) (point))))
9588 (unless cmd
9589 (user-error "No command associated with <%c>" char))
9590 (unless (and (get-text-property point 'day)
9591 (or (not (equal ?b char))
9592 (get-text-property mark 'day)))
9593 (user-error "Don't know which date to use for diary entry"))
9594 ;; We implement this by hacking the `calendar-cursor-to-date' function
9595 ;; and the `calendar-mark-ring' variable. Saves a lot of code.
9596 (let ((calendar-mark-ring
9597 (list (calendar-gregorian-from-absolute
9598 (or (get-text-property mark 'day)
9599 (get-text-property point 'day))))))
9600 (unwind-protect
9601 (progn
9602 (fset 'calendar-cursor-to-date
9603 (lambda (&optional error dummy)
9604 (calendar-gregorian-from-absolute
9605 (get-text-property point 'day))))
9606 (call-interactively cmd))
9607 (fset 'calendar-cursor-to-date oldf))))))
9609 (defun org-agenda-execute-calendar-command (cmd)
9610 "Execute a calendar command from the agenda with date from cursor."
9611 (org-agenda-check-type t 'agenda)
9612 (require 'diary-lib)
9613 (unless (get-text-property (min (1- (point-max)) (point)) 'day)
9614 (user-error "Don't know which date to use for the calendar command"))
9615 (let* ((oldf (symbol-function 'calendar-cursor-to-date))
9616 (point (point))
9617 (date (calendar-gregorian-from-absolute
9618 (get-text-property point 'day)))
9619 ;; the following 2 vars are needed in the calendar
9620 (displayed-month (car date))
9621 (displayed-year (nth 2 date)))
9622 (unwind-protect
9623 (progn
9624 (fset 'calendar-cursor-to-date
9625 (lambda (&optional error dummy)
9626 (calendar-gregorian-from-absolute
9627 (get-text-property point 'day))))
9628 (call-interactively cmd))
9629 (fset 'calendar-cursor-to-date oldf))))
9631 (defun org-agenda-phases-of-moon ()
9632 "Display the phases of the moon for the 3 months around the cursor date."
9633 (interactive)
9634 (org-agenda-execute-calendar-command 'calendar-lunar-phases))
9636 (defun org-agenda-holidays ()
9637 "Display the holidays for the 3 months around the cursor date."
9638 (interactive)
9639 (org-agenda-execute-calendar-command 'calendar-list-holidays))
9641 (defvar calendar-longitude) ; defined in calendar.el
9642 (defvar calendar-latitude) ; defined in calendar.el
9643 (defvar calendar-location-name) ; defined in calendar.el
9645 (defun org-agenda-sunrise-sunset (arg)
9646 "Display sunrise and sunset for the cursor date.
9647 Latitude and longitude can be specified with the variables
9648 `calendar-latitude' and `calendar-longitude'. When called with prefix
9649 argument, latitude and longitude will be prompted for."
9650 (interactive "P")
9651 (require 'solar)
9652 (let ((calendar-longitude (if arg nil calendar-longitude))
9653 (calendar-latitude (if arg nil calendar-latitude))
9654 (calendar-location-name
9655 (if arg "the given coordinates" calendar-location-name)))
9656 (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
9658 (defun org-agenda-goto-calendar ()
9659 "Open the Emacs calendar with the date at the cursor."
9660 (interactive)
9661 (org-agenda-check-type t 'agenda)
9662 (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
9663 (user-error "Don't know which date to open in calendar")))
9664 (date (calendar-gregorian-from-absolute day))
9665 (calendar-move-hook nil)
9666 (calendar-view-holidays-initially-flag nil)
9667 (calendar-view-diary-initially-flag nil))
9668 (calendar)
9669 (calendar-goto-date date)))
9671 ;;;###autoload
9672 (defun org-calendar-goto-agenda ()
9673 "Compute the Org agenda for the calendar date displayed at the cursor.
9674 This is a command that has to be installed in `calendar-mode-map'."
9675 (interactive)
9676 ;; Temporarily disable sticky agenda since user clearly wants to
9677 ;; refresh view anyway.
9678 (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
9679 (org-agenda-sticky nil))
9680 (org-agenda-list nil (calendar-absolute-from-gregorian
9681 (calendar-cursor-to-date))
9682 nil)))
9684 (defun org-agenda-convert-date ()
9685 (interactive)
9686 (org-agenda-check-type t 'agenda)
9687 (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
9688 date s)
9689 (unless day
9690 (user-error "Don't know which date to convert"))
9691 (setq date (calendar-gregorian-from-absolute day))
9692 (setq s (concat
9693 "Gregorian: " (calendar-date-string date) "\n"
9694 "ISO: " (calendar-iso-date-string date) "\n"
9695 "Day of Yr: " (calendar-day-of-year-string date) "\n"
9696 "Julian: " (calendar-julian-date-string date) "\n"
9697 "Astron. JD: " (calendar-astro-date-string date)
9698 " (Julian date number at noon UTC)\n"
9699 "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
9700 "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
9701 "French: " (calendar-french-date-string date) "\n"
9702 "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
9703 "Mayan: " (calendar-mayan-date-string date) "\n"
9704 "Coptic: " (calendar-coptic-date-string date) "\n"
9705 "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
9706 "Persian: " (calendar-persian-date-string date) "\n"
9707 "Chinese: " (calendar-chinese-date-string date) "\n"))
9708 (with-output-to-temp-buffer "*Dates*"
9709 (princ s))
9710 (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
9712 ;;; Bulk commands
9714 (defun org-agenda-bulk-marked-p ()
9715 "Non-nil when current entry is marked for bulk action."
9716 (eq (get-char-property (point-at-bol) 'type)
9717 'org-marked-entry-overlay))
9719 (defun org-agenda-bulk-mark (&optional arg)
9720 "Mark entries for future bulk action.
9722 When ARG is nil or one and region is not active then mark the
9723 entry at point.
9725 When ARG is nil or one and region is active then mark the entries
9726 in the region.
9728 When ARG is greater than one mark ARG lines."
9729 (interactive "p")
9730 (when (and (or (not arg) (= arg 1)) (use-region-p))
9731 (setq arg (count-lines (region-beginning) (region-end)))
9732 (goto-char (region-beginning))
9733 (deactivate-mark))
9734 (dotimes (i (or arg 1))
9735 (unless (org-get-at-bol 'org-agenda-diary-link)
9736 (let* ((m (org-get-at-bol 'org-hd-marker))
9738 (unless (org-agenda-bulk-marked-p)
9739 (unless m (user-error "Nothing to mark at point"))
9740 (push m org-agenda-bulk-marked-entries)
9741 (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
9742 (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
9743 (org-get-todo-face "TODO")
9744 'evaporate)
9745 (overlay-put ov 'type 'org-marked-entry-overlay))
9746 (end-of-line 1)
9747 (or (ignore-errors
9748 (goto-char (next-single-property-change (point) 'org-hd-marker)))
9749 (beginning-of-line 2))
9750 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9751 (beginning-of-line 2)))))
9752 (message "%d entries marked for bulk action"
9753 (length org-agenda-bulk-marked-entries)))
9755 (defun org-agenda-bulk-mark-all ()
9756 "Mark all entries for future agenda bulk action."
9757 (interactive)
9758 (org-agenda-bulk-mark-regexp "."))
9760 (defun org-agenda-bulk-mark-regexp (regexp)
9761 "Mark entries matching REGEXP for future agenda bulk action."
9762 (interactive "sMark entries matching regexp: ")
9763 (let ((entries-marked 0) txt-at-point)
9764 (save-excursion
9765 (goto-char (point-min))
9766 (goto-char (next-single-property-change (point) 'org-hd-marker))
9767 (while (and (re-search-forward regexp nil t)
9768 (setq txt-at-point (get-text-property (point) 'txt)))
9769 (if (get-char-property (point) 'invisible)
9770 (beginning-of-line 2)
9771 (when (string-match regexp txt-at-point)
9772 (setq entries-marked (1+ entries-marked))
9773 (call-interactively 'org-agenda-bulk-mark)))))
9775 (if (not entries-marked)
9776 (message "No entry matching this regexp."))))
9778 (defun org-agenda-bulk-unmark (&optional arg)
9779 "Unmark the entry at point for future bulk action."
9780 (interactive "P")
9781 (if arg
9782 (org-agenda-bulk-unmark-all)
9783 (cond ((org-agenda-bulk-marked-p)
9784 (org-agenda-bulk-remove-overlays
9785 (point-at-bol) (+ 2 (point-at-bol)))
9786 (setq org-agenda-bulk-marked-entries
9787 (delete (org-get-at-bol 'org-hd-marker)
9788 org-agenda-bulk-marked-entries))
9789 (end-of-line 1)
9790 (or (ignore-errors
9791 (goto-char (next-single-property-change (point) 'txt)))
9792 (beginning-of-line 2))
9793 (while (and (get-char-property (point) 'invisible) (not (eobp)))
9794 (beginning-of-line 2))
9795 (message "%d entries left marked for bulk action"
9796 (length org-agenda-bulk-marked-entries)))
9797 (t (message "No entry to unmark here")))))
9799 (defun org-agenda-bulk-toggle-all ()
9800 "Toggle all marks for bulk action."
9801 (interactive)
9802 (save-excursion
9803 (goto-char (point-min))
9804 (while (ignore-errors
9805 (goto-char (next-single-property-change (point) 'org-hd-marker)))
9806 (org-agenda-bulk-toggle))))
9808 (defun org-agenda-bulk-toggle ()
9809 "Toggle the mark at point for bulk action."
9810 (interactive)
9811 (if (org-agenda-bulk-marked-p)
9812 (org-agenda-bulk-unmark)
9813 (org-agenda-bulk-mark)))
9815 (defun org-agenda-bulk-remove-overlays (&optional beg end)
9816 "Remove the mark overlays between BEG and END in the agenda buffer.
9817 BEG and END default to the buffer limits.
9819 This only removes the overlays, it does not remove the markers
9820 from the list in `org-agenda-bulk-marked-entries'."
9821 (interactive)
9822 (mapc (lambda (ov)
9823 (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
9824 (delete-overlay ov)))
9825 (overlays-in (or beg (point-min)) (or end (point-max)))))
9827 (defun org-agenda-bulk-unmark-all ()
9828 "Remove all marks in the agenda buffer.
9829 This will remove the markers and the overlays."
9830 (interactive)
9831 (if (null org-agenda-bulk-marked-entries)
9832 (message "No entry to unmark")
9833 (setq org-agenda-bulk-marked-entries nil)
9834 (org-agenda-bulk-remove-overlays (point-min) (point-max))))
9836 (defcustom org-agenda-persistent-marks nil
9837 "Non-nil means marked items will stay marked after a bulk action.
9838 You can toggle this interactively by typing `p' when prompted for a
9839 bulk action."
9840 :group 'org-agenda
9841 :version "24.1"
9842 :type 'boolean)
9844 (defun org-agenda-bulk-action (&optional arg)
9845 "Execute an remote-editing action on all marked entries.
9846 The prefix arg is passed through to the command if possible."
9847 (interactive "P")
9848 ;; Make sure we have markers, and only valid ones.
9849 (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
9850 (dolist (m org-agenda-bulk-marked-entries)
9851 (unless (and (markerp m)
9852 (marker-buffer m)
9853 (buffer-live-p (marker-buffer m))
9854 (marker-position m))
9855 (user-error "Marker %s for bulk command is invalid" m)))
9857 ;; Prompt for the bulk command.
9858 (org-unlogged-message
9859 (concat (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")
9860 "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
9861 "[S]catter [f]unction "
9862 (and org-agenda-bulk-custom-functions
9863 (format " Custom: [%s]"
9864 (mapconcat (lambda (f) (char-to-string (car f)))
9865 org-agenda-bulk-custom-functions
9866 "")))))
9867 (catch 'exit
9868 (let* ((org-log-refile (if org-log-refile 'time nil))
9869 (entries (reverse org-agenda-bulk-marked-entries))
9870 (org-overriding-default-time
9871 (and (get-text-property (point) 'org-agenda-date-header)
9872 (org-get-cursor-date)))
9873 redo-at-end
9874 cmd)
9875 (pcase (read-char-exclusive)
9877 (let ((org-agenda-persistent-marks
9878 (not org-agenda-persistent-marks)))
9879 (org-agenda-bulk-action)
9880 (throw 'exit nil)))
9883 (setq cmd #'org-agenda-archive))
9886 (setq cmd #'org-agenda-archive-to-archive-sibling))
9888 ((or ?r ?w)
9889 (let ((refile-location
9890 (org-refile-get-location
9891 "Refile to"
9892 (marker-buffer (car entries))
9893 org-refile-allow-creating-parent-nodes)))
9894 (when (nth 3 refile-location)
9895 (setcar (nthcdr 3 refile-location)
9896 (move-marker
9897 (make-marker)
9898 (nth 3 refile-location)
9899 (or (get-file-buffer (nth 1 refile-location))
9900 (find-buffer-visiting (nth 1 refile-location))
9901 (error "This should not happen")))))
9903 (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
9904 (setq redo-at-end t)))
9907 (let ((state (completing-read
9908 "Todo state: "
9909 (with-current-buffer (marker-buffer (car entries))
9910 (mapcar #'list org-todo-keywords-1)))))
9911 (setq cmd `(lambda ()
9912 (let ((org-inhibit-blocking t)
9913 (org-inhibit-logging 'note))
9914 (org-agenda-todo ,state))))))
9916 ((and (or ?- ?+) action)
9917 (let ((tag (completing-read
9918 (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
9919 (with-current-buffer (marker-buffer (car entries))
9920 (delq nil
9921 (mapcar (lambda (x) (and (stringp (car x)) x))
9922 org-current-tag-alist))))))
9923 (setq cmd
9924 `(lambda ()
9925 (org-agenda-set-tags ,tag
9926 ,(if (eq action ?+) ''on ''off))))))
9928 ((and (or ?s ?d) c)
9929 (let* ((schedule? (eq c ?s))
9930 (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
9931 (time
9932 (and (not arg)
9933 (let ((new (org-read-date
9934 nil nil nil prompt org-overriding-default-time)))
9935 ;; A "double plus" answer applies to every
9936 ;; scheduled time. Do not turn it into
9937 ;; a fixed date yet.
9938 (if (string-match-p "\\`[ \t]*\\+\\+"
9939 org-read-date-final-answer)
9940 org-read-date-final-answer
9941 new)))))
9942 ;; Make sure to not prompt for a note when bulk
9943 ;; rescheduling/resetting deadline as Org cannot cope with
9944 ;; simultaneous notes. Besides, it could be annoying
9945 ;; depending on the number of marked items.
9946 (setq cmd
9947 (if schedule?
9948 `(lambda ()
9949 (let ((org-log-reschedule
9950 (and org-log-reschedule 'time)))
9951 (org-agenda-schedule arg ,time)))
9952 `(lambda ()
9953 (let ((org-log-redeadline (and org-log-redeadline 'time)))
9954 (org-agenda-deadline arg ,time)))))))
9957 (unless (org-agenda-check-type nil 'agenda 'todo)
9958 (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
9959 (let ((days (read-number
9960 (format "Scatter tasks across how many %sdays: "
9961 (if arg "week" ""))
9962 7)))
9963 (setq cmd
9964 `(lambda ()
9965 (let ((distance (1+ (random ,days))))
9966 (when arg
9967 (let ((dist distance)
9968 (day-of-week
9969 (calendar-day-of-week
9970 (calendar-gregorian-from-absolute (org-today)))))
9971 (dotimes (i (1+ dist))
9972 (while (member day-of-week org-agenda-weekend-days)
9973 (cl-incf distance)
9974 (cl-incf day-of-week)
9975 (when (= day-of-week 7)
9976 (setq day-of-week 0)))
9977 (cl-incf day-of-week)
9978 (when (= day-of-week 7)
9979 (setq day-of-week 0)))))
9980 ;; Silently fail when try to replan a sexp entry.
9981 (ignore-errors
9982 (let* ((date (calendar-gregorian-from-absolute
9983 (+ (org-today) distance)))
9984 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
9985 (nth 2 date))))
9986 (org-agenda-schedule nil time))))))))
9989 (setq cmd
9990 (intern
9991 (completing-read "Function: " obarray #'fboundp t nil nil))))
9993 (action
9994 (pcase (assoc action org-agenda-bulk-custom-functions)
9995 (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
9996 (_ (user-error "Invalid bulk action: %c" action)))))
9998 ;; Sort the markers, to make sure that parents are handled
9999 ;; before children.
10000 (setq entries (sort entries
10001 (lambda (a b)
10002 (cond
10003 ((eq (marker-buffer a) (marker-buffer b))
10004 (< (marker-position a) (marker-position b)))
10006 (string< (buffer-name (marker-buffer a))
10007 (buffer-name (marker-buffer b))))))))
10009 ;; Now loop over all markers and apply CMD.
10010 (let ((processed 0)
10011 (skipped 0))
10012 (dolist (e entries)
10013 (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
10014 (if (not pos)
10015 (progn (message "Skipping removed entry at %s" e)
10016 (cl-incf skipped))
10017 (goto-char pos)
10018 (let (org-loop-over-headlines-in-active-region) (funcall cmd))
10019 ;; `post-command-hook' is not run yet. We make sure any
10020 ;; pending log note is processed.
10021 (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
10022 (memq 'org-add-log-note post-command-hook))
10023 (org-add-log-note))
10024 (cl-incf processed))))
10025 (when redo-at-end (org-agenda-redo))
10026 (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
10027 (message "Acted on %d entries%s%s"
10028 processed
10029 (if (= skipped 0)
10031 (format ", skipped %d (disappeared before their turn)"
10032 skipped))
10033 (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
10035 (defun org-agenda-capture (&optional with-time)
10036 "Call `org-capture' with the date at point.
10037 With a `C-1' prefix, use the HH:MM value at point (if any) or the
10038 current HH:MM time."
10039 (interactive "P")
10040 (if (not (eq major-mode 'org-agenda-mode))
10041 (user-error "You cannot do this outside of agenda buffers")
10042 (let ((org-overriding-default-time
10043 (org-get-cursor-date (equal with-time 1))))
10044 (call-interactively 'org-capture))))
10046 ;;; Dragging agenda lines forward/backward
10048 (defun org-agenda-reapply-filters ()
10049 "Re-apply all agenda filters."
10050 (mapcar
10051 (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
10052 `((,org-agenda-tag-filter tag)
10053 (,org-agenda-category-filter category)
10054 (,org-agenda-regexp-filter regexp)
10055 (,org-agenda-effort-filter effort)
10056 (,(get 'org-agenda-tag-filter :preset-filter) tag)
10057 (,(get 'org-agenda-category-filter :preset-filter) category)
10058 (,(get 'org-agenda-effort-filter :preset-filter) effort)
10059 (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
10061 (defun org-agenda-drag-line-forward (arg &optional backward)
10062 "Drag an agenda line forward by ARG lines.
10063 When the optional argument `backward' is non-nil, move backward."
10064 (interactive "p")
10065 (let ((inhibit-read-only t) lst line)
10066 (if (or (not (get-text-property (point) 'txt))
10067 (save-excursion
10068 (dotimes (n arg)
10069 (move-beginning-of-line (if backward 0 2))
10070 (push (not (get-text-property (point) 'txt)) lst))
10071 (delq nil lst)))
10072 (message "Cannot move line forward")
10073 (let ((end (save-excursion (move-beginning-of-line 2) (point))))
10074 (move-beginning-of-line 1)
10075 (setq line (buffer-substring (point) end))
10076 (delete-region (point) end)
10077 (move-beginning-of-line (funcall (if backward '1- '1+) arg))
10078 (insert line)
10079 (org-agenda-reapply-filters)
10080 (org-agenda-mark-clocking-task)
10081 (move-beginning-of-line 0)))))
10083 (defun org-agenda-drag-line-backward (arg)
10084 "Drag an agenda line backward by ARG lines."
10085 (interactive "p")
10086 (org-agenda-drag-line-forward arg t))
10088 ;;; Flagging notes
10090 (defun org-agenda-show-the-flagging-note ()
10091 "Display the flagging note in the other window.
10092 When called a second time in direct sequence, offer to remove the FLAGGING
10093 tag and (if present) the flagging note."
10094 (interactive)
10095 (let ((hdmarker (org-get-at-bol 'org-hd-marker))
10096 (win (selected-window))
10097 note heading newhead)
10098 (unless hdmarker
10099 (user-error "No linked entry at point"))
10100 (if (and (eq this-command last-command)
10101 (y-or-n-p "Unflag and remove any flagging note? "))
10102 (progn
10103 (org-agenda-remove-flag hdmarker)
10104 (let ((win (get-buffer-window "*Flagging Note*")))
10105 (and win (delete-window win)))
10106 (message "Entry unflagged"))
10107 (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
10108 (unless note
10109 (user-error "No flagging note"))
10110 (org-kill-new note)
10111 (org-switch-to-buffer-other-window "*Flagging Note*")
10112 (erase-buffer)
10113 (insert note)
10114 (goto-char (point-min))
10115 (while (re-search-forward "\\\\n" nil t)
10116 (replace-match "\n" t t))
10117 (goto-char (point-min))
10118 (select-window win)
10119 (message "%s" (substitute-command-keys "Flagging note pushed to \
10120 kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
10121 tag and note")))))
10123 (defun org-agenda-remove-flag (marker)
10124 "Remove the FLAGGED tag and any flagging note in the entry."
10125 (let (newhead)
10126 (org-with-point-at marker
10127 (org-toggle-tag "FLAGGED" 'off)
10128 (org-entry-delete nil "THEFLAGGINGNOTE")
10129 (setq newhead (org-get-heading)))
10130 (org-agenda-change-all-lines newhead marker)
10131 (message "Entry unflagged")))
10133 (defun org-agenda-get-any-marker (&optional pos)
10134 (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
10135 (get-text-property (or pos (point-at-bol)) 'org-marker)))
10137 ;;; Appointment reminders
10139 (defvar appt-time-msg-list) ; defined in appt.el
10141 ;;;###autoload
10142 (defun org-agenda-to-appt (&optional refresh filter &rest args)
10143 "Activate appointments found in `org-agenda-files'.
10145 With a `\\[universal-argument]' prefix, refresh the list of \
10146 appointments.
10148 If FILTER is t, interactively prompt the user for a regular
10149 expression, and filter out entries that don't match it.
10151 If FILTER is a string, use this string as a regular expression
10152 for filtering entries out.
10154 If FILTER is a function, filter out entries against which
10155 calling the function returns nil. This function takes one
10156 argument: an entry from `org-agenda-get-day-entries'.
10158 FILTER can also be an alist with the car of each cell being
10159 either `headline' or `category'. For example:
10161 \\='((headline \"IMPORTANT\")
10162 (category \"Work\"))
10164 will only add headlines containing IMPORTANT or headlines
10165 belonging to the \"Work\" category.
10167 ARGS are symbols indicating what kind of entries to consider.
10168 By default `org-agenda-to-appt' will use :deadline*, :scheduled*
10169 \(i.e., deadlines and scheduled items with a hh:mm specification)
10170 and :timestamp entries. See the docstring of `org-diary' for
10171 details and examples.
10173 If an entry has a APPT_WARNTIME property, its value will be used
10174 to override `appt-message-warning-time'."
10175 (interactive "P")
10176 (if refresh (setq appt-time-msg-list nil))
10177 (if (eq filter t)
10178 (setq filter (read-from-minibuffer "Regexp filter: ")))
10179 (let* ((cnt 0) ; count added events
10180 (scope (or args '(:deadline* :scheduled* :timestamp)))
10181 (org-agenda-new-buffers nil)
10182 (org-deadline-warning-days 0)
10183 ;; Do not use `org-today' here because appt only takes
10184 ;; time and without date as argument, so it may pass wrong
10185 ;; information otherwise
10186 (today (org-date-to-gregorian
10187 (time-to-days (current-time))))
10188 (org-agenda-restrict nil)
10189 (files (org-agenda-files 'unrestricted)) entries file
10190 (org-agenda-buffer nil))
10191 ;; Get all entries which may contain an appt
10192 (org-agenda-prepare-buffers files)
10193 (while (setq file (pop files))
10194 (setq entries
10195 (delq nil
10196 (append entries
10197 (apply 'org-agenda-get-day-entries
10198 file today scope)))))
10199 ;; Map thru entries and find if we should filter them out
10200 (mapc
10201 (lambda (x)
10202 (let* ((evt (org-trim
10203 (replace-regexp-in-string
10204 org-bracket-link-regexp "\\3"
10205 (or (get-text-property 1 'txt x) ""))))
10206 (cat (get-text-property (1- (length x)) 'org-category x))
10207 (tod (get-text-property 1 'time-of-day x))
10208 (ok (or (null filter)
10209 (and (stringp filter) (string-match filter evt))
10210 (and (functionp filter) (funcall filter x))
10211 (and (listp filter)
10212 (let ((cat-filter (cadr (assq 'category filter)))
10213 (evt-filter (cadr (assq 'headline filter))))
10214 (or (and (stringp cat-filter)
10215 (string-match cat-filter cat))
10216 (and (stringp evt-filter)
10217 (string-match evt-filter evt)))))))
10218 (wrn (get-text-property 1 'warntime x)))
10219 ;; FIXME: Shall we remove text-properties for the appt text?
10220 ;; (setq evt (set-text-properties 0 (length evt) nil evt))
10221 (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
10222 (setq tod (concat "00" (number-to-string tod)))
10223 (setq tod (when (string-match
10224 "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
10225 (concat (match-string 1 tod) ":"
10226 (match-string 2 tod))))
10227 (when (appt-add tod evt wrn)
10228 (setq cnt (1+ cnt))))))
10229 entries)
10230 (org-release-buffers org-agenda-new-buffers)
10231 (if (eq cnt 0)
10232 (message "No event to add")
10233 (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
10235 (defun org-agenda-today-p (date)
10236 "Non nil when DATE means today.
10237 DATE is either a list of the form (month day year) or a number of
10238 days as returned by `calendar-absolute-from-gregorian' or
10239 `org-today'. This function considers `org-extend-today-until'
10240 when defining today."
10241 (eq (org-today)
10242 (if (consp date) (calendar-absolute-from-gregorian date) date)))
10244 (defun org-agenda-todo-yesterday (&optional arg)
10245 "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
10246 (interactive "P")
10247 (let* ((org-use-effective-time t)
10248 (hour (nth 2 (decode-time (org-current-time))))
10249 (org-extend-today-until (1+ hour)))
10250 (org-agenda-todo arg)))
10252 (provide 'org-agenda)
10254 ;;; org-agenda.el ends here