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
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
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,
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.
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
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
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
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
> 2018-04-11T14:30:58+0200 Uwe Brauer wrote:
> Remove ":results output"
Thanks! That works nicely.
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
>>> "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.
> 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
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
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
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
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
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
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
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--
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
20 matches
Mail list logo