Re: [O] move org line to next superior level

2014-05-30 Thread Thorsten Jolitz
Uwe Ziegenhagen ziegenha...@gmail.com writes: Thorsten Jolitz tjolitz at gmail.com writes: #+begin_src emacs-lisp (defun tj/move-entry-to-next-day () Move entry at point to next parent and tag it. (unless (org-on-heading-p) (outline-previous-heading))

Re: [O] move org line to next superior level

2014-05-29 Thread Thorsten Jolitz
Uwe Ziegenhagen ziegenha...@gmail.com writes: Hi, is there a way to move a specific org mode item across its superior level via shortcut? In the following example I'd like to move the line via shortcut below the '' line. * aaa ** TODO * bbb ** TODO As addon it

Re: [O] move org line to next superior level

2014-05-29 Thread Eric Abrahamsen
Thorsten Jolitz tjol...@gmail.com writes: Uwe Ziegenhagen ziegenha...@gmail.com writes: Hi, is there a way to move a specific org mode item across its superior level via shortcut? In the following example I'd like to move the line via shortcut below the '' line. * aaa **

Re: [O] move org line to next superior level

2014-05-29 Thread Uwe Ziegenhagen
Eric Abrahamsen eric at ericabrahamsen.net writes: Thorsten Jolitz tjolitz at gmail.com writes: Isn't it a feature of Org-mode that tasks can be added anywhere without giving a thought in the agenda files, letting the agenda itself sort them by date? Just changing the timestamp from

Re: [O] move org line to next superior level

2014-05-29 Thread Bastien
Hi Uwe, Uwe Ziegenhagen ziegenha...@gmail.com writes: In the following example I'd like to move the line via shortcut below the '' line. * aaa ** TODO * bbb ** TODO With current version (from maint): - put your cursor on ** TODO - C-a to go at the beginning of

Re: [O] move org line to next superior level

2014-05-29 Thread Thorsten Jolitz
Uwe Ziegenhagen ziegenha...@gmail.com writes: Eric Abrahamsen eric at ericabrahamsen.net writes: Thorsten Jolitz tjolitz at gmail.com writes: Isn't it a feature of Org-mode that tasks can be added anywhere without giving a thought in the agenda files, letting the agenda itself sort

Re: [O] move org line to next superior level

2014-05-29 Thread Uwe Ziegenhagen
Thorsten Jolitz tjolitz at gmail.com writes: #+begin_src emacs-lisp (defun tj/move-entry-to-next-day () Move entry at point to next parent and tag it. (unless (org-on-heading-p) (outline-previous-heading)) (org-mark-subtree) (kill-region (region-beginning)

[O] move org line to next superior level

2014-05-28 Thread Uwe Ziegenhagen
Hi everyone, is there a way to move a specific org mode item across its superior level via shortcut? In the following example I'd like to move the line via shortcut below the '' line. * aaa ** TODO * bbb ** TODO As addon it would be cool to flag this moved line with e.g.