[O] [bug, inlinetask] can't toggle display

2015-05-27 Thread Rasmus
Hi, In the following example I can't toggle whether the contents of the inlinetask is displayed via TAB. In both Org 8.2 and 8.3. * Pre #+BEGIN_SRC emacs-lisp (require 'org-inlinetask) (org-indent-mode) #+END_SRC * Issue *** TODO baz [[foo:bar]] *** END Thanks, Rasmus

Re: [O] [RFC] Org linting library

2015-05-27 Thread Nicolas Goaziou
Hello, Andreas Leha andreas.l...@med.uni-goettingen.de writes: some more spurious warnings I get: 1. Captions with short version: , | 1105 low Possible missing colon in keyword #+caption[Data ` 2. header arguments from ob-latex: , |451 high Unknown header argument

Re: [O] ob-sed

2015-05-27 Thread Bjarte Johansen
I had loosely based it on my own ob-sparql and ob-awk, I saw that there was a remnant of ob-sparql left in there. Here is an updated version. ob-sed.el Description: Binary data

[O] ob-sed

2015-05-27 Thread Bjarte Johansen
Hi, I originally wrote this for Eric Schulte’s sed-mode, but he thought I should post it here instead. I have been using it for little over a week and it has been working perfectly for me. If there is anything that you think should be added or removed before it is accepted into org-mode please

Re: [O] [RFC] Org linting library

2015-05-27 Thread Andreas Leha
Hi Nicolas, some more spurious warnings I get: 1. Captions with short version: , | 1105 low Possible missing colon in keyword #+caption[Data ` 2. header arguments from ob-latex: , |451 high Unknown header argument packages |451 high Unknown header argument

[O] org-preview-latex-fragment ignores \includes in the LATEX_HEADER

2015-05-27 Thread Stefan Otte
Hey, I'm using orgmode with lots of LaTeX for equations. A typical document start with #+TITLE: Some Title #+LaTeX_HEADER: \include{commands} commands.tex contains commands like: \newcommand{\RRR}{{\mathbb{R}}} The pdf export works flawlessly, however `org-preview-latex-fragment` seems

Re: [O] org-preview-latex-fragment ignores \includes in the LATEX_HEADER

2015-05-27 Thread Robert Klein
Hi, On Wed, 27 May 2015 15:02:02 +0200 Stefan Otte stefan.o...@gmail.com wrote: Hey, I'm using orgmode with lots of LaTeX for equations. A typical document start with #+TITLE: Some Title #+LaTeX_HEADER: \include{commands} commands.tex contains commands like:

[O] Make ob-shell conform to the org-babel interface

2015-05-27 Thread Bjarte Johansen
Hi, I found that ob-shell’s org-babel-variable-assignments:bash function does not respect the interface for org-babel. It takes multiple arguments when it should only take 1. This is a problem when f.ex. org-babel-sha1-hash tries to expand the body of a bash source block and tries to call that

Re: [O] [bug, inlinetask] can't toggle display

2015-05-27 Thread Nicolas Goaziou
Hello, Rasmus ras...@gmx.us writes: In the following example I can't toggle whether the contents of the inlinetask is displayed via TAB. In both Org 8.2 and 8.3. * Pre #+BEGIN_SRC emacs-lisp (require 'org-inlinetask) (org-indent-mode) #+END_SRC * Issue *** TODO baz

Re: [O] ob-sed

2015-05-27 Thread Nicolas Goaziou
Hello, Bjarte Johansen bjarte.johan...@infomedia.uib.no writes: I had loosely based it on my own ob-sparql and ob-awk, I saw that there was a remnant of ob-sparql left in there. Here is an updated version. Thank you. Some comments follow. ;;; ob-sed.el --- org-babel functions for sed

Re: [O] LaTeX_HEADER blocks

2015-05-27 Thread Mark Edgington
I noticed there was also a newer thread (around a year old) on this topic. It seems that what Nicolas Goaziou proposed earlier (about using #+attr_latex to modify whether a latex block is a header block or not) has not yet been implemented. This would be an alternative, though I find it more

[O] LaTeX_HEADER blocks

2015-05-27 Thread Mark Edgington
Hi Everyone, It is possible in org-mode to do either #+LaTeX: \somecommand or #+BEGIN_LaTeX \somecommand #+END_LaTeX I typically use the latter (the block form) because I often have multiple lines of LaTeX I would like to include at certain locations of a document. Similar to

Re: [O] [bug, inlinetask] can't toggle display

2015-05-27 Thread Rasmus
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Rasmus ras...@gmx.us writes: In the following example I can't toggle whether the contents of the inlinetask is displayed via TAB. In both Org 8.2 and 8.3. * Pre #+BEGIN_SRC emacs-lisp (require 'org-inlinetask) (org-indent-mode)