Re: [Orgmode] [patch] org-agenda-goto should push mark before moving point

2010-04-27 Thread Carsten Dominik
Hi Andreas, I have applied your patch. Thanks. - Carsten On Apr 23, 2010, at 10:42 AM, Andreas Seltenreich wrote: Carsten Dominik writes: On Apr 22, 2010, at 10:57 PM, Andreas Seltenreich wrote: (switch-to-buffer-other-window buffer) (widen) + (push-mark) (goto-char pos) I am

Re: [Orgmode] [patch] org-agenda-goto should push mark before moving point

2010-04-23 Thread Andreas Seltenreich
Carsten Dominik writes: > On Apr 22, 2010, at 10:57 PM, Andreas Seltenreich wrote: >> (switch-to-buffer-other-window buffer) >> (widen) >> + (push-mark) >> (goto-char pos) > > I am no sure this is the right thing to do. Because, often you will > show *many* places from the agenda be

Re: [Orgmode] [patch] org-agenda-goto should push mark before moving point

2010-04-23 Thread Carsten Dominik
Hi Andreas, On Apr 22, 2010, at 10:57 PM, Andreas Seltenreich wrote: Hi, many commands in Emacs that move the point long distances push the mark so you can go back using C-u C-. org-agenda-goto doesn't do this, and I found it a bit annoying that I have to navigate the outline again to

[Orgmode] [patch] org-agenda-goto should push mark before moving point

2010-04-22 Thread Andreas Seltenreich
Hi, many commands in Emacs that move the point long distances push the mark so you can go back using C-u C-. org-agenda-goto doesn't do this, and I found it a bit annoying that I have to navigate the outline again to find back to where the point was before using the Agenda. Patch attached. rega