Re: [O] emails written in Org Mode

2014-07-15 Thread Eric Abrahamsen
Joseph Vidal-Rosset writes: > Hello, > > This is very interesting indeed. But is there somewhere a good > tutorial to read or video to see ? It would be helpful for people who > want to use Gnus + Org-mode in optimal way. Someone asked me about a screencast recently, around the same time that I

Re: [O] emails written in Org Mode

2014-07-15 Thread Eric Abrahamsen
Joseph Vidal-Rosset writes: > Hello, > > This is very interesting indeed. But is there somewhere a good > tutorial to read or video to see ? It would be helpful for people who > want to use Gnus + Org-mode in optimal way. Someone asked me about a screencast recently, around the same time that I

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread Grant Rettke
C-c C-v C-e might seem like a lot but it nice to have control and be sure when code is getting evaluated. That said, I do have a more obvious one using "super" which is indeed, super: (local-set-key (kbd "s-t") 'org-babel-tangle) (local-set-key (kbd "s-e") 'org-babel-execute-maybe) Grant Rettke |

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread Nick Dokos
John Kitchin writes: > Aaron Ecay writes: > > Thanks for the advice idea, that is a nice one. It doesn't work for me > like this though: > > #+BEGIN_SRC emacs-lisp > (defadvice org-ctrl-c-ctrl-c (around latex-overlays) > "ignore latex overlays in C-cC-c" > (let ((org-latex-fragment-image-ove

Re: [O] random weekly event

