# HG changeset patch # User Oleksandr Gavenko # Date 1455812091 -7200 # Node ID dba4aaf9de9f263ad1b8bdbfad2a2e7cacff87de # Parent b9df4ce57aed194c410fa86863babe6d3db8b202 Do not place TODO keyword before task. Without it agenda show file name which is more meaningful! diff -r b9df4ce57aed -r dba4aaf9de9f .emacs-my --- a/.emacs-my Thu Feb 18 15:50:11 2016 +0200 +++ b/.emacs-my Thu Feb 18 18:14:51 2016 +0200 @@ -1588,7 +1588,7 @@ ((featurep 'org-capture) (setq org-default-notes-file my-org-agenda-todo-file) (setq org-capture-templates - '(("t" "Todo" entry (file my-org-agenda-todo-file) "* TODO %?\n SCHEDULED: %T"))) + '(("t" "Todo" entry (file my-org-agenda-todo-file) "* %?\n SCHEDULED: %T"))) (define-key global-map "\C-vr" (lambda () (interactive) (org-capture nil "t"))) )