[O] [BUG] COMMENT-ed sections are tangled, if preceded by an org-todo keyword

2015-10-11 Thread Martin Carlé
Hello, sections or subtrees commented with org-comment-string in the headline should not be tangled. This works fine. However, if a tag defined in org-todo-keywords (other than TODO or DONE) precedes the comment (as the official syntax has it), commenting is no longer respected such that

Re: [O] Suggestion about org-babel: executing source block asynchronously

2015-10-11 Thread Nicolas Goaziou
Hello, kuangdash writes: > Sometime I will run source block (such as python) which take a long time > before I  get the final result. > Then I thought about whether or not the source block can be executed > asynchronously, and the answer is ‘YES’. > But it seems to be

Re: [O] [PATCH] ox-extra.el: Fix filtering of latex header blocks

2015-10-11 Thread Sebastian Christ
And of course, the previous patch contains a bug. I should have tested it with multiple latex header blocks. Sorry for the inconvenience. The attached patch should (hopefully) fix that. Best wishes, Sebastian >From d9890ab84c92ec60e76913d2a1b3967353819500 Mon Sep 17 00:00:00 2001 From:

Re: [O] [BUG] R src blocks untabify literal constant TABs

2015-10-11 Thread Nicolas Goaziou
"Charles C. Berry" writes: >>> Apart from that, the documentation needs to reverse this in 14.2: >>> >>> "may replace sequences of spaces with tab characters" >>> >>> as it is spaces that replace tab characters. >> >> OK. So with the new behaviour, this is the only necessary

Re: [O] First steps in customizing org-mode

2015-10-11 Thread Eric S Fraga
On Saturday, 10 Oct 2015 at 10:08, Giulio Petrucci wrote: [...] > In some sense I strongly disagree with this idea. > Let me explain: it is true that reading the docs for > 'org-agenda-custom-commands' helps me more than googling here and > there. > But *first* I have to know that such a

[O] [PATCH] ob-clojure: cider api change

2015-10-11 Thread Feng Zhou
Hello, This patch makes ob-clojure compatible with latest cider. more details can be found here: https://github.com/clojure-emacs/cider/issues/1302 Best Regards, Feng Zhou From 0de9742a6f1f1e41880a215a46278f6c56daf645 Mon Sep 17 00:00:00 2001 From: Feng Zhou Date: Sun, 11

Re: [O] [RFC] Draft mode

2015-10-11 Thread Rasmus
Nicolas Goaziou writes: > Here's another take on this, which is quite different from the original > draft mode. Now, behaviour on broken links is controlled with > `org-export-with-broken-links' or its OPTIONS counterpart > "broken-links". > > It is possible to either

[O] Bug: org-babel-clojure broken due to cider-nrepl API update [8.3.2 (release_8.3.2-164-g50a182.dirty @ /usr/share/emacs/site-lisp/org/)]

