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-21 Thread Bernt Hansen
Hi Nicolas, 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 entering the headling for the meeting task. (setq

Re: [O] [PATCH] ob-scheme.el: Fix scheme blocks ignoring :results in formatting

2018-06-21 Thread Nicolas Goaziou
Hello, Henry Blevins writes: > Attached is the patch adding tests for verbatim and list result types. Applied both patches. Thank you. > I have signed FSF papers. Great. I added you to the list of contributors. > I know these are small enough changes not to require that and can add >

Re: [O] very long table calc expressions ?

2018-06-21 Thread Bernt Hansen
Uwe Brauer writes: > #+TBLNAME: stat-final2 > || Frequency | > |+---| > | SS | 1 | > | AP | 5 | > | NT | 3 | > | SB | 1 | > | MH | 2 | > | NP | 3 | > #+TBLFM: @>$2='(length (org-lookup-all "NP" '(remote(data,@2$2..@>I$2)) >

Re: [O] [PATCH] ob-scheme.el: Fix scheme blocks ignoring :results in formatting

2018-06-21 Thread Henry Blevins
Nicolas, Attached is the patch adding tests for verbatim and list result types. > If you haven't signed FSF papers yet, you need to add "TINYCHANGE" at > the end of your commit message. I have signed FSF papers. I know these are small enough changes not to require that and can add "TINYCHANGE"

Re: [O] [PATCH] ob-scheme.el: Fix scheme blocks ignoring :results in formatting

2018-06-21 Thread Henry Blevins
Neil Jerram writes: > But if I want the table output > > | 1 | 2 | 3 | > > will there still be a way to get it? (I'm sure I have org files that > need this!) This patch will not affect any of your existing org files unless you have specified you want the block to output as 'verbatim', 'scalar'

Re: [O] Bug: Regression - SPC in agenda does not show drawer details [version 9.1.13 (release_9.1.13-819-geb8743 @ c:/D-Drive/bin/org-mode/lisp/)]

2018-06-21 Thread Bernt Hansen
Nicolas Goaziou writes: > Hello, Hi! > Fixed. Thank you. Confirmed! Thanks!! Org-Mode (and Nicolas) is great! :) Best regards, Bernt

Re: [O] Bug: Regression - SPC in agenda does not show drawer details [version 9.1.13 (release_9.1.13-819-geb8743 @ c:/D-Drive/bin/org-mode/lisp/)]

2018-06-21 Thread Nicolas Goaziou
Hello, Bernt Hansen writes: > The current master branch has a regression from maint when displaying > task details from the agenda using the SPC key. > > I keep my task change details in drawers so when I change a task from > TODO to WAITING I record the details of why it is waiting in the >

Re: [O] [PATCH] ob-scheme.el: Fix scheme blocks ignoring :results in formatting

2018-06-21 Thread Neil Jerram
Henry Blevins writes: > Currently, scheme babel blocks ignore :results header arguments like > 'verbatim' and attempt to format all output as tables. This patch corrects > that and performs the user supplied formatting. > > This is my first time contributing a patch, so I apologize if I have

Re: [O] org-ctrl-k-protect-subtree stopped working

2018-06-21 Thread Nicolas Goaziou
Hello, Marcin Borkowski writes: > I have > > (setq org-ctrl-k-protect-subtree t) > > in my init.el. After an upgrade from an ancient version, Org stopped > asking me whether to kill a subtree. I cannot reproduce this. Would you mind providing an ECM? Thank you. Regards, -- Nicolas

Re: [O] [PATCH] ob-scheme.el: Fix scheme blocks ignoring :results in formatting

2018-06-21 Thread Nicolas Goaziou
Hello, Henry Blevins writes: > Currently, scheme babel blocks ignore :results header arguments like > 'verbatim' and attempt to format all output as tables. This patch corrects > that and performs the user supplied formatting. > > This is my first time contributing a patch, so I apologize if I

Re: [O] bug in org-capture for table lines

2018-06-21 Thread Nicolas Goaziou
Hello, "Holst Thomas (PS-EC/ESE4)" writes: > there is a bug in org-capture. When capturing table lines table formula is > not updated. > > Here is an ECM: > > #+begin_src org > * Table for testing > > | | Item | Price | > |---+--+---| > | | | 3.50 | > |---+--+---| > |

Re: [O] [PATCH] org-attach: Allow attaching file from visited buffer

2018-06-21 Thread Nicolas Goaziou
Hello, Eric Danan writes: > When the file to attach is already open in emacs, it is generally > faster to select it from the buffer list than navigating to it through > the file system. This patch adds a `b' command to the attach > dispatcher that reads a buffer and writes it in the attachment

[O] [PATCH] org-attach: Allow attaching file from visited buffer

2018-06-21 Thread Eric Danan
Hello, When the file to attach is already open in emacs, it is generally faster to select it from the buffer list than navigating to it through the file system. This patch adds a `b' command to the attach dispatcher that reads a buffer and writes it in the attachment directory. Regards, Eric

Re: [O] very long table calc expressions ?

2018-06-21 Thread Uwe Brauer
> Le 20/06/2018 11:09, Uwe Brauer a écrit : > I included such an example (and added your name to the contributors list). Thanks! I don't feel that I am a contributor, but thanks very much. > Not easily. orgaggregate groups rows using equality, whereas you need to > group rows

Re: [O] Patch adding from-logo commentary ox-koma-letter.el

2018-06-21 Thread Nicolas Goaziou
Hello, Grant Rettke writes: > When I wrote this, I felt like because ox-koma-letter makes it so easy > for non LaTeX Org users, that a reminder would help because this > variable is I think the only one that requires any LaTeX knowledge. > > That was the context for my statement. I'm making a

[O] bug in org-capture for table lines

2018-06-21 Thread Holst Thomas (PS-EC/ESE4)
Hi, there is a bug in org-capture. When capturing table lines table formula is not updated. Here is an ECM: #+begin_src org * Table for testing | | Item | Price | |---+--+---| | | | 3.50 | |---+--+---| | # | sum: | 3.50 | #+TBLFM: @3$3=vsum(@-II..@-I);%.2f * Lisp

Re: [O] how to save script created when executing a babel block?

2018-06-21 Thread Thierry Banel
Le 21/06/2018 00:47, dmg a écrit : hi everybody, is there a way to save the script created by babel that is being executed? thank you, You may type C-c C-v v (M-x org-babel-expand-src-block) inside a babel block. Regards