Nikolaus Rath writes:
Jorge A. Alfaro-Murillo writes:
#+BEGIN_SRC emacs-lisp
(setq org-agenda-prefix-format
'((agenda . " %i %-12:c%?-12t% s")
(timeline . " % s") (todo . " %i %-12:c%-24:b")
(tags . " %i %-12:c") (search . " %i %-12:c")))
(setq org-agenda-sorting-strategy
((agenda habit-down time-up priority-down
category-keep)
(todo category-keep) (tags priority-down
category-keep) (search category-keep)))
#+END_SRC
For me the second assignment fails with:
Sorry, I am missing a quote for the list, the second part should
be
#+BEGIN_SRC emacs-lisp
(setq org-agenda-sorting-strategy
'((agenda habit-down time-up priority-down category-keep)
(todo category-keep)
(tags priority-down category-keep)
(search category-keep)))
#+END_SRC
Best,
--
Jorge.