Re: org-sbe and code blocks in a different files

2020-07-08 Thread Eric S Fraga
On Tuesday, 7 Jul 2020 at 20:43, Michael Welle wrote: > That is great. Can I call the same function from a table function? > org-sbe doesn't support the above notation extended with an Org file > name, I think. Does org-sbe work if you have invoked org-babel-log-ingest first? -- : Eric S Fraga

Re: org-sbe and code blocks in a different files

2020-07-08 Thread Michael Welle
Hi Eric, Eric S Fraga writes: > * org-babel-lob-ingest ah, I learned something new here. Unfortunately, it seems like org-sbe doesn't look into the list spit out by org-babel-lob-ingest. Regards hmw

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-08 Thread Nick Dokos
Kyle Meyer writes: > Nick Dokos writes: > >> Here's the amended patch: it includes the fixes from Kyle's review, the >> modification >> he suggested that adds the plain property for each _ALL property to the list >> and a few test cases to the test/org-buffer-property-keys test. > > Thank you

Re: [PATCH] org: add property names from #+PROPERTY keywords to completion list

2020-07-08 Thread Nick Dokos
Kyle Meyer writes: > Nick Dokos writes: > >> Here's the amended patch: it includes the fixes from Kyle's review, the >> modification >> he suggested that adds the plain property for each _ALL property to the list >> and a few test cases to the test/org-buffer-property-keys test. > > Thank you

Re: org-sbe and code blocks in a different files

2020-07-08 Thread Eric S Fraga
* org-babel-lob-ingest -- : Eric S Fraga via Emacs 28.0.50, Org release_9.3.7-649-gb76ed6

Re: org-sbe and code blocks in a different files

2020-07-08 Thread Eric S Fraga
On Wednesday, 8 Jul 2020 at 16:59, Michael Welle wrote: >> * org-babel-lob-ingest > ah, I learned something new here. Unfortunately, it seems like org-sbe > doesn't look into the list spit out by org-babel-lob-ingest. Pity, and strange in that #+call: works on ingested babel blocks without

Re: time-warping - retroactively marking DONE?

2020-07-08 Thread No Wayman
I emailed Adam directly with an experimental package I wrote to solve the problem of changing the todo-state of an entry at an arbitrary time. He suggested I posted here as well: https://github.com/progfolio/epoch/ The package advises current-time to return `epoch-current-time' if is set

Re: org-sbe and code blocks in a different files

2020-07-08 Thread Douglas Perrin
Hi Michael, Maybe I am not understanding what you want to do but I use org-babel-lob-ingest/org-sbe to execute blocks from other files on start-up like this: # Local Variables: # eval: (org-babel-lob-ingest "Template-Loader.org") # eval: (org-sbe "Init-Template") ;; the name of a block in

WIP: Org-plot work

2020-07-08 Thread TEC
>From a7af0ff66917f92c735735d88eeccb5019937273 Mon Sep 17 00:00:00 2001 From: TEC Date: Thu, 9 Jul 2020 05:21:44 +0800 Subject: [PATCH 8/8] Org-plot: add radar plot type. --- lisp/org-plot.el | 138 ++- 1 file changed, 137 insertions(+), 1 deletion(-)

Re: How to mark task as done at specified (past) time?

2020-07-08 Thread Tim Landscheidt
Kyle Meyer wrote a long time ago: > […] >> Do I have to cl-flet org-current-time or something similar? > Something along those lines would probably be the most straightforward. > Light testing with the command below suggests overriding current-time is > sufficient: > (defun

[PATCH] agenda: Fold case when retrieving user-configured effort values

2020-07-08 Thread Kyle Meyer
Nick Dokos writes: > BTW, I just thought of a possible problem: the manual says that property > keys are case-insensitive (although all the examples I can find spell > "_ALL" in upper case, but if I write > > :PROPERTIES: > :foo_all: bar baz > :END: > > I don't think that the code is going

Wring case when using org-insert-structure-template

2020-07-08 Thread Guillaume MULLER
Hi, Thanks for Org-mode. This is really THE software I needed! I LOVE everything about it! This is the only piece of software I know of that really designed by users for users, with users & efficiency in mind! I'm using GNU Emacs 26.3, with built-in org 9.1.9. When I try to automatically

Re: How to mark task as done at specified (past) time?

2020-07-08 Thread Kyle Meyer
Tim Landscheidt writes: > I have an icky feeling about cl-letfing current-time because > Murphy might cause a timer to fire in just that time frame > and I have no idea what current-time is for that timer; so > if future org-mode releases would provide a cleaner API I > would very much appreciate