Re: [O] The + character creating strike-through markup within in-line literal / code blocks

2018-06-24 Thread John Magolske
Hi, Thanks for the reply. * Nicolas Goaziou [180624 16:11]: > John Magolske writes: > > to show in-line code as literal I tried: > > > > in the expression =(x +. y)= the =+.= is a function ... > > > > being under the impression that bracketing text with = would enclose > > everything within

[O] org-map-entries calls org-agenda-prepare-buffers unnecessarily?

2018-06-24 Thread Adam Porter
Hi, I've noticed that org-map-entries calls org-agenda-prepare-buffers whenever its SCOPE argument is nil. According to the docstring, a nil SCOPE means, "The current buffer, respecting the restriction if any," so it doesn't seem necessary to call org-agenda-prepare-buffers. I noticed this becau

Re: [O] info URL « open at point » patch

2018-06-24 Thread Eli Zaretskii
> From: Vincent Belaïche > CC: "emacs-de...@gnu.org" , "emacs-orgmode@gnu.org" > > Date: Sun, 24 Jun 2018 20:34:26 + > > I agree it is a bit strange, but the reason for it is simple : I would > like a single entry point for all the manuals installed on my PC, so > that my old and tired

Re: [O] Bug: org-toggle-tag always marks buffer modified [9.1.13 (9.1.13-elpaplus @ .emacs.d/elpa/org-plus-contrib-20180618/)]

2018-06-24 Thread Bernt Hansen
Nicolas Goaziou writes: > Bernt Hansen writes: > >> This problem still exists when the capture template includes TAGS >> >> In the below capture-templates definition the "t" (todo) template works >> fine but the "m" Meeting template does not allow SPC to enter a space >> between words when enter

Re: [O] point moves and zoom level reverts when refreshing agenda

2018-06-24 Thread Samuel Wales
On 6/24/18, Marco Wahl wrote: > Bonjour! merci a tout. -- The Kafka Pandemic: The disease DOES progress. MANY people have died from it. And ANYBODY can get it at any time. "You’ve really gotta quit this and get moving, because this is murder by neglect."

Re: [O] Babel Edit Code Whole Session Context

2018-06-24 Thread Kevin Foley
Hi Grant, > I hear you and think I understand what you say. I also know it can be > irritating when > somebody answers a slightly different question question you asked. If > you humor me, > I'm about to do that. No problem, I appreciate all discussion on the matter. > I don't know how to do what

Re: [O] info URL « open at point » patch

2018-06-24 Thread Eli Zaretskii
> From: Vincent Belaïche > CC: "emacs-de...@gnu.org" , "emacs-orgmode@gnu.org" > > Date: Sun, 24 Jun 2018 18:21:20 + > > What I want to do is to refer an HTML or PDF document from an Info document. > So > I want the info browser to launch the web browser for it to open a > « file: »

Re: [O] info URL « open at point » patch

2018-06-24 Thread Eli Zaretskii
> From: Vincent Belaïche > CC: "emacs-de...@gnu.org" , "emacs-orgmode@gnu.org" > > Date: Sun, 24 Jun 2018 16:48:30 + > > To my understanding @xref works only for info links (node names or anchors, > or qualified thereof where the > qualificator is the info document name) --- maybe I a

Re: [O] Babel Edit Code Whole Session Context

2018-06-24 Thread Grant Rettke
Hi Kevin, On Sun, Jun 24, 2018 at 9:50 AM, Kevin Foley wrote: > Is there anyway to edit a source code block with the context of all other > source code blocks in the same session? Specifically when working with > Python I'd like features like company to be able to use the rest of the code > in t

[O] Babel Edit Code Whole Session Context

2018-06-24 Thread Kevin Foley
Is there anyway to edit a source code block with the context of all other source code blocks in the same session? Specifically when working with Python I'd like features like company to be able to use the rest of the code in the session. For example consider the following org file: #+begin_src p

Re: [O] info URL « open at point » patch

2018-06-24 Thread Jean-Christophe Helary
> On Jun 24, 2018, at 15:57, Vincent Belaïche wrote: > > Bonjour tout l'monde ! > I am writing to both Emacs-devel and org-mode list because this concerns > browsing URL, and Org-mode already has quite some stuff on this. > Recently I came across this that in an Info file a « file: » protocol >

Re: [O] info URL « open at point » patch

2018-06-24 Thread Eli Zaretskii
> From: Vincent Belaïche > Date: Sun, 24 Jun 2018 06:57:53 + > > I am writing to both Emacs-devel and org-mode list because this concerns > browsing URL, and Org-mode already has quite some stuff on this. > Recently I came across this that in an Info file a « file: » protocol > URL is not ope

[O] Setting parent ID property while archiving a subtree

2018-06-24 Thread Andrei Beliankou
Dear list members, I wonder if there is a direct way to add the parent ID to an archived subtree like `ARCHIVE_PARENT_ID` shown in the example: ** DONE [#A] Split spark batch jobs emr repository CLOSED: [2018-02-06 Tue 15:40] SCHEDULED: <2018-02-01 Thu> :PROPERTIES: :ID: cf36b714-b

Re: [O] Babel: Why does noweb work differently depending on 'call depth'?

2018-06-24 Thread jhe...@t-online.de
Thank you for this hint. I still do not really get the reason, why the difference shows up only in the compare part of the cond and works as expected in the t body, so I will go deeper into evaluation order and var replacement code. Greetings >> Noweb expansion is done before references in t

Re: [O] coderef does not provide file path for org-insert-link when not in original buffre

2018-06-24 Thread stardiviner
I just toke a look at the source code of `org-store-link'. I think it's possible to implement it. I will take a try. Might need to add support in `org-open-at-point` [C-c C-o]. Nicolas Goaziou writes: > Hello, > > stardiviner writes: > >> `org-insert-link` should be smart on decide whether cur

Re: [O] The + character creating strike-through markup within in-line literal / code blocks

2018-06-24 Thread Nicolas Goaziou
Hello, John Magolske writes: > I'd like to enter some in-line literal code in an org document > covering OCaml. For example, in this: > > in the expression (x +. y) the +. is a function ... > > to show in-line code as literal I tried: > > in the expression =(x +. y)= the =+.= is a functi

Re: [O] point moves and zoom level reverts when refreshing agenda

2018-06-24 Thread Marco Wahl
Bonjour! Nicolas Goaziou writes: > Thank you. It looks good. Feel free to apply it. Thanks, I did. > I have two suggestions however: > > 1. There is some code duplication, e.g., (dolist ...), could this be >factored out before applying the patch? Yes, done, thanks for the hint. The patch

[O] The + character creating strike-through markup within in-line literal / code blocks

2018-06-24 Thread John Magolske
I'd like to enter some in-line literal code in an org document covering OCaml. For example, in this: in the expression (x +. y) the +. is a function ... to show in-line code as literal I tried: in the expression =(x +. y)= the =+.= is a function ... being under the impression that bra