Re: Release Org 9.4.2

2021-01-02 Thread TRS-80
On 2020-12-18 16:49, Asa Zeren wrote: Have people looked at sourcehut (https://sourcehut.org)? While it's still in alpha, and so has a number of rough edges, it seems pretty promising. Sourcehut is trying to build a platform with accessible web uis that is backed by mailing lists. Just annother

[PATCH] ol: Avoid initial input when completing function for storing link

2021-01-02 Thread Kyle Meyer
John Kitchin writes: > Recently I have had an issue where multiple functions may store a link, > e.g. to a bibtex entry. > > In this case, org-mode seems to prompt me to ask which function to store > the link with, with an initial input of the first function, which masks all > the options that

ob-haskell

2021-01-02 Thread Lawrence Bottorff
I recently wimped out of trying to update ob-haskell as an official maintainer, but I'd eventually like to get back to it -- *after *I get some base understanding of what Haskell is (Zeno's paradox-land?) and how the ghci works. Basically, the ghci is what it is -- tautological, but true. And that

Re: [PATCH] Enhance org-html--build-meta-info

2021-01-02 Thread TEC
After considering the information passed to a meta info generation function, I'm now in agreement with you that just passing `info' is the most sensible way forward. Attached is a (final?) set of patches, which is as described. -- Timothy. >From e8c9646ae6c5083417a927bd2b23bb0f837930d2 Mon Sep

Re: what do do when multiple functions store a link

2021-01-02 Thread John Kitchin
Here is a very grungy solution: (defun scimax-store-link-advice (orig-fun args) (cl-letf (((symbol-function 'symbol-name) (lambda (_) ""))) (apply orig-fun args))) (advice-add 'org-store-link :around 'scimax-store-link-advice) It works by temporarily

Re: what do do when multiple functions store a link

2021-01-02 Thread Daniele Nicolodi
On 02/01/2021 14:49, John Kitchin wrote: > Recently I have had an issue where multiple functions may store a link, > e.g. to a bibtex entry.  >   > In this case, org-mode seems to prompt me to ask which function to store > the link with, with an initial input of the first function, which masks >

what do do when multiple functions store a link

2021-01-02 Thread John Kitchin
Recently I have had an issue where multiple functions may store a link, e.g. to a bibtex entry. In this case, org-mode seems to prompt me to ask which function to store the link with, with an initial input of the first function, which masks all the options that are available. This happens inside