Re: [O] org-babel-do-load-languages

2018-05-03 Thread N. Raghavendra
At 2018-05-03T14:07:37+01:00, Aaron Ecay wrote: > Itʼs an unusual function indeed. Thatʼs because it is used as the :set > function for the defcustom org-babel-load-languages; see the info > documentation (info "(elisp) Variable Definitions"). Thank you for explaining. I still think it would

[O] (no subject)

2018-05-03 Thread Arne Babenhauserheide
Dear Org Hackers, When I use org-capture to capture a new task, the next headline sometimes ends up being prefixed by the last line of the new task. Example: Begin: * Foo ** old task * Bar After capture: * Foo ** old task ** ❢ new task :LOGBOOK: CLOCK: [2018-05-03 Do

Re: [O] [POLL] Should Org tempo be enabled by default? (expand templates thru e.g. "<s[TAB]")

2018-05-03 Thread William Denton
On 3 May 2018, Carsten Dominik wrote: after initial doubt about this issue, I am now siding with Nicolas on this one. I have started to use C-c C-, , and it works very well. In particular, as Bernt says, the wrapping makes a very big difference, I have always missed this. I feel the same.

Re: [O] (no subject)

2018-05-03 Thread Bastien
Dear Arne, there was a temporary glitch in earlier version of Org about this, please upgrade Org to 9.1.12 through the package system and let us know if you still have this issue. Thanks! -- Bastien

Re: [O] [PATCH] ob-clojure-literate don't enable minor mode by default.

2018-05-03 Thread Nicolas Goaziou
Hello, stardiviner writes: > Hi, Nicolas, can you merge this minor update? thanks. Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [O] org-babel-do-load-languages

2018-05-03 Thread Nicolas Goaziou
Hello, "N. Raghavendra" writes: > I also suggest a corresponding change in Org(Languages): > > >By default, only ‘emacs-lisp’ is enabled for evaluation. To enable > or disable other languages, customize the

[O] keyword :html-postamble-format seems to not be used

2018-05-03 Thread Brady Trainor
Looking at source of `org-html--build-pre/postamble`, I think `:html-postamble t` does check `org-html-postamble-format`, but I'd like it to check `:html-postamble-format` as well. I encountered this problem as I'm trying to remove the validate string in the postamble, which `:html-postamble

Re: [O] keyword :html-postamble-format seems to not be used

2018-05-03 Thread Nicolas Goaziou
Hello, Brady Trainor writes: > Looking at source of `org-html--build-pre/postamble`, I think > `:html-postamble t` does check `org-html-postamble-format`, but I'd > like it to check `:html-postamble-format` as well. Fixed. Thank you. Regards, -- Nicolas Goaziou

Re: [O] (no subject)

2018-05-03 Thread Arne Babenhauserheide
Dear Bastien, Thank you for your answer! I’ll check whether the update resolves this. (and I’m sorry for the empty subject, I copied the email from Emacs, since I do not have mail sending from emacs configured at work, and I forgot to copy the subject). Best wishes, Arne Bastien

Re: [O] [RFC] Could we get rid of Org specific "mark ring"

2018-05-03 Thread Samuel Wales
hi bastien, On 4/26/18, Bastien wrote: > yes, I read the thread. I understand your position and that of Allen, > and there is absolutely no rush about this change. > > But the fact that the Global Mark Ring does not fit several uses is > not a reason for not moving forward - I

Re: [O] keyword :html-postamble-format seems to not be used

2018-05-03 Thread Brady Trainor
Brady Trainor writes: > [...] However, since `:html-postamble` accepts a function, I found it straightforward to take a bit from the source code and write the following, #+begin_src emacs-lisp :html-postamble (lambda (info) (format "%s: %s\n"

[O] Orgalist notes

2018-05-03 Thread Eric Abrahamsen
I'm very pleased that orgalist has become its own package! However I'm seeing a few of the same bugs that made the previous orgstruct-mode frustrating, though I'm hoping they will be easier to fix now. There's one right there! Spurious indentation of everything after the first

Re: [O] (no subject)

2018-05-03 Thread steen
FYI I am on org 9.1.4 and am still seeing this issue. -- Steen On Thu, May 3, 2018 at 2:26 PM Arne Babenhauserheide wrote: > Dear Bastien, > > Thank you for your answer! I’ll check whether the update resolves this. > > > (and I’m sorry for the empty subject, I copied the

Re: [O] Orgalist notes

2018-05-03 Thread Eric Abrahamsen
Eric Abrahamsen writes: > I'm very pleased that orgalist has become its own package! However I'm > seeing a few of the same bugs that made the previous orgstruct-mode > frustrating, though I'm hoping they will be easier to fix now. > > There's one right

Re: [O] org-babel-do-load-languages

2018-05-03 Thread N. Raghavendra
At 2018-05-03T21:58:46+02:00, Nicolas Goaziou wrote: >>In this example, evaluation is disabled for ‘emacs-lisp’, and enabled >> for ‘R’. >> >> (org-babel-do-load-languages >> '((emacs-lisp . nil) >> (R . t))) > > Language names are not symbols. It should be Emacs Lisp and

Re: [O] org-babel-do-load-languages

2018-05-03 Thread N. Raghavendra
At 2018-05-03T15:16:17+01:00, Aaron Ecay wrote: > In principle, you are correct. However: > >> I wonder if something like >> >> >> (defun org-babel-do-load-languages (languages) > > If we change the arity of the function in this way,

Re: [O] [POLL] Should Org tempo be enabled by default? (expand templates thru e.g. "<s[TAB]")

2018-05-03 Thread Carsten Dominik
Dear all, after initial doubt about this issue, I am now siding with Nicolas on this one. I have started to use C-c C-, , and it works very well. In particular, as Bernt says, the wrapping makes a very big difference, I have always missed this. Carsten On Wed, May 2, 2018 at 10:26 PM Bernt

[O] org-babel-do-load-languages

2018-05-03 Thread N. Raghavendra
I am puzzled with this definition: (defun org-babel-do-load-languages (sym value) "Load the languages defined in `org-babel-load-languages'." (set-default sym value) (dolist (pair org-babel-load-languages) (let ((active (cdr

Re: [O] org-babel-do-load-languages

2018-05-03 Thread Aaron Ecay
Hi Raghu, 2018ko maiatzak 3an, "N. Raghavendra"-ek idatzi zuen: > > I am puzzled with this definition: Itʼs an unusual function indeed. Thatʼs because it is used as the :set function for the defcustom org-babel-load-languages; see the info documentation (info "(elisp) Variable Definitions").

Re: [O] org-babel-do-load-languages

2018-05-03 Thread N. Raghavendra
At 2018-05-03T16:49:01+05:30, N. Raghavendra wrote: > (set-default org-babel-load-languages languages) I meant `setq-default' there, not `set-default'. Raghu. -- N. Raghavendra , http://www.retrotexts.net/ Harish-Chandra Research Institute, http://www.hri.res.in/

Re: [O] (no subject)

2018-05-03 Thread Michael Welle
Hello, Bastien writes: > Dear Arne, > > there was a temporary glitch in earlier version of Org about this, > please upgrade Org to 9.1.12 through the package system and let us > know if you still have this issue. oh, i thought that is a feature of some kind. Let me upgrade... Hm,

[O] viewing attachment directory fails (silently)

2018-05-03 Thread Eric S Fraga
Hello all, I have org-file-apps set to '((auto-mode . emacs)) as I see no reason to ever leave Emacs... However, when I try to view an attachment directory (C-c C-a f), the *Messages* buffer says: Running view /home/ucecesf/s/notes/data/ff/c0d4d0-860f-4e10-8b10-9ff4ac9ad8aa...done and nothing

Re: [O] Orgalist notes

2018-05-03 Thread Eric S Fraga
On Thursday, 3 May 2018 at 16:21, Eric Abrahamsen wrote: > I'm very pleased that orgalist has become its own package! However I'm > seeing a few of the same bugs that made the previous orgstruct-mode > frustrating, though I'm hoping they will be easier to fix now. > > There's one