Re: [O] problem with babel and dot

2016-02-13 Thread Eric S Fraga
Okay, I have figured this out and here is the solution in case anybody else wants to do something like this: 1. create a very simple dot src block: #+begin_src org ,#+name: generate-graph ,#+begin_src dot :var graph="digraph {}" :file graph.pdf $graph ,#+end_src

Re: [O] Icalendar export and contacts

2016-02-13 Thread Simon Thum
On 02/12/2016 11:43 PM, Nicolas Goaziou wrote: Hello, Simon Thum writes: I noticed one more strange thing: the new exporter fails to resolve links to radio targets (which are slightly pointless but worked before). I'm not sure it needs fixing, just thought I'd let you

[O] LaTeX export with listings: unknown language "calc"

2016-02-13 Thread Axel Kielhorn
Hello! I use some calc in my org document: #+begin_SRC calc :var x=5 :var y=2 :exports both 2 + a * x ** y #+end_SRC When I export this to LaTeX the listings package complains about an unknown language calc. To fix this I simply define a language: #+LATEX_HEADER: \usepackage{listings}

Re: [O] Unit test table

2016-02-13 Thread Eduardo Bellani
Hey Aaron, thanks for the input. I don't think that solves my problem. I think I found a solution, but it involves multiple formulas for the same column. See here https://gist.github.com/ebellani/d271093faaa943674df6 Does anyone have a better idea for doing something like that? I had to modify

[O] how to rebuild org agenda while emacs is idle?

2016-02-13 Thread Gregor Zattler
Hi org-mode users and developers, org-agenda is great but slow, sticky agenda solves this but gets stale really fast. I try to refresh my org-agenda while Emacs is idle like so: (defun gz/refresh-agenda-when-idle () "Refresh Agenda while idle." (org-agenda-redo 'all)) (setq

Re: [O] Icalendar export and contacts

2016-02-13 Thread Simon Thum
Hi, would the attached patch be enough? Cheers, Simon On 02/12/2016 11:41 PM, Nicolas Goaziou wrote: Hello, Simon Thum writes: do you refer to master, maint or something else? I'm on 8.3 but am considering an upgrade. Development version = master. Also I think

Re: [O] LaTeX export with listings: unknown language "calc"

2016-02-13 Thread Eric S Fraga
On Saturday, 13 Feb 2016 at 16:35, Axel Kielhorn wrote: > Hello! > > I use some calc in my org document: > > #+begin_SRC calc :var x=5 :var y=2 :exports both > 2 + a * x ** y > #+end_SRC > > When I export this to LaTeX the listings package complains about an > unknown language calc. > > To fix