[O] [bug] #+constants line has to be at column 0

2014-03-11 Thread Eric S Fraga
Hello, Unlike some other #+ directives, the #+constants: one has to be at column 0 or else it is not understood/parsed by org. This has consequences for lists. See attached example. #+TITLE: examplebug.org #+AUTHOR:Eric S Fraga * Table constants Assume that I have a list: 1. and in

[O] Babel should not work in the subtree marked as not exported

2014-03-11 Thread zwz
In my setup, there is (setq org-export-exclude-tags '(private exclude) and In my test.org: * test ** Not exported:exclude: #+BEGIN_SRC ditaa :file test.png :cmdline -E ++---+---+---+---+---+---+---+ +---+---+---+---+---+---+---+---+ x | 0 cRED | 0

[O] org-edit-special cannot tell ditaa from table

2014-03-11 Thread zwz
Here is an example: * test #+BEGIN_SRC ditaa ++ +-+ || | | || | | ++ +-+ #+END_SRC When I hit C-c ', the minibuffer says Recognizing tables...done, and the org src scratch buffer does not turn picture-mode on.

Re: [O] Babel should not work in the subtree marked as not exported

2014-03-11 Thread Ken Mankoff
On 2014-03-11 at 08:47, zwz wrote: In my setup, there is (setq org-export-exclude-tags '(private exclude) and In my test.org: * test ** Not exported:exclude: #+BEGIN_SRC ditaa :file test.png :cmdline -E ++---+---+---+---+---+---+---+

Re: [O] advice on ways to quicken refiling..perhaps a hotkey to refile to specific org file/header?

2014-03-11 Thread Yasushi SHOJI
Hi, At Tue, 4 Mar 2014 17:43:41 +0200, Xebar Saram wrote: i find the normal C-c w then manually choosing a file to allocate each 'capture' pretty slow. i am looking for any advice on workflows you guys have to make this quicker. one thing i was thinking of was maybe assigning a hotkey to

Re: [O] Babel should not work in the subtree marked as not exported

2014-03-11 Thread Andreas Leha
Hi Ken, Ken Mankoff mank...@gmail.com writes: On 2014-03-11 at 08:47, zwz wrote: In my setup, there is (setq org-export-exclude-tags '(private exclude) and In my test.org: * test ** Not exported:exclude: #+BEGIN_SRC ditaa :file test.png :cmdline -E

Re: [O] Babel should not work in the subtree marked as not exported

2014-03-11 Thread Ken Mankoff
Hi Andreas, On 2014-03-11 at 09:41, Andreas Leha wrote: Hi Ken, Ken Mankoff mank...@gmail.com writes: On 2014-03-11 at 08:47, zwz wrote: In my setup, there is (setq org-export-exclude-tags '(private exclude) and In my test.org: * test ** Not exported:exclude:

[O] Org Bash Utils

2014-03-11 Thread OSiUX
Try: org-clock | org-timeline https://github.com/osiris/org-bash-utils -- :: Osiris Alejandro Gomez (OSiUX) os...@osiux.com.ar DC44 95D2 0D5D D544 FC1A F00F B308 A671 9237 D36C http://www.osiux.com.ar http://www.altermundi.net signature.asc Description: Digital signature

Re: [O] Babel should not work in the subtree marked as not exported

2014-03-11 Thread Rainer M Krug
Ken Mankoff mank...@gmail.com writes: On 2014-03-11 at 08:47, zwz wrote: In my setup, there is (setq org-export-exclude-tags '(private exclude) and In my test.org: * test ** Not exported:exclude: #+BEGIN_SRC ditaa :file test.png :cmdline -E

Re: [O] words starting with call_ confuse C-c C-c and export

2014-03-11 Thread Nicolas Goaziou
Hello, Eric Schulte schulte.e...@gmail.com writes: Is / allowed in macro names? No. Macro names use the following regexp: [a-zA-Z][-a-zA-Z0-9_]* I think the biggest benefit here is unification between macro and function names. Is there a macro name regexp which could be used directly

Re: [O] [bug] Incompatible agenda commands

2014-03-11 Thread Sebastien Vauban
Hello Bastien and Matt, Matt Lundin wrote: Bastien b...@gnu.org writes: Sebastien Vauban writes: Sebastien Vauban wrote: Bastien wrote: Sebastien Vauban writes: While a custom agenda command such as the following used to work some time ago, it does not anymore. (add-to-list

Re: [O] org-edit-special cannot tell ditaa from table

2014-03-11 Thread Thomas Holst
Hi, ยท zwz zhangwe...@gmail.com wrote: Here is an example: * test #+BEGIN_SRC ditaa ++ +-+ || | | || | | ++ +-+ #+END_SRC When I hit C-c ', the minibuffer says Recognizing tables...done, and the org src scratch buffer does not turn

Re: [O] [bug] Wrong scrolling with org-agenda-toto in agenda views

2014-03-11 Thread Francesco Pizzolante
Hi Bastien, Sorry for my late reply. The view should not scroll at all but only modify the selected task. I remember fixing this bug a while ago and cannot reproduce it with Org from master. What is the version of Org you use? Indeed, you're right. I didn't notice that my minimal test

Re: [O] advice on ways to quicken refiling..perhaps a hotkey to refile to specific org file/header?

2014-03-11 Thread Oleh
On Tue, Mar 4, 2014 at 6:19 PM, Xebar Saram zelt...@gmail.com wrote: Thx Oleh you said you dont refile much latley, is there a better solution ;-) There is, actually. It's quite simple: capture all the tasks into the proper place right away, instead of dumping them into one place and sorting

Re: [O] Org Bash Utils

2014-03-11 Thread Samuel Loury
Hi, OSiUX xu...@osiux.com.ar writes: Try: org-clock | org-timeline https://github.com/osiris/org-bash-utils Awesome :-)! -- Konubinix GPG Key: 7439106A Fingerprint: 5993 BE7A DA65 E2D9 06CE 5C36 75D2 3CED 7439 106A signature.asc Description: PGP signature

[O] [PATCH] Fix: `org-agenda-skip-scheduled-if-deadline-is-shown': show TODOs without deadline

2014-03-11 Thread Markus
I noticed that if `org-agenda-skip-scheduled-if-deadline-is-shown' is set to 'repeated-after-deadline, tasks without a DEADLINE are not shown at all. You can reproduce it like this: 1. Setting the variable (setq org-agenda-skip-scheduled-if-deadline-is-shown 'repeated-after-deadline) 2. Having

Re: [O] Bug in export of call lines

2014-03-11 Thread Eric Schulte
Hi Tom, This actually is also an issue with shell code blocks. The fix is to customize the org-babel-inline-result-wrap variable (e.g., as follows) instead of setting the result type to RAW. (setq org-babel-inline-result-wrap %s) Perhaps a note about this variable should be added to the

Re: [O] exporter for latex g-brief - #+INCLUDE: escapes curlies \{

2014-03-11 Thread LanX
Thanks for the help so far! :) Unfortunately I'm stuck at this system with the old emacs/org-mode version but I'm going to migrate in April anyway. One more question, I'm trying to put latex code for Adress of recipient and so on in external files to be included unfortunately does #+INCLUDE:

Re: [O] exporter for latex g-brief - #+INCLUDE: escapes curlies \{

2014-03-11 Thread Rasmus
LanX lanx.p...@googlemail.com writes: Thanks for the help so far! :) Unfortunately I'm stuck at this system with the old emacs/org-mode version but I'm going to migrate in April anyway. One more question, I'm trying to put latex code for Adress of recipient and so on in external files to be

Re: [O] words starting with call_ confuse C-c C-c and export

2014-03-11 Thread Eric Schulte
Does this sound about right? Note there is no limitation on the contents of NAME keywords. Unless the same limitation propagates to those (but should it?), Babel calls will be ignored if forbidden characters are used. I think it is more important that code block names resemble data names

Re: [O] advice on ways to quicken refiling..perhaps a hotkey to refile to specific org file/header?

2014-03-11 Thread Xebar Saram
I can post the code on github if anyone's interested in the details. yes please :) thx! Z On Tue, Mar 11, 2014 at 5:09 PM, Oleh ohwoeo...@gmail.com wrote: On Tue, Mar 4, 2014 at 6:19 PM, Xebar Saram zelt...@gmail.com wrote: Thx Oleh you said you dont refile much latley, is there a

Re: [O] advice on ways to quicken refiling..perhaps a hotkey to refile to specific org file/header?

2014-03-11 Thread Oleh
I can post the code on github if anyone's interested in the details. yes please :) Posted here: https://github.com/abo-abo/org-fu Oleh

[O] tabs inserted in code blocks

2014-03-11 Thread Stephen J. Barr
Hello, I have the following code block in an org-mode file: #+CAPTION: Matlab Dynamic Programming Solution #+LABEL: code:matlab-outer-loop-reference #+BEGIN_SRC octave Normal_BuildT = realmax * ones(T, i_max,

Re: [O] words starting with call_ confuse C-c C-c and export

2014-03-11 Thread Nicolas Goaziou
Eric Schulte schulte.e...@gmail.com writes: Note there is no limitation on the contents of NAME keywords. Unless the same limitation propagates to those (but should it?), Babel calls will be ignored if forbidden characters are used. I think it is more important that code block names

Re: [O] Bug in export of call lines

2014-03-11 Thread Thomas S. Dye
Hi Eric, Eric Schulte schulte.e...@gmail.com writes: This actually is also an issue with shell code blocks. The fix is to customize the org-babel-inline-result-wrap variable (e.g., as follows) instead of setting the result type to RAW. (setq org-babel-inline-result-wrap %s) Perhaps a

Re: [O] Feature request: edit time stamp from agenda

2014-03-11 Thread Matt Lundin
torys.ander...@gmail.com (Tory S. Anderson) writes: Hello friends, I just discovered org-agenda-diary-entry, which is a terrific command to streamline my planning process as I move away from using the raw diary file. But it lacks a feature that is key to my usage: it conveniently creates a

[O] [PATCH] Update documentation for :exports (applicable to blocks only, not inline)

2014-03-11 Thread John Hendy
Per Eric's comment to a previous thread, I took a stab at updating two locations in the documentation that discuss using the :exports options so that users (like myself!) don't try to use them on inline code blocks. - http://lists.gnu.org/archive/html/emacs-orgmode/2014-03/msg00285.html Patch is

[O] Org-Mobile -- clearing the tasks for testing purposes

2014-03-11 Thread David Masterson
If I setup a set of test cases for org-mobile, how do I then clear out MobileOrg after the tests and prepare to use it in production? Is there ways that I can flip back and forth between Org-Mobile environments without getting messed up by leftovers in either Emacs or MobileOrg? -- David

Re: [O] Insert TODO Item at Bottom

2014-03-11 Thread Esben Stien
Bastien b...@altern.org writes: From git master repo, you can now use C-u C-u M-RET or C-u C-u S-M-RET to insert the subtree at the end of the parent subtree. Oh, I didn't catch this. Thanks;). I'll try immediately. -- Esben Stien is b0ef@e s a http://www. s

Re: [O] Insert TODO Item at Bottom

2014-03-11 Thread Esben Stien
Bastien b...@altern.org writes: From git master repo, you can now use C-u C-u M-RET or C-u C-u S-M-RET to insert the subtree at the end of the parent subtree. Hmm, to insert the subtree at the end of the parent subtree is not what I needed. I need a way to insert the new TODO at the bottom of

[O] [OT] document scanner with ADF

2014-03-11 Thread Samuel Wales
We had a great discussion about scanners and ADFs here a while back. The Fujitsu ScanSnap 1500 seemed to be a favorite. We also talked about what resolutions to scan at. What's the current status of document scanners for Linux? How good are the ADFs physically? Samuel -- The Kafka Pandemic:

Re: [O] [BABEL] BUG Re: Omitting try/catch blocks from tangled R code?

2014-03-11 Thread John Hendy
On Fri, Feb 7, 2014 at 1:22 PM, Rainer M Krug rai...@krugs.de wrote: On 02/07/14, 17:47 , Eric Schulte wrote: Rainer M Krug rai...@krugs.de writes: On 02/07/14, 07:18 , John Hendy wrote: Greetings, I don't usually tangle, but am creating a code file to go along with a

[O] [PATCH] document org-babel-inline-result-wrap

2014-03-11 Thread Thomas S. Dye
Aloha all, A brief documentation patch. All the best, Tom From 0b3898a0b0fa9150c6e8de88de267a2db9345bdb Mon Sep 17 00:00:00 2001 From: tsdye t...@tsdye.com Date: Tue, 11 Mar 2014 15:09:43 -1000 Subject: [PATCH] Documented org-babel-inline-result-wrap --- doc/org.texi | 11 +++ 1 file

[O] [PATCH] Support for links to Ebib's entries

2014-03-11 Thread Daimrod
Hi, I've attached a small patch to support links (opening and storing) to Ebib's[1] entries. Can I integrate it? 1: http://joostkremers.github.io/ebib/ From acd007302d56d40189659853ef146407bb64ba20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Jadi?= gregoire.j...@gmail.com Date:

[O] Single Search Hit and Quick Jump

2014-03-11 Thread Esben Stien
I have a long tree, like this: * foo ** bar *** baz hukarz qux quux *** corge grault text: corge garply text: corge *** azerty plugh text: corge ethud corge Now, If I f.ex do C-c a s corge, I get multiple hits, but I really only search for level 3 items

Re: [O] [PATCH] Change to org-src-preserve-indentation documentation

2014-03-11 Thread John Hendy
On Sun, Feb 2, 2014 at 3:35 PM, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Thank you for the patch. It is certainly better than what we have actually. Some comments follow. [snip] Thanks for the comments, and sorry for the delay in re-submitting! Hopefully I followed your

[O] Export problem with #+BEGIN_EXAMPLE block

2014-03-11 Thread Christian Wittern
Dear Orgmode users, The following minimal example shows a problem I have with export (tested with 8.25 from git and the one bundled in Emacs 24.3.1): #+OPTIONS: toc:nil ^:nil * Page numbers The page number is given in the following form: #+BEGIN_EXAMPLE pb:ZB6i0076_T_0537a #+END_EXAMPLE

[O] mark parent of current heading

2014-03-11 Thread Matt Price
is it possible to mark, not the current subtree, but one level up from the current subtree? I would like to add that level to the org bindings for expand-region, https://github.com/magnars/expand-region.el/blob/master/the-org-mode-expansions.el Thanks folks! Matt

Re: [O] tabs inserted in code blocks

2014-03-11 Thread Nick Dokos
Stephen J. Barr stev...@uw.edu writes: Hello, I have the following code block in an org-mode file: #+CAPTION: Matlab Dynamic Programming Solution #+LABEL: code:matlab-outer-loop-reference #+BEGIN_SRC octave

Re: [O] Bug in export of call lines

2014-03-11 Thread Eric Schulte
t...@tsdye.com (Thomas S. Dye) writes: Hi Eric, Eric Schulte schulte.e...@gmail.com writes: This actually is also an issue with shell code blocks. The fix is to customize the org-babel-inline-result-wrap variable (e.g., as follows) instead of setting the result type to RAW. (setq

Re: [O] [PATCH] document org-babel-inline-result-wrap

2014-03-11 Thread Eric Schulte
Committed, Thanks Tom. t...@tsdye.com (Thomas S. Dye) writes: Aloha all, A brief documentation patch. All the best, Tom From 0b3898a0b0fa9150c6e8de88de267a2db9345bdb Mon Sep 17 00:00:00 2001 From: tsdye t...@tsdye.com Date: Tue, 11 Mar 2014 15:09:43 -1000 Subject: [PATCH] Documented