2014-07-15 Thread Thorsten Jolitz
Thorsten Jolitz writes: > ups, should be probably rather this: > > , > | (random-day (+ day (1+ (random (- 7 dow) > ` grrr ... (- 6 dow) of course -- cheers, Thorsten

Re: [O] random weekly event

2014-07-15 Thread Thorsten Jolitz
Thorsten Jolitz writes: > Ivan Kanis writes: > > #+begin_src emacs-lisp > (defun tj/return-random-timestamp-this-week () >"Insert random timestamp for this week." > (interactive) > (let* ((cal-info (decode-time (current-time))) >(dow (nth 6 cal-info)) >(year (nth 5 cal-in

Re: [O] random weekly event

2014-07-15 Thread Thorsten Jolitz
Ivan Kanis writes: > Hi, > > I need to have org agenda (and then appt) manage an event once a week. > The catch is that is should happen at a random day and hour. > > My thinking is that populating programmatically a year entry is probably > the sanest way to go about it. > > Has anyone else done

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread John Kitchin
Aaron Ecay writes: Thanks for the advice idea, that is a nice one. It doesn't work for me like this though: #+BEGIN_SRC emacs-lisp (defadvice org-ctrl-c-ctrl-c (around latex-overlays) "ignore latex overlays in C-cC-c" (let ((org-latex-fragment-image-overlays nil)) ad-do-it)) #+END_SRC m

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread John Kitchin
I actually love C-c C-c to run code blocks! Maybe I should just bind it to f5 or something, I am just so used to C-cC-c now! Grant Rettke writes: > On Mon, Jul 14, 2014 at 7:33 PM, Aaron Ecay wrote: >> The first is to use the C-c C-v C-e binding to execute source blocks >> rather than C-c C-c.

[O] Scheduled tasks: total time since last DONE

2014-07-15 Thread Fletcher Charest
Dear all, I'm sorry if this is a common question but I had trouble finding the right keywords. I am a little puzzled by the way scheduled tasks work. I will give an example. Let's have this task: * TODO Clean the kitchen SCHEDULED: <2014-07-20 jeu. .+1w> If I'm lazy and don't do it for one whol

Re: [O] Problem with org-mode after upgradiing to org 8

2014-07-15 Thread Sean O'Halpin
Hi, This might be something to do with the order in which package initialization and the loading of your init.el file happen. I use the following alias to put my local org-mode git repo paths ahead of anything emacs does on launch (in startup.el or site-start.el, etc.): : alias emacs='/usr/local/

[O] random weekly event

2014-07-15 Thread Ivan Kanis
Hi, I need to have org agenda (and then appt) manage an event once a week. The catch is that is should happen at a random day and hour. My thinking is that populating programmatically a year entry is probably the sanest way to go about it. Has anyone else done it? Ivan -- Repeated reboots of t

Re: [O] :RESULTS: drawer exported in LaTeX

2014-07-15 Thread Roland DONAT
Nick Dokos gmail.com> writes: > > Roland DONAT gmail.com> writes: > > > Dear Orgmode community, > > > > I have this piece of python code that generate Orgmode text : > > > > #+NAME: test > > #+HEADER: :session test1 > > #+HEADER: :results value drawer > > #+BEGIN_SRC python > > a = "** H1\n

Re: [O] :RESULTS: drawer exported in LaTeX

2014-07-15 Thread Nick Dokos
Roland DONAT writes: > Dear Orgmode community, > > I have this piece of python code that generate Orgmode text : > > #+NAME: test > #+HEADER: :session test1 > #+HEADER: :results value drawer > #+BEGIN_SRC python > a = "** H1\nblabla\n** H2\nbloblo" > a > #+END_SRC > > #+RESULTS: test > :RESULT

Re: [O] Excluding habits from Diary?

2014-07-15 Thread Aric Gregson
Aric Gregson writes: > The main improvement for me would be to repress the introduction of > habits into the diary output. I have not been able to accomplish this > thus far, and am unsure of how I might go about trying to do so. The way I have worked around this is to set the habits to show onl

[O] :RESULTS: drawer exported in LaTeX

2014-07-15 Thread Roland DONAT
Dear Orgmode community, I have this piece of python code that generate Orgmode text : #+NAME: test #+HEADER: :session test1 #+HEADER: :results value drawer #+BEGIN_SRC python a = "** H1\nblabla\n** H2\nbloblo" a #+END_SRC #+RESULTS: test :RESULTS: ** H1 blabla ** H2 bloblo :END: But when I e

Re: [O] Babel : python generate org source block with an extra comma before * characters

2014-07-15 Thread Roland DONAT
Thorsten Jolitz gmail.com> writes: > > Roland DONAT gmail.com> writes: > > > To do so, I tried to use de "drawer" option. It gives me the good result > > with a drawer but then when I export my org buffer to latex, the drawers > > ":RESULTS:" is also exported which is not cool... > > Did yo

Re: [O] emails written in Org Mode

2014-07-15 Thread Joseph Vidal-Rosset
Hello, This is very interesting indeed. But is there somewhere a good tutorial to read or video to see ? It would be helpful for people who want to use Gnus + Org-mode in optimal way. Best wishes, Jo. 2014-07-15 16:11 GMT+02:00 Alan Schmitt : > On 2014-07-15 02:57, Thorsten Jolitz writes: >

Re: [O] emails written in Org Mode

2014-07-15 Thread Alan Schmitt
On 2014-07-15 02:57, Thorsten Jolitz writes: > Hadn't have the time to try Gnorb, but the combination of gnus&org is > definitely interesting for me. I highly recommend this library. I haven't scratched the surface, but one great "aha" moment was when I was reading in email in gnus and saw a mes

Re: [O] Macros in included file not expanded in batch export

2014-07-15 Thread Nick Dokos
Suvayu Ali writes: > Hi Nick, > > On Mon, Jul 14, 2014 at 10:50:53PM -0400, Nick Dokos wrote: >> Suvayu Ali writes: >> >> > Hi, >> > >> > I am trying to export to LaTeX in batch mode, but it seems the exporter >> > ignores macros defined in included files when exporting in batch mode. >> > >> >

Re: [O] Test failures

2014-07-15 Thread Achim Gratz
Nick Dokos gmail.com> writes: > Apparently these tests assume that the org info file can be found, but > the `make clea'n that is done at the beginning of make test wipes it > out. That's probably because I'm working out of the cloned git tree, but > if possible, I would like `make test' to work i