Re: [O] multi letter agenda commands

2015-10-21 Thread Matt Lundin
Subhan Michael Tindall writes: > It's already built in to custom agendas. See > http://pages.sachachua.com/.emacs.d/Sacha.html#unnumbered-80 for > excellent agenda examples. Sacha is a great resource for most things > org And there's also the manual. ;) "The initial

[O] multi letter agenda commands

2015-10-11 Thread Xebar Saram
Hi all im wondering if anyone knows a way (or if its possible at all) to have multi letter agenda commands, for example ("fc" "to cook" tags "Cuisine=\"American\"" ( (org-agenda-files '("~/org/files/agenda/food.org")) (org-agenda-sorting-strategy '(priority-down)) ;;

Re: [O] multi letter agenda commands

2015-10-11 Thread Eric S Fraga
On Sunday, 11 Oct 2015 at 19:00, Xebar Saram wrote: > Hi all > > im wondering if anyone knows a way (or if its possible at all) to have > multi letter agenda commands, for example I don't know. Try it and see? More often than not, when it comes to org, what you want is already possible! :-) --

Re: [O] multi letter agenda commands

2015-10-11 Thread Xebar Saram
How did i forget about hydra :) perfect, thx so much! Z

Re: [O] multi letter agenda commands

2015-10-11 Thread John Kitchin
I didn't try Eric's advice but it is probably a good idea ;) This is pretty easy to do with a hydra menu. Here is a super simple example. See https://github.com/abo-abo/hydra. (defhydra hydra-agenda (:color red :hint nil) "Agenda hydra" ("fd" (org-tags-view nil "TODO=\"DONE\"") "DONE")

Re: [O] multi letter agenda commands

2015-10-11 Thread Subhan Michael Tindall
It's already built in to custom agendas. See http://pages.sachachua.com/.emacs.d/Sacha.html#unnumbered-80 for excellent agenda examples. Sacha is a great resource for most things org On Sun, Oct 11, 2015, 10:35 AM Xebar Saram wrote: > How did i forget about hydra :) > >