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)) ;;  Sort by priority where priority goes first.

)
)

("fa" "to cook"  tags "Cuisine=\"Asian\""
          (
         (org-agenda-files '("~/org/files/agenda/food.org")) 
    (org-agenda-sorting-strategy '(priority-down)) ;;  Sort by priority where priority goes first.

)
)

where i would press f then a or c to launch the appropriate agenda command

thx so much

Z