diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-12-09 12:37:44 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-12-09 12:37:44 -0500 |
commit | 850b95cc03bc043c165145eb93925b88b3f737b7 (patch) | |
tree | 120b8c91d54785522e905c4409139900b3ad7cf1 | |
parent | 92d44efb3527b655cad08f9966bc0dfc2c08c81b (diff) | |
download | emacs.d-850b95cc03bc043c165145eb93925b88b3f737b7.tar.gz |
Don't track org-agenda-custom-commands
-rw-r--r-- | init.el | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -262,20 +262,6 @@ (todo priority-down category-keep) (tags priority-down category-keep) (search category-keep))) - (setq org-agenda-custom-commands - '(("A" tags-todo "PRIORITY=\"A\"" nil) - ("d" todo "DONE" nil) - ("i" tags-todo "category=\"inbox\"" - ((org-agenda-skip-function - (lambda nil - (org-agenda-skip-entry-if 'nottimestamp))))) - ("u" "Unschedule TODO entries" alltodo "" - ((org-agenda-skip-function - (lambda nil - (org-agenda-skip-entry-if 'scheduled 'deadline - 'regexp "\n]+>"))) - (org-agenda-overriding-header "Unscheduled TODO entries: "))) - ("p" "Past timestamps" tags "TIMESTAMP<=\"<now>\""))) (setq org-agenda-tags-column -90) (advice-add 'org-agenda-goto-today :around (lambda (fn &rest args) |