[O] Documentation: Babel scheme support and geiser

2018-07-25 Thread Jarmo Hurri
Greetings. I started doing some Schemeing in org, and bumped into a couple of documentation issues I wanted to check / report. In short, I wonder whether 1. geiser should be listed as a scheme requirement in worg 2. ob-scheme.el should point to MELPA instead of ELPA for geiser. The long

Re: [O] [PATCH] Ensure org-get-tags includes all local tags

2018-07-25 Thread Matt Lundin
>> With commit fbe56f89f75a8979e0ba48001a822518df2c66fe, the function >> org-get-tags incorrectly removes uninherited tags from the list of tags >> it returns, *even if* they are local tags. >> >> Expected behavior: org-get-tags should always return local tags, >> regardless of whether they are

Re: [O] including the | character in a table

2018-07-25 Thread Kevin Foley
No problem, I actually just ran into the need to do this yesterday so your question was very timely. Kevin

Re: [O] including the | character in a table

2018-07-25 Thread Alan Schmitt
On 2018-07-25 07:43, Kevin Foley writes: > You can use \vert to insert pipes in exported tables. Thank you Michel and Kevin for these proposals. \vert works great (as long as it's outside ~~, but I can deal with it). Thanks! Alan -- OpenPGP Key ID : 040D0A3B4ED2E5C7 Monthly Athmospheric

[O] How to execute sudo command in Docker container with Org ob-shell through Emacs package docker-tramp?

2018-07-25 Thread stardiviner
I execute the following src block example, but it does not work as I expected. #+begin_src sh :dir /docker:ubuntu:/root|sudo:: sudo echo "hello, world" > kk cat kk #+end_src I think the TRAMP multiple hops need hostname in sudo::, but I don't know how to specify Docker hostname in this place.

Re: [O] including the | character in a table

2018-07-25 Thread Kevin Foley
You can use \vert to insert pipes in exported tables. Kevin On Wed, Jul 25, 2018, 6:21 AM Michel Schinz wrote: > Hello, > > On Wed, Jul 25, 2018, at 11:22, Alan Schmitt wrote: > > I'm writing a cheat sheet for a programming language, and I'm having > > trouble with operators that use |. For

Re: [O] including the | character in a table

2018-07-25 Thread Michel Schinz
Hello, On Wed, Jul 25, 2018, at 11:22, Alan Schmitt wrote: > I'm writing a cheat sheet for a programming language, and I'm having > trouble with operators that use |. For instance: > > | match expr with | pattern matching | > | | pattern -> expr | action | > > How can I escape the

[O] including the | character in a table

2018-07-25 Thread Alan Schmitt
Hello, I'm writing a cheat sheet for a programming language, and I'm having trouble with operators that use |. For instance: | match expr with | pattern matching | | | pattern -> expr | action | How can I escape the |? I tried putting a \ before but it does not work. Thanks, Alan