Re: [O] non-standard link errors

2016-02-28 Thread Nicolas Goaziou
Hello, Skip Collins writes: > I added this line to the top of my org file: > #+OPTIONS: broken-links:t > > But that eliminates both the link and its description from the export. > Changing it from 't' to 'mark' puts a BROKEN LINK message in the > output. I suggest adding a new option 'pass' that

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Nicolas Goaziou
Hello, Oleh Krehel writes: > Already have been using it for years. I actually prefer outline.el to > org-babel for most things now. But not for GTD - for that I need Org. > >> Alas, the Devil is in the detail: >> >> (example >>... >>(properties ...)) > > Not really. You see, the `begin

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Eric S Fraga
Rasmus, thanks for the suggestions. However, your email has highlighted the fact that the font(s) I use do not have proper coverage of unicode characters! :-( I wonder which font you use? I typically use DejaVu and Terminus but also Lucida. None of these can display most of the characters you

Re: [O] [bug] inserting footnotes via org-footnote-action command

2016-02-28 Thread Martin Carlé
On 2016-02-28 Sun 02:23, Nicolas Goaziou wrote: > Hello, > > Martin Carlé writes: > >> Well, I wrapped the exporter mechanism into some advice functions that >> allow for many different exports from a single file in such a manner that >> multiple exports are not restricted to subtrees. > > Not s

[O] How to add a test?

2016-02-28 Thread George M Jones
What's the process for adding a test (specifically to babel)? The only part that looks non-obvious is how to generate the test ID, e.g. in ob-shell-test.org: * Associative array tests (simple map) :PROPERTIES: :ID: bec1a5b0-4619-4450-a8c0-2a746b44bf8d :END: >From there it loo

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Rasmus
Eric S Fraga writes: > Rasmus, > > thanks for the suggestions. However, your email has highlighted the > fact that the font(s) I use do not have proper coverage of unicode > characters! :-( I wonder which font you use? I typically use DejaVu > and Terminus but also Lucida. None of these can

Re: [O] How do I format numbers to an exported table to latex, produced by a code block?

2016-02-28 Thread Rasmus
Hi, Diogo Ramos writes: > I have the following org file: > > #+BEGIN_SRC python :exports both > import numpy as np > > return np.matrix([[.123456789, 2], [3, 4]]) > #+END_SRC > > #+RESULTS: > | 0.12345679 | 2 | > | 3 | 4 | > > I want to export it to latex to produce a pdf but I want

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Oleh Krehel
Nicolas Goaziou writes: > Some users complained, and told me that "Org is not a programming > language". Fair enough. Org has, indeed, to strike a balance between > structure, required for efficiency and maintainability, and sloppiness, > needed when you want to quickly jot down notes in a docume

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Eric S Fraga
On Sunday, 28 Feb 2016 at 12:32, Rasmus wrote: > Emacs should pick the right font. Most likely, you need to install > Symbola, Indeed! Thanks for the pointer. Installing symbola did the job in terms of being able to see those symbols. Unfortunately, I cannot get org to prettify scheduled and d

[O] Dired does not correctly process file names with ornamented and special Characters in Emacs for Windows

2016-02-28 Thread cschr
Hello Filenames with ornamented or special characters are often not shown correctly in "dired", and cannot be opened. The strange thing is: sometimes it works properly, but I cant figure out under what circumstances - it seems to be completely arbitrary. Would anybody know how to make it alw

Re: [O] How to obtain a list of items completed this week.

2016-02-28 Thread chopps
Perhaps this hasn't been done yet? Would this type of thing be relatively easy to add? Thanks, Chris. cho...@chopps.org writes: > I've been trying on and off to figure out how to obtain a list of all > the TODOs that I've marked completed (DONE) during the last week (or > whatever time period,

Re: [O] How to add a test?

2016-02-28 Thread Nicolas Goaziou
Hello, George M Jones writes: > What's the process for adding a test (specifically to babel)? > > The only part that looks non-obvious is how to generate the test ID, > e.g. in ob-shell-test.org: > > * Associative array tests (simple map) > :PROPERTIES: > :ID: bec1a5b0-4619-4450-

Re: [O] [bug] inserting footnotes via org-footnote-action command

2016-02-28 Thread Nicolas Goaziou
Hello, Martin Carlé writes: > Never mind, I shall explain and release all the hack, if there is more > time. OK. > Because, tags are a general and convenient way of collecting sections > and I'like to avoid special where ever possible. Well, `org-footnote-section' is special, but it's really

