Re: time-warping - retroactively marking DONE?

2020-08-29 Thread Adam Spiers
On Wed, 8 Jul 2020 at 23:09, No Wayman wrote: > 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

Re: time-warping - retroactively marking DONE?

2020-08-29 Thread No Wayman
Adam Spiers writes: Many thanks again for this. It's working great for me! In case anyone's interested, here's my use-package config (which uses the awesome straight.el package manager to install it):

Re: Help debugging R source code block output problem with :session

2020-08-29 Thread Dylan Schwilk
Thanks for the workaround idea of grabbing the results as a string. I'm not sure why this issue cropped up for me right now when I did not run into it in previous years. But I have run into other :results output issues in the past when ess changed. Thanks, Dylan On Sat 29 Aug 2020 at

[feature request] A new cookie type [!] showing the last note taken

2020-08-29 Thread Ihor Radchenko
Over the years of using Org I often have a need to add a short note about how to proceed with some task: * REVIEW check again, subscribe | sindresorhus/awesome:  Awesome lists about all kinds of interesting topics :BOOKMARK: :PROPERTIES: :CREATED: [2020-03-15 Sun 18:59] :Source:

Re: Help debugging R source code block output problem with :session

2020-08-29 Thread Jack Kamm
Hi Dylan, > The patch does fix that issue -- but it introduces a different bug > for code blocks with ~:session~: the R block now only produces > output from the last statement evaluated. Of course, you're right. Good catch. Here's another attempt. It fixes the issue by modifying the R comint

Re: Problem in 9.3: (next-error) broken

2020-08-29 Thread Kyle Meyer
Tory S. Anderson writes: > I discovered teh cause of this error is that new versions of orgmode > sets next-error-function and so breaks the. I've added a hook to clear > this in orgmode and I can navigate my grep properly again. I'm not having any luck triggering the issue, but in any case

Re: babel latex headers and image generation commands

2020-08-29 Thread Matt Huszagh
Bastien writes: > If you find the time to share your change as a _patch_ (not the whole > updated Elisp function), that will allow more readers on this list to > quickly understand what is at stake. Ok, I've finally gotten around to taking a crack at this. The patch is attached. Basically, it

Re: new feature for consideration: other-tab for org-agenda-window-setup

2020-08-29 Thread Kyle Meyer
Kyle Meyer writes: > I'll let this sit for another day to see if other comments come in. Applied (e8ebf5d6c).

Re: Bug: org-capture entry sometimes ends without newline, garbles next headline [9.3.6 (9.3.6-elpa @ /home/arne/Disy/.emacs.d/elpa/org-9.3.6/)]

2020-08-29 Thread Dr. Arne Babenhauserheide
Kyle Meyer writes: > Dr. Arne Babenhauserheide writes: > >> Sometimes when I use org-capture to create a new headline, that headline >> ends with a non-empty partial line that isn’t terminated by a newline. >> >> This causes the next headline to be corrupted, because the * is appended >> to the

Re: Bug: no math-mode detection for align-environment [9.3.7 (9.3.7-13-ge62ca4-elpaplus @ /home/stefi/.emacs.d/elpa/org-plus-contrib-20200713/)]

2020-08-29 Thread Stefi
Great news! So this problem will just go away by itself then. Until then I will use the texmathp-tex-commands solution as a workaround. Thank you everyone for sharing your thoughts! On 8/28/20 8:55 AM, Carsten Dominik wrote: > Hi, > > AUCTeX has taken back this change, realizing that

Re: bash babel code gives error

2020-08-29 Thread Kyle Meyer
Colin Baxter writes: >> Colin Baxter writes: > > > Hello, I have various .tex files and an org file in the same > > directory. In the org file is the following simple bash babel-code > > > #+begin_src bash sha256sum *.tex > CHECKSUM #+end_src > > > > This code block used to

Re: Bug: org-capture entry sometimes ends without newline, garbles next headline [9.3.6 (9.3.6-elpa @ /home/arne/Disy/.emacs.d/elpa/org-9.3.6/)]

