Re: [O] export from a symlink to the source directory?

2017-10-25 Thread Tim Cross
Just off the top of my head, things I would try would be There is no easy switch to just make this happen that I'm aware of. Therefore, I think you really only have two options. 1. You could try setting an :export property at the file header level which specifies the name (and location) of the

Re: [O] Ediff org files starts folded

2017-10-25 Thread Alex Branham
Thanks, I think this does exactly what I was looking for! Alex On Wed 25 Oct 2017 at 18:30, Oleh Krehel wrote: > Here's what I use: > > (defun ora-ediff-prepare-buffer () > (when (memq major-mode '(org-mode emacs-lisp-mode)) > (outline-show-all))) > > (add-hook

Re: [O] Ediff org files starts folded

2017-10-25 Thread Oleh Krehel
Here's what I use: (defun ora-ediff-prepare-buffer () (when (memq major-mode '(org-mode emacs-lisp-mode)) (outline-show-all))) (add-hook 'ediff-prepare-buffer-hook 'ora-ediff-prepare-buffer) regards, Oleh

Re: [O] Ediff org files starts folded

2017-10-25 Thread Jorge Morais Neto
On 25 October 2017 at 12:04, Alex Branham wrote: > Whenever I ediff an org file, the three windows start with the content folded > and out of site. I have to navigate to windows A, B, and C and hit S- > until everything is visible. Does anyone know a way to start org

[O] `fill-paragraph' on headings

2017-10-25 Thread Tor
this is a feature request for having the ability to use `fill-paragraph' on headings. An example from Emacs news: '*** New variable 'xterm-set-window-title' controls whether Emacs sets the XTerm window title. The default is to set the window title.' -> '*** New variable

[O] bug#28999: 25.3.50; org export : exclude-tags not working with org-export-filter-options-functions

2017-10-25 Thread Kyle Meyer
Michel Damiens writes: > Adding : > > (defun my-org-export-change-options (plist backend) > (cond > ((equal backend 'html) >(plist-put plist :exclude-tags "NOHTML") >(plist-put plist :select-tags "HTML")) > ((equal backend 'latex) >

[O] export from a symlink to the source directory?

2017-10-25 Thread Sharon Kimble
If I have a file symlinked to another directory, is it possible for it to be exported to the original source directory as a .tex file please? Example - Original file ~/research/rhubarb/rhubarb17.org Symlinked to ~/.emacs.d/org/rhubarb17.org But when I export the file from the symlink to a

Re: [O] org-babel source block unevaluated into variable?

2017-10-25 Thread Martin Alsinet
Johan: To use expanded noweb references you can use text source blocks #+NAME: lscode #+BEGIN_SRC *text* ls -alh #+END_SRC #+NAME: example #+BEGIN_SRC sh :noweb yes echo <> #+END_SRC #+RESULTS: example : ls -alh #+BEGIN_SRC emacs-lisp :var code=example (message code) #+END_SRC #+RESULTS: :

Re: [O] org-babel source block unevaluated into variable?

2017-10-25 Thread Martin Alsinet
Johan: You can try the following: #+NAME: lscode #+BEGIN_ASCII ls -alh #+END_ASCII #+BEGIN_SRC emacs-lisp :var code=lscode (message code) #+END_SRC #+RESULTS: : ls -alh I haven't tried the noweb references, but it does return the code block in the variable. Martín On Wed, Oct 25, 2017 at

Re: [O] Ediff org files starts folded

2017-10-25 Thread Neil Jerram
org-startup-folded nil On 25/10/17 15:55, Tory S. Anderson wrote: I've wondered the same thing. Normally I just manually and open all bullets before ediffing, but this assumes, of course, that the file is already open. Alex Branham writes: Hello - Whenever I

Re: [O] Ediff org files starts folded

2017-10-25 Thread Tory S. Anderson
I've wondered the same thing. Normally I just manually and open all bullets before ediffing, but this assumes, of course, that the file is already open. Alex Branham writes: Hello - Whenever I ediff an org file, the three windows start with the content folded and

[O] org-babel source block unevaluated into variable?

2017-10-25 Thread Johan W . Klüwer
Is there a way to assign the uninterpreted content of an executable source block to a variable? Preferably, using a :var header argument? That is, return the text in the block, not the result of evaluating it, and preferably with noweb references expanded. "example" blocks return text the way I

[O] Ediff org files starts folded

2017-10-25 Thread Alex Branham
Hello - Whenever I ediff an org file, the three windows start with the content folded and out of site. I have to navigate to windows A, B, and C and hit S- until everything is visible. Does anyone know a way to start org mode files unfolded when ediffing them? Thanks! Alex

Re: [O] htmlize

2017-10-25 Thread Jean-Christophe Helary
Thank you Jonas ! Jean-Christophe > On Oct 25, 2017, at 21:51, Jonas Bernoulli wrote: > > This was discussed here: https://github.com/hniksic/emacs-htmlize/issues/7.

Re: [O] *Good* client for Android?

2017-10-25 Thread Adonay Felipe Nogueira
Best one that worked for me: - Computer running: - Either as root or as normal user: - sshd with *only* key-based authentication. - As normal user: - GNU screen; - emacs --daemon && emacsclient -nw; - Detach from current session. Now in cellphone: - Use SSH

Re: [O] How to get the eacute above the e in saute or Saute?

2017-10-25 Thread Adonay Felipe Nogueira
See if [[help:org-latex-default-packages-alist]] has at something similar to "inputenc" and "fontenc" inside. In any case, please report back the results. ;) Sharon Kimble writes: > I'm copying out loads of old recipes into org-mode exported to latex and > build a

Re: [O] htmlize

2017-10-25 Thread Jonas Bernoulli
This was discussed here: https://github.com/hniksic/emacs-htmlize/issues/7.