Re: [O] How to obtain a list of items completed this week.

2016-02-28 Thread Nicolas Goaziou
Hello, writes: > Perhaps this hasn't been done yet? Would this type of thing be > relatively easy to add? You may have a look at (info "(org) Matching tags and properties"), with CLOSED property (e.g., CLOSED>>="<-1w>" or some such). Regards, -- Nicolas Goaziou

Re: [O] Bug: HTML export fails to set source IDs correctly [8.3.4 (8.3.4-elpa @ /Users/aaron/.emacs.d/elpa/org-20160222/)]

2016-02-28 Thread Aaron Miller
Can you comment on the likelihood of a patch being accepted that gives HTML export a parallel option, with all the associated caveats? It seems like the use case is pretty clear, and I don't mind taking the time to write up the change. On 2/27/16 3:38, Nicolas Goaziou wrote: Hello, Aaron Mil

Re: [O] Bug: HTML export fails to set source IDs correctly [8.3.4 (8.3.4-elpa @ /Users/aaron/.emacs.d/elpa/org-20160222/)]

2016-02-28 Thread Nicolas Goaziou
Hello, Aaron Miller writes: > Can you comment on the likelihood of a patch being accepted that gives > HTML export a parallel option, with all the associated caveats? It > seems like the use case is pretty clear, and I don't mind taking the > time to write up the change. Patch welcome! There

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Thomas S . Dye
Aloha Oleh, Oleh Krehel writes: > >> Org can export to Texinfo. It can be helpful for those not understanding >> well enough the latter. > > Org can export to Texinfo. But not well enough to be able to write Org > manual in Org. I worked on a project to port the Org manual to Org about three yea

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Rasmus
Eric S Fraga writes: > On Sunday, 28 Feb 2016 at 12:32, Rasmus wrote: >> Emacs should pick the right font. Most likely, you need to install >> Symbola, > > Indeed! Thanks for the pointer. Installing symbola did the job in > terms of being able to see those symbols. > > Unfortunately, I cannot

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-28 Thread Eric S Fraga
On Sunday, 28 Feb 2016 at 17:46, Rasmus wrote: > Did you try prettify-symbol-mode? That's exactly what I am using and tried: #+begin_src emacs-lisp (defun esf/setup-org-prettify-symbols () (setq prettify-symbols-alist '(("\\to" . →) ("SCHEDULED:". 🕗)

Re: [O] How to obtain a list of items completed this week.

2016-02-28 Thread chopps
Nicolas Goaziou writes: > Hello, > > writes: > >> Perhaps this hasn't been done yet? Would this type of thing be >> relatively easy to add? > > You may have a look at (info "(org) Matching tags and properties"), with > CLOSED property (e.g., CLOSED>>="<-1w>" or some such). That worked! The exa

Re: [O] How do I format numbers to an exported table to latex, produced by a code block?

2016-02-28 Thread Diogo Ramos
>> I have the following org file: >> >> #+BEGIN_SRC python :exports both >> import numpy as np >> >> return np.matrix([[.123456789, 2], [3, 4]]) >> #+END_SRC >> >> #+RESULTS: >> | 0.12345679 | 2 | >> | 3 | 4 | >> >> I want to export it to latex to produce a pdf but I want to format the

[O] How to add left superscripts

2016-02-28 Thread 童俊翔
How to add left superscripts without using additional packages in org-mode?

Re: [O] non-standard link errors

2016-02-28 Thread Skip Collins
Nicolas Goaziou wrote: > Not that I'm against the idea, but wouldn't it be a poor way to properly > fix the issue, i.e., add new link types? I have come up with a better solution than globally passing "broken" links. I defined a new "raw" link type. So now if I want to put a non-standard link in

[O] bug#17651: 24.3.91; Emacs hangs in Org

2016-02-28 Thread Lars Ingebrigtsen
Eli Zaretskii writes: >> From: Sebastien Vauban >> Cc: 17...@debbugs.gnu.org >> Date: Sat, 31 May 2014 11:52:19 +0200 >> >> > Also, typing "finish" repeatedly should reveal in which function is >> > Emacs looping. >> >> --8<---cut here---start->8--- >> (gdb)