[O] Useful interactive functions for clock logs, and workarounds for large agenda files

2016-07-12 Thread Christoph LANGE
Dear Org-mode community, I have recently developed a few functions related to clocking and the agenda, which are highly useful for me. So far I haven't found the time to add them to worg, but as I have meanwhile open-sourced my Emacs configuration, I thought I'd point you there for now. There

Re: [O] mobileorg agendas.org has no entries [8.3.4 (8.3.4-elpa @ c:/Users/Michael/AppData/Roaming/.emacs.d/elpa/org-20160222/)]

2016-07-12 Thread Michael Ziems
Hello Philip, thanks for the answer, but that did not help me, i believe. I went trough the org-mobile-push with the edebug, but i believe that i have to understand how another function that is in there works, maybe these: (let ((inhibit-redisplay t) (org-agenda-files

Re: [O] Can I quote/ref value in the output table?

2016-07-12 Thread John Kitchin
Do you mean something like this (I used an elisp block instead of a sql block, but hopefully you get the idea): #+name: src-block1 #+BEGIN_SRC emacs-lisp '((1 2) (3 4)) #+END_SRC #+RESULTS: src-block1 | 1 | 2 | | 3 | 4 | #+BEGIN_SRC python :var data=src-block1 print data #+END_SRC #+RESULTS: :

Re: [O] how to speed up an org-mode file?

2016-07-12 Thread Eric S Fraga
My experience is that (non-trivially sized) tables really slow down org mode, especially if there is more than one in a "section". I am not sure why this is, however. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.94.1, Org release_8.3.4-869-gf2c421

Re: [O] how to speed up an org-mode file?

2016-07-12 Thread Leslie Watter
IMHO if you can split the file in more than one .org file you'll get a better experience. I've been working on machines with less than 8Gb of ram in files that are bigger than yours ( 1.2Mb org with lots of latex, R and other things ) and haven't got a trouble. One thing that 've noticed is

Re: [O] workflow, matlab+latex in org file

2016-07-12 Thread Uwe Brauer
>>> "Eric" == Eric S Fraga writes: > On Monday, 11 Jul 2016 at 12:32, Uwe Brauer wrote: >> Hello >> >> I want in a org file, to include matlab code and run it (that I know how >> to do) >> >> Then I want certain results, which are symbolic variables,

[O] a possible solution (was: problems with alphabetic ordering in tables containing non ASCII chars)

2016-07-12 Thread Uwe Brauer
>>> "Nicolas" == Nicolas Goaziou writes: > Uwe Brauer writes: >> Which function could you recommend? > I don't know. There may be something readily available in Emacs 25. > Otherwise, you'll have to write you own. It seems that the easiest

[O] Can I quote/ref value in the output table?

2016-07-12 Thread Xi Shen
Hi, Say I have a sql babel block which outputs a table. Is there any way that I can reference the values in the output table in another babel block?