emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Command to open up any agenda file?


From: Kyle Meyer
Subject: Re: [O] Command to open up any agenda file?
Date: Mon, 01 Sep 2014 16:58:53 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Kyle Meyer <address@hidden> wrote:
[...]
> I don't know of any Org function that does this either (and, as
> suggested, I prefer projectile for this), but if you just want a single
> function, I think it could be as simple as this:
>
> #+begin_src elisp
>   (defun find-org-agenda-file (file)
>     (interactive (list (org-completing-read "Agenda file: " 
> (org-agenda-files))))
>     (find-file file))
> #+end_src

Oops, I'd actually change that to this (although the interactive
behavior is the same).

#+begin_src elisp
  (defun find-org-agenda-file ()
    (interactive)
    (find-file (org-completing-read "Agenda file: " (org-agenda-files))))
#+end_src



reply via email to

[Prev in Thread] Current Thread [Next in Thread]