2015-10-11 Thread Elliott Seyler
Due to a recent change in the cider-nrepl API, org-babel integration with Clojure broke. This can be seen here (https://github.com/clojure-emacs/cider/issues/1302) and here (https://github.com/clojure-emacs/cider/issues/1295#issuecomment-137052682). To use the function declaration as an

[O] multi letter agenda commands

2015-10-11 Thread Xebar Saram
Hi all im wondering if anyone knows a way (or if its possible at all) to have multi letter agenda commands, for example ("fc" "to cook" tags "Cuisine=\"American\"" ( (org-agenda-files '("~/org/files/agenda/food.org")) (org-agenda-sorting-strategy '(priority-down)) ;;

Re: [O] multi letter agenda commands

2015-10-11 Thread Eric S Fraga
On Sunday, 11 Oct 2015 at 19:00, Xebar Saram wrote: > Hi all > > im wondering if anyone knows a way (or if its possible at all) to have > multi letter agenda commands, for example I don't know. Try it and see? More often than not, when it comes to org, what you want is already possible! :-) --

Re: [O] [wish] Execute preparation-function before getting base files

2015-10-11 Thread Eric S Fraga
On Saturday, 10 Oct 2015 at 22:25, Arun Isaac wrote: > In org-publish-projects, it would be good if the preparation-function is > executed before getting base files using org-publish-get-base-files. I'm not sure of the actual order of execution but it could be that one or other of the

Re: [O] multi letter agenda commands

2015-10-11 Thread Xebar Saram
How did i forget about hydra :) perfect, thx so much! Z

Re: [O] multi letter agenda commands

2015-10-11 Thread John Kitchin
I didn't try Eric's advice but it is probably a good idea ;) This is pretty easy to do with a hydra menu. Here is a super simple example. See https://github.com/abo-abo/hydra. (defhydra hydra-agenda (:color red :hint nil) "Agenda hydra" ("fd" (org-tags-view nil "TODO=\"DONE\"") "DONE")

Re: [O] [BUG] R src blocks untabify literal constant TABs

2015-10-11 Thread Charles C. Berry
On Sun, 11 Oct 2015, Nicolas Goaziou wrote: What about the following: ‘org-src-preserve-indentation’ By default, the value is ‘nil’, which means that code blocks evaluated during export or tangled are indented according to context, possibly altering leading sequences of

Re: [O] multi letter agenda commands

2015-10-11 Thread Subhan Michael Tindall
It's already built in to custom agendas. See http://pages.sachachua.com/.emacs.d/Sacha.html#unnumbered-80 for excellent agenda examples. Sacha is a great resource for most things org On Sun, Oct 11, 2015, 10:35 AM Xebar Saram wrote: > How did i forget about hydra :) > >

Re: [O] SOLVED: LaTeX equation align in orgmode?

2015-10-11 Thread Enzo Chi
Eric S Fraga writes: > On Friday, 9 Oct 2015 at 09:25, Enzo Chi wrote: >> I tried that "\begin{align}...\end{align}" code with "C-c C-x C-l", it >> generate a very back quality image like this: > > What settings do you have for image creation in org? What is >

Re: [O] [BUG] COMMENT-ed sections are tangled, if preceded by an org-todo keyword

2015-10-11 Thread Martin Carlé
Thank you for looking into that issue! I trace the git repo of org-mode (current commit is 50a18201). My todo-keywords are not defined file-local but during emacs startup like this:

[O] (no subject)

2015-10-11 Thread Shankar Rao
I have multiple savings accounts, some of which I want to partition into mutiple virtual "subaccounts" that don't merit their own savings account. I want to use org-mode tables to keep track how much money is each subaccount. Given the following table: #+TBLNAME: trans-150925 | ! | Amount | From

Re: [O] [BUG] R src blocks untabify literal constant TABs

2015-10-11 Thread Nicolas Goaziou
"Charles C. Berry" writes: >> What about the following: >> >> ‘org-src-preserve-indentation’ By default, the value is ‘nil’, which >> means that code blocks evaluated during export or tangled are >> indented according to context, possibly altering leading >>

Re: [O] [PATCH] ob-clojure: cider api change

2015-10-11 Thread Nicolas Goaziou
Hello, Feng Zhou writes: > This patch makes ob-clojure compatible with latest cider. > more details can be found here: > https://github.com/clojure-emacs/cider/issues/1302 Applied. Thank you. As I didn't know your status wrt to FSF papers, I added "TINYCHANGE" at the end

Re: [O] [BUG] COMMENT-ed sections are tangled, if preceded by an org-todo keyword

2015-10-11 Thread Nicolas Goaziou
Hello, Martin Carlé writes: > sections or subtrees commented with org-comment-string in the headline > should not be tangled. This works fine. > > However, if a tag defined in org-todo-keywords (other than TODO or DONE) > precedes the comment (as the official syntax has

Re: [O] How to cross reference more than two table columns?

2015-10-11 Thread Shankar Rao
Sorry forgot to put in a subject On Sun, Oct 11, 2015 at 12:51 PM, Shankar Rao wrote: > I have multiple savings accounts, some of which I want to partition into > mutiple virtual "subaccounts" that don't merit their own savings account. I > want to use org-mode tables to