Hello,
how can I move a specific TODO item to the end of the level it currently sits?
Example
a) before the command was executed
* TODO Level 1
** TODO something to do a
** DONE something to do b
** TODO something to do c
** TODO something to do d
* TODO Level 1 again
b) after the command was
Thorsten Jolitz 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) (region-
Eric Abrahamsen ericabrahamsen.net> writes:
>
> Thorsten Jolitz 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 monda
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. "m
Alexander Baier gmail.com> writes:
>
> On 2014-05-03 22:07 Uwe Ziegenhagen wrote:
> > I copied and pasted the given code, however I do not see any change. I'll
> > try my luck again tomorrow and will get back to you.
>
> Just to be sure, did you eval the past
Sebastien Vauban writes:
>
> Uwe Ziegenhagen wrote:
> > is it possible to color the different entries in an org file according to
> > the priority assigned to them?
>
> See "color header based on priority/tags rather than level" on
> http://lists.gnu.o
Hello,
is it possible to color the different entries in an org file according to
the priority assigned to them?
I'd like to have #a items in black and #b, #c and non-prioritized items in
gray tones.
Uwe
>
> How exactly are you trying to export? Your output looks like a plain
> latex export (M-x org-export-dispatch RET l p), not beamer (... l P)?
> Note difference in case (p versus P) and similar for export to latex
> code alone (l or b) and for opening the PDF automatically (o versus O).
>
Go
Eric S Fraga ucl.ac.uk> writes:
>
> On Friday, 25 Apr 2014 at 04:38, Uwe Ziegenhagen wrote:
> > Hi,
> >
> > I am trying to export an org file to individual Beamer frames but fail as
> > Org mode exports the sections, but not the frames.
>
> Use H:2 optio
Hi,
I am trying to export an org file to individual Beamer frames but fail as
Org mode exports the sections, but not the frames.
I use the following example org file (as given by
http://orgmode.org/worg/exporters/beamer/tutorial.html)
##
#+TITLE: Writing
Hi everyone,
I have short parts of Python code in my org file:
#+begin_src python :results value
def foo(x):
if x>0:
return x+1
else:
return x-1
return foo(590)
#+end_src
#+RESULTS:
: 591
#+begin_src python :results value
return 1+1
#+end_src
#+RESULTS:
: 2
#+begin_src python :r
Thomas S. Dye tsdye.com> writes:
>
> Hi Uwe,
>
> Uwe Ziegenhagen gmail.com> writes:
>
> You've named it `koma-artikel', not `koma-article'.
>
> hth,
> Tom
>
OMG, that did the trick!
Thanks,
Uwe
Hi everyone,
I am trying to get custom LaTeX exports to work. I installed the latest
version of Emacs (for Windows) and org mode today and have the following in
my .emacs:
(require 'ox-html)
(require 'ox-latex)
(require 'ox-ascii)
;; now let's add a few custom class export templates
(add-to-list
13 matches
Mail list logo