Re: [O] org-open-at-point calls visit-tags-table ?!? org-ctags module bug?

2019-01-19 Thread Berry, Charles
> On Jan 18, 2019, at 9:01 PM, David Masterson wrote: > > David Masterson writes: > >> I have various Org files with internal hyperlinks of the form >> [[#mylink][My Link]] that should point to a header with the appropriate >> CUSTOM_ID property that I've setup. For some reason that I can't

Re: [O] org-table-align function changed, where is the old behavior?

2019-01-19 Thread Nicolas Goaziou
Hello, Craig Luthy writes: > I don't know what an ECM is. Need some clarification. Complete minimal example, in French. It's in the FAQ. > However, regarding the first issue of TAB and RETURN opening the table. I > explained this wrong, and suspect the release was coded up as designed. No > er

Re: [O] Bug: regression with :export both :noweb strip-export [9.2 (9.2-elpa @ /home/adl/.emacs.d/elpa/org-20181230/)]

2019-01-19 Thread Nicolas Goaziou
Hello, Alexandre Duret-Lutz writes: > On Tue, Jan 15, 2019 at 11:50 PM Alexandre Duret-Lutz > wrote: >> Since I updated to org 9.2, the following idiom stopped working. >> >> -- >> #+NAME: context >> #+BEGIN_SRC C++ :exports none >> #include >> int u = 0; >> #+END_SRC >> >> #+

Re: [O] Bug: LaTeX export of table with caption broken

2019-01-19 Thread Jens Lechtenboerger
On 2019-01-19, at 16:06, Nicolas Goaziou wrote: > Jens Lechtenboerger writes: > >> when exporting a table with caption to LaTeX on the master branch, >> invalid code is generated. > > Fixed. Thank you. Wow, that was lightning fast. Many thanks! Jens

Re: [O] Bug: LaTeX export of table with caption broken

2019-01-19 Thread Nicolas Goaziou
Hello, Jens Lechtenboerger writes: > when exporting a table with caption to LaTeX on the master branch, > invalid code is generated. > > Example Org file: > > #+CAPTION: Some text > | Col1 | Col2 | > > |--+--| > | foo | bar | > > The resulting tex file contains this, without table envi

[O] Bug: LaTeX export of table with caption broken

2019-01-19 Thread Jens Lechtenboerger
Hi there, when exporting a table with caption to LaTeX on the master branch, invalid code is generated. Example Org file: #+CAPTION: Some text | Col1 | Col2 | |--+--| | foo | bar | The resulting tex file contains this, without table environment, which is necessary for the use of capti

Re: [O] Bug: Capture Template With Link Returns Error [9.2 (9.2-elpaplus @ /home/dwrz/.emacs.d/elpa/org-plus-contrib-20181230/)]

2019-01-19 Thread david wen riccardi-zhu
Thank you! I wasn't really sure what kind of function to pass to add-variable-watcher, but using debug-on-variable-change, I got the following output: Debugger entered--setting org-stored-links to nil: debug--implement-debug-watch(org-stored-links nil set nil) org-insert-link(0 "test") #f(co

Re: [O] How to pass shell command result to :post source-block?

2019-01-19 Thread stardiviner
Ihor Radchenko writes: > See the code below: > > #+NAME: ansi-escape-filter > #+begin_src emacs-lisp :var data="" > (with-temp-buffer > (insert data) > (ansi-color-apply-on-region (point-min) (point-max)) > (buffer-string)) > #+end_src > > #+RESULTS: ansi-escape-filter > > #+begin_src sh

Re: [O] How to pass shell command result to :post source-block?

2019-01-19 Thread Ihor Radchenko
See the code below: #+NAME: ansi-escape-filter #+begin_src emacs-lisp :var data="" (with-temp-buffer (insert data) (ansi-color-apply-on-region (point-min) (point-max)) (buffer-string)) #+end_src #+RESULTS: ansi-escape-filter #+begin_src sh :dir /sudo:: :results output :post ansi-escape-