Re: [O] Exporting Org markup unrendered to html

2016-04-18 Thread Adam Porter
Hi Michael, That is very cool! Thanks for sharing. I can imagine integrating that with org-habits somehow. You might consider putting the lisp files on GitHub somewhere.

Re: [O] Bug: group tags defined in org-tag-persistent-alist do not match their subtags [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/jorge/.emacs.d/elpa/org-20160404/)]

2016-04-18 Thread Jorge
f course. Sorry for being obtuse. And I took the opportunity to test >> that the bug still occurs in org-20160418. > > The bug was fixed in master, i.e., development branch. It means the fix > will not appear on ELPA before Org 9.0 is released. > > Regards, -- - I am B

Re: [O] Bug: Repeated candidate tags in org-set-tags-command interface [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/jorge/.emacs.d/elpa/org-20160404/)]

2016-04-18 Thread Nicolas Goaziou
Hello, Jorge writes: > On 12 April 2016 at 17:35, Nicolas Goaziou wrote: >> Could you send it by mail? You can remove the copy of ~/.emacs.d/elpa. > > As you requested in the other e-mail, here are the files inline: > > File repeated-tags-bug-trigger.org: > -- > * Dummy Head

Re: [O] Bug: group tags defined in org-tag-persistent-alist do not match their subtags [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/jorge/.emacs.d/elpa/org-20160404/)]

2016-04-18 Thread Nicolas Goaziou
Jorge writes: >> For the record, it is better to simply post minimal init.el and >> "group-tags-bug.org", both as plain text, in the message. > Of course. Sorry for being obtuse. And I took the opportunity to test > that the bug still occurs in org-20160418. The

Re: [O] Bug: Repeated candidate tags in org-set-tags-command interface [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/jorge/.emacs.d/elpa/org-20160404/)]

2016-04-18 Thread Jorge
On 12 April 2016 at 17:35, Nicolas Goaziou wrote: > Could you send it by mail? You can remove the copy of ~/.emacs.d/elpa. As you requested in the other e-mail, here are the files inline: File repeated-tags-bug-trigger.org: -- * Dummy Headline :dummy: --

Re: [O] Bug: group tags defined in org-tag-persistent-alist do not match their subtags [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/jorge/.emacs.d/elpa/org-20160404/)]

2016-04-18 Thread Jorge
> For the record, it is better to simply post minimal init.el and > "group-tags-bug.org", both as plain text, in the message. Of course. Sorry for being obtuse. And I took the opportunity to test that the bug still occurs in org-20160418. File gr

Re: [O] [PATCH] Make lexical eval default for elisp src blocks

2016-04-18 Thread John Kitchin
thanks. I think I have addressed these in a new patch I just submitted. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchingroup.cheme.cmu.edu

[O] [PATCH] Make lexical eval default for elisp src blocks

2016-04-18 Thread John Kitchin
Set default in `org-babel-default-header-args:emacs-lisp'. Add an optional argument to the eval function. --- etc/ORG-NEWS | 11 +++ lisp/ob-emacs-lisp.el | 33 - 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/etc/ORG-NEWS b/etc/ORG

Re: [O] [PATCH] Make lexical eval default for elisp src blocks

2016-04-18 Thread Nicolas Goaziou
John Kitchin writes: > I just put it in because it is an option for the eval function, and it was > not difficult to implement. It might be useful for debugging. Fair enough. > Are you suggesting use defconst instead of defvar? Does it really need all > the things in org-babel-header-args:R? Or

Re: [O] [PATCH] Make lexical eval default for elisp src blocks

2016-04-18 Thread John Kitchin
Thanks for the feedback. I have a few questions below. On Mon, Apr 18, 2016 at 12:38 PM, Nicolas Goaziou wrote: > Hello, > > John Kitchin writes: > > > Set default in `org-babel-default-header-args:emacs-lisp'. Add an > > optional argument to the eval function. > > Thanks for the patch. Some c

Re: [O] how to suppress extra newline between paragraphs in export?

2016-04-18 Thread Nicolas Goaziou
Hello, Stig Brautaset writes: > I've got a question I hope you might be able to answer. I'm trying to > add multi-paragraph item support to plain lists to my ox-jira.el > package. c.f. https://github.com/stig/ox-jira.el/issues/17 > > The issue I have is that I want to replace the blank line bet

Re: [O] [PATCH] Make lexical eval default for elisp src blocks

2016-04-18 Thread Nicolas Goaziou
Hello, John Kitchin writes: > Set default in `org-babel-default-header-args:emacs-lisp'. Add an > optional argument to the eval function. Thanks for the patch. Some comments follow. > +*** Default lexical evaluation of emacs-lisp src blocks > +Emacs-lisp src blocks in babel are now evaluated u

[O] how to suppress extra newline between paragraphs in export?

2016-04-18 Thread Stig Brautaset
Hello! I've got a question I hope you might be able to answer. I'm trying to add multi-paragraph item support to plain lists to my ox-jira.el package. c.f. https://github.com/stig/ox-jira.el/issues/17 The issue I have is that I want to replace the blank line between paragraphs in list items (wh

Re: [O] Bug: group tags defined in org-tag-persistent-alist do not match their subtags [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/jorge/.emacs.d/elpa/org-20160404/)]

2016-04-18 Thread Nicolas Goaziou
Hello, Jorge Peixoto de Morais Neto writes: > Suppose I wanted "animal" to be a group tag matching itself and > "mammal".  I would like them to be mutually exclusive to avoid > redundancy.  So I would define them in org-tag-persistent-alist as > such: >      (:startgroup) >  ("animal" . ?a)

Re: [O] isbn-to-bibtex (from org-ref) fails

2016-04-18 Thread John Kitchin
I found a (save-buffer) in the bibtex entry clean functions and took that out. I think it solves this problem. Julien Cubizolles writes: > John Kitchin writes: > >> thanks for the report. I think I have fixed it in a recent push. > > It now gets the bibtex entry right however its behaviour is st

Re: [O] [PATCH] Make lexical eval default for elisp src blocks

2016-04-18 Thread John Kitchin
I don't think so. I haven't seen this be the case. A simple example like this works as expected I think. #+BEGIN_SRC emacs-lisp (setq x 4) #+END_SRC #+RESULTS: : 4 #+BEGIN_SRC emacs-lisp (+ x 9) #+END_SRC #+RESULTS: : 13 So far, I have only seen where this makes some new things possible. e.g

[O] gpg encryption warning

2016-04-18 Thread Colin Baxter
On gpg encrypting (symmetrical) a file I get the warning: mouse-minibuffer-check: Wrong type argument: window-valid-p, # after clicking ok in the encryption dialogue buffer. The actual encryption seems to work, with password and repeat password prompts. I am using emacs-25.1.50.1, git-pulled an

Re: [O] Exporting Org markup unrendered to html

2016-04-18 Thread Eric S Fraga
On Monday, 18 Apr 2016 at 07:10, Michael Welle wrote: > Hello, > > I want to export Org task descriptions to html. It's a text about Org, > so I want the tasks to appear in html as they appear in an Org buffer, > colouring is a bonus ;). > > I tried: > > #+BEGIN_SRC org > * TODO foo > #+END_SRC Yo