Re: [PATCH] 3 improvements to ob-screen

2020-07-15 Thread Ken Mankoff
On 2020-07-15 at 20:12 -07, Kyle Meyer wrote... > Well, applied, but not pushed yet. In the second patch, the session > name is no longer passed to string-match; it was in the original patch > at . I'll fix it up > locally before pushing. Argh

Re: [PATCH] Make org-eldoc work with Emacs 28

2020-07-15 Thread Kyle Meyer
Basil L. Contovounesios writes: > "James N. V. Cash" writes: > >> This patch makes it continue to work by setting the new variable >> eldoc-documentation-strategy, which puts eldoc in >> "backwards-compatability" mode. > > How involved would it be to make org-eldoc work in >

Re: [PATCH] 3 improvements to ob-screen

2020-07-15 Thread Kyle Meyer
Kyle Meyer writes: > Ken Mankoff writes: > >> On 2020-07-14 at 20:08 -07, Kyle Meyer wrote... >>> Could you add a changelog entry to the body of this commit message and >>> the others? >> >> I made the changes you requested. Updated patches attached. > > Thank you. Applied, with a few minor

Re: [PATCH] 3 improvements to ob-screen

2020-07-15 Thread Kyle Meyer
Ken Mankoff writes: > On 2020-07-14 at 20:08 -07, Kyle Meyer wrote... >> Could you add a changelog entry to the body of this commit message and >> the others? > > I made the changes you requested. Updated patches attached. Thank you. Applied, with a few minor tweaks to the commit messages and

Re: [PATCH] Make org-eldoc work with Emacs 28

2020-07-15 Thread Basil L. Contovounesios
"James N. V. Cash" writes: > This patch makes it continue to work by setting the new variable > eldoc-documentation-strategy, which puts eldoc in > "backwards-compatability" mode. How involved would it be to make org-eldoc work in non-"backwards-compatibility" mode? > From

Re: heads up: org-eldoc (contrib) may not work with recent Emacs (28.0.x)

2020-07-15 Thread Basil L. Contovounesios
Eric S Fraga writes: > I am not entirely sure but I believe that recent changes in Emacs's > eldoc.el make org-eldoc (found in the contrib directory for org) no > longer work. At first glance, an argument is now required for > org-eldoc-documentation-function but this only postpones the

Re: [QUESTION] Re: [PATCH] make org-attach-url download function as an option

2020-07-15 Thread Ihor Radchenko
I do not know an answer to your question, but would like to point out that make-thread will return immidietealy and all the following code will run before the download finishes: (run-hook-with-args 'org-attach-after-change-hook attach-dir) (org-attach-tag) (cond ((eq org-attach-store-link-p

Re: Superscript and non-blank character

2020-07-15 Thread Bo Grimes
Ian is a "steely-eyed rocket man"!  I thanked him off-list in order not to clutter it up, which led to several more exchanges. I wanted to add my final reply to him to the list in case others find it helpful in the future. Begin quote: I couldn't get it to work, but...it may have been that

Why is Babel-C trimming its output?

2020-07-15 Thread Michaël Cadilhac
Hello, Quick question here: in ob-C.el, before returning the output of a C file, there's this line: (setq results (org-trim (org-remove-indentation results))) That seems quite arbitrary; is it on purpose? I have a C file that outputs some sort of list of formatted numbers, e.g.: 0 -17.8

Re: [PATCH] 3 improvements to ob-screen

2020-07-15 Thread Ken Mankoff
On 2020-07-14 at 20:08 -07, Kyle Meyer wrote... > Could you add a changelog entry to the body of this commit message and > the others? I made the changes you requested. Updated patches attached. -k. >From d7b7555969ce0e58653c5b5a78d9a4a0bebbacdf Mon Sep 17 00:00:00 2001 From: "Kenneth D.

make org-refile auto-recache when needed?

2020-07-15 Thread Adam Spiers
Hi all, I note that when org-refile-use-cache is enabled and the cache becomes stale, attempting to refile results in this error message (originating from `org-refile-check-position'): Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling Is there any reason

Re: :STYLE: habit causes position in agenda view to change

2020-07-15 Thread Adam Spiers
On Tue, Jul 14, 2020 at 11:33:03PM -0400, Kyle Meyer wrote: Adam Spiers writes: I've noticed that adding the :STYLE: habit property to a TODO causes its position in the agenda view to change; it jumps to the bottom of the day. Is there any way to prevent that? Try customizing

[QUESTION] Re: [PATCH] make org-attach-url download function as an option

2020-07-15 Thread stardiviner
I got solution for async org-attach-url now. Use `make-thread` for async downloading is simple. Here is the code prototype, but it has a problem, seems `apply` part code does not really downloading file. I don't know why. Does anybody knows the reason? #+begin_src diff modified