[O] Bug? org agenda does not display clock entries after jumping with "j" to another day

2018-04-11 Thread Rainer Stengele
All, I have a simple Org file with this content: * TODO Test agenda clockings CLOCK: [2018-04-11 Mi 11:30]--[2018-04-11 Mi 11:45] => 0:15 CLOCK: [2018-04-10 Di 11:30]--[2018-04-10 Di 11:45] => 0:15 CLOCK: [2018-04-09 Mo 11:30]--[2018-04-09 Mo 11:45] => 0:15 CLOCK: [2018-04-08 So 11:30

Re: [O] macro with inline source does not work in table cells

2018-04-11 Thread Nicolas Goaziou
kabr...@3imail.com writes: > Hi, > > I have defined a macro that uses an emacs-lisp inline source code. It > works fine in all the usual places, except table cells. A more standard > macro (that does not use a source code block) works fine. I have tried > looking through the source code in the exp

Re: [O] Bug: Editing cookie in table column breaks tabbing [9.1.9 (9.1.9-3-gb1a639-elpa @ /home/foo/.emacs.d/elpa/org-20180402/)]

2018-04-11 Thread Nicolas Goaziou
Hello, "Sebastian P. Luque" writes: > When `org-startup-align-all-tables' is t, then editing the cookie in > a table causes subsequent tabbing inside the table to throw the > following trace: > > Debugger entered--Lisp error: (args-out-of-range #("abcde" 0 1 (help-echo > "Clipped table field,

[O] statistics with R, convert the result into an org table

2018-04-11 Thread Uwe Brauer
Hi I use structure like this Statistics with R #+tblname: qual | 8.3 | 1.4 | | 7.3 | 5.6 | | 2 | 1.3 | | 5.7 | 9.3 | | 5.3 | 5.9 | | 4 | | | 6.9 | | #+begin_src R :results output :var qual=qual summary(qual) #+end_src And obtain #+RESULTS: :V1 V2 : Min.

[O] org-move-subtree-down whitespace dance

2018-04-11 Thread Marco Wahl
Hello everyone, After having stumbled over https://emacs.stackexchange.com/questions/32144/org-mode-org-move-subtree-down-function-strange-behavior I also think the behavior of org-move-subtree-down is strange. What about pulling out the dance with the whitespace from org-move-subtree-down

Re: [O] Library of Babel confusion

2018-04-11 Thread Lawrence Bottorff
I'll try that, Thomas, but this was set up by simply doing the on-board customize, i.e., it needs to have this corrected. So how do I request this correction? On Tue, Apr 10, 2018 at 3:26 PM, Thomas S. Dye wrote: > Aloha Lawrence, > > You probably want (org-babel-lob-ingest &optional FILE) > > A

Re: [O] statistics with R, convert the result into an org table

2018-04-11 Thread Adonay Felipe Nogueira
2018-04-11T14:30:58+0200 Uwe Brauer wrote: > #+tblname: qual > | 8.3 | 1.4 | > > | 7.3 | 5.6 | > | 2 | 1.3 | > | 5.7 | 9.3 | > | 5.3 | 5.9 | > | 4 | | > | 6.9 | | > > #+begin_src R :results output :var qual=qual > summary(qual) > #+end_src Remove ":results output" -- - Formas de cont

Re: [O] statistics with R, convert the result into an org table

2018-04-11 Thread William Denton
I don't think it is possible without a step in the middle, because "Min. :2." is all one string (in a cell in a matrix). #+begin_src R :results output :var qual=qual :colnames yes s <- summary(qual) s[1] #+end_src #+RESULTS: : [1] "Min. :2.000 " You would have to split each cell into t

Re: [O] statistics with R, convert the result into an org table

2018-04-11 Thread Uwe Brauer
> 2018-04-11T14:30:58+0200 Uwe Brauer wrote: > Remove ":results output" Thanks! That works nicely.

Re: [O] Bug: Editing cookie in table column breaks tabbing [9.1.9 (9.1.9-3-gb1a639-elpa @ /home/foo/.emacs.d/elpa/org-20180402/)]

2018-04-11 Thread Sebastian P . Luque
On Wed, 11 Apr 2018 13:17:49 +0200, Nicolas Goaziou wrote: > Hello, "Sebastian P. Luque" writes: >> When `org-startup-align-all-tables' is t, then editing the cookie >> in a table causes subsequent tabbing inside the table to throw the >> following trace: >> Debugger entered--Lisp error: (arg

Re: [O] statistics with R, convert the result into an org table

2018-04-11 Thread Uwe Brauer
>>> "William" == William Denton writes: > I don't think it is possible without a step in the middle, because > "Min. :2." is all one string (in a cell in a matrix). Correct is leaves the : But I can live with that.

Re: [O] Library of Babel confusion

2018-04-11 Thread Berry, Charles
> On Apr 11, 2018, at 6:29 AM, Lawrence Bottorff wrote: > > I'll try that, Thomas, but this was set up by simply doing the on-board > customize, i.e., it needs to have this corrected. So how do I request this > correction? The idiom Tom gave you is correct. There are no variables for you to

Re: [O] Library of Babel confusion

2018-04-11 Thread Thomas S. Dye
Aloha Lawrence, You probably want (org-babel-lob-ingest &optional FILE) All the best, Tom Lawrence Bottorff writes: Thanks for the help. However, one mystery still remains: Why is this '(org-babel-lob-files (quote ("~/org/worg/library-of-babel.org"))) in my init.el's custom-set-variabl

Re: [O] org-move-subtree-down whitespace dance

2018-04-11 Thread Nicolas Goaziou
Hello, Marco Wahl writes: > After having stumbled over > > > https://emacs.stackexchange.com/questions/32144/org-mode-org-move-subtree-down-function-strange-behavior > > I also think the behavior of org-move-subtree-down is strange. > > What about pulling out the dance with the whitespace f

Re: [O] [PATCH] add "link" :results type for Babel

2018-04-11 Thread Nicolas Goaziou
Hello, stardiviner writes: > This patch try to support following way: > > #+begin_src sh :results link :file "/tmp/test.txt" > echo "hello" > /tmp/test.txt > echo "test" > #+end_src > > #+RESULTS: > [[file:/tmp/test.txt]] > > Because: > > - ~org-babel-execute-src-block~ > - ~(org-babel-get-src

Re: [O] Library of Babel confusion

2018-04-11 Thread Thomas S. Dye
Aloha Lawrence, Lawrence Bottorff writes: I'll try that, Thomas, but this was set up by simply doing the on-board customize, i.e., it needs to have this corrected. So how do I request this correction? There are instructions here: https://orgmode.org/org.html#Feedback You'll need to indica

Re: [O] Bug: org-capture files wrong date in capture template [9.1.7 (9.1.7-elpaplus @ /Users/rmirelan/.emacs.d/elpa/org-plus-contrib-20180226/)]

2018-04-11 Thread Nicolas Goaziou
Hello, Robert Irelan writes: > Hi, that ended up being the problem. Specifically, the line at > https://code.orgmode.org/bzg/org-mode/src/442e7a2911e3e0229b1b6dd1fe0449653274ec31/lisp/org-capture.el#L1013 > needs to be fixed to read instead > > (append `(0 0 ,org-extend-today-until) You are rig

[O] [PATCH] org-capture: Add a custom to control save target file or not.

2018-04-11 Thread tumashu
I use org-capture to capture text to a file of my mobile phone with the help of tramp and termux's sshd, the save buffer is very slow, so I want to org-capture-finalize just update buffer, and I save buffer manually when need. By the way, can we contribute org-mode with the help of PR feature in

Re: [O] [ANN] OrgStruct is dead. Long live Orgalist.

2018-04-11 Thread stardiviner
Yes, seems no obviously advantage. (Why want to do the same thing like MELPA, right, maybe someday Org-mode ELPA has CI or etc, can be easily integrated???) But if want to outof contrib/, I thinkthis is a thinking too. On 04/09/2018 10:47 AM, stardiviner wrote: -BEGIN PGP SIGNED MESSAGE--

Re: [O] [PATCH] add "link" :results type for Babel

2018-04-11 Thread stardiviner
On 04/12/2018 04:55 AM, Nicolas Goaziou wrote: Hello, stardiviner writes: This patch try to support following way: #+begin_src sh :results link :file "/tmp/test.txt" echo "hello" > /tmp/test.txt echo "test" #+end_src #+RESULTS: [[file:/tmp/test.txt]] Because: - ~org-babel-execute-src-blo