Re: [O] Visiting an Entry with an ID

2016-02-09 Thread Alan Parker Lue
That's perfect, thanks! On Tuesday, February 9, 2016, John Kitchin wrote: > I posted this answer on SO: > > (defun open-id (id) > (org-id-goto id) > (message "%s" (current-buffer))) > > It seems to do what you want. > > Alan Parker Lue writes: > > > Trying to figure out how to switch buffers

Re: [O] Visiting an Entry with an ID

2016-02-09 Thread John Kitchin
I posted this answer on SO: (defun open-id (id) (org-id-goto id) (message "%s" (current-buffer))) It seems to do what you want. Alan Parker Lue writes: > Trying to figure out how to switch buffers when visiting an entry given an > ID in Elisp. To elaborate: > > http://stackoverflow.com/ques

[O] Visiting an Entry with an ID

2016-02-09 Thread Alan Parker Lue
Trying to figure out how to switch buffers when visiting an entry given an ID in Elisp. To elaborate: http://stackoverflow.com/questions/35299171/org-mode-elisp-how-does-one-switch-the-buffer-when-using-an-id-to-visit-an-en Does anyone have an answer for this?