2020-08-29 Thread Kyle Meyer
Dr. Arne Babenhauserheide writes: > (how can I close the bug?) This list isn't hooked up to a tracker, so there's nothing to close.

Re: [RFC] ob-reticulate: R+Python interface from Babel

2020-08-29 Thread Kyle Meyer
Jack Kamm writes: > Hi all, > > Reticulate is an R package for interfacing between R and Python. It > allows accessing objects in a Python session from R and vice > versa. See https://rstudio.github.io/reticulate/ for more info about > it. > > I've written a small patch for using reticulate from

[PATCH] ob-core: Avoid table conversion warning for empty results

2020-08-29 Thread Kyle Meyer
Kyle Meyer writes: > Thanks for reporting. The _display_ of this warning starts with my > 14878f3f9 (ob-core: Display warning on failure to read results, > 2020-05-21). Here's the associated thread on the mailing list: > . > > On

Re: Problem in 9.3: (next-error) broken

2020-08-29 Thread Tory S. Anderson
Perhaps I was on an old version, although I don't think it was that old. In any case, I keep having org-occur-next-match set away from nil, and I'm actually having trouble figuring out which hook will fix it, since org-mode-hook doesn't seem to be doing it. Instead I end up manually evaluating

Re: [PATCH] ob-core: Avoid table conversion warning for empty results

2020-08-29 Thread Colin Baxter
Dear Kyle, > Kyle Meyer writes: > Kyle Meyer writes: >> Thanks for reporting. The _display_ of this warning starts with >> my 14878f3f9 (ob-core: Display warning on failure to read >> results, 2020-05-21). Here's the associated thread on the >> mailing list: >>

Re: Help debugging R source code block output problem with :session

2020-08-29 Thread Berry, Charles
This problem has been bugging people for years and previous attempts to solve it have always run up against creating more problems in the process of solving this one. This workaround gives the same results with or without `:session "NEW"' and same as OPs first src block: #+header: :prologue

[PATCH] Expanded ob-python results handling and plotting

2020-08-29 Thread Jack Kamm
The attached patch adds ob-python value results handling for the following types of results: - Dictionaries - Numpy arrays - Pandas dataframes - Matplotlib figures This is a bigger commit than I'm used to, so I thought I better send it out before merging, in case someone notices obvious problems

Re: Problem in 9.3: (next-error) broken

2020-08-29 Thread Kyle Meyer
Tory S. Anderson writes: > In any case, I keep having org-occur-next-match set away from nil, and > I'm actually having trouble figuring out which hook will fix it, since > org-mode-hook doesn't seem to be doing it. Instead I end up manually > evaluating =(setq next-error-function nil)= every

Re: [PATCH] Expanded ob-python results handling and plotting

2020-08-29 Thread Kyle Meyer
Jack Kamm writes: > The attached patch adds ob-python value results handling for the > following types of results: > > - Dictionaries > - Numpy arrays > - Pandas dataframes > - Matplotlib figures Thanks. Just a couple of drive-by comments... > +try: > +

[PATCH] doc: Document C-. for jumping to today when choosing a timestamp

2020-08-29 Thread Adam Spiers
This useful key binding was previously missing from the manual. Signed-off-by: Adam Spiers --- doc/org-manual.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/org-manual.org b/doc/org-manual.org index 3eb745b5d..7c291c3a7 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@

[PATCH] org-refile.el: Add org-refile-reverse which toggles org-reverse-note-order

2020-08-29 Thread Adam Spiers
This is useful for prepending to the start of the target headline instead of appending to the end, or vice-versa depending on org-reverse-note-order. --- doc/org-manual.org | 10 ++ etc/ORG-NEWS | 9 + lisp/org-keys.el | 1 + lisp/org-refile.el | 11 +++ 4 files

Re: Help debugging R source code block output problem with :session

2020-08-29 Thread Dylan Schwilk
Yes, the modified comint-prompt-regexp works for my use cases and I'm back to expected output and what I had last time I taught the course. This was my instinct for a simple solution as well, but I've not tested against remote sessions and graphical outputs as Charles Berry warns. I'll take