Re: [BUG] org-save-all-org-buffers reapplies startup visibility [9.5 (release_9.5 @ /usr/local/share/emacs/29.0.50/lisp/org/)]

2021-10-08 Thread Mark Barton
The debugger shows that pred gets set to org-mode rather than the function to test for org mode. Debugger entered--returning value: org-mode (setq pred pred-fun) * (progn (setq pred pred-fun)) * (if (functionp pred-fun) (progn (setq pred pred-fun))) * (let ((pred-fun (and (functionp pred)

Re: [BUG] org-save-all-org-buffers reapplies startup visibility [9.5 (release_9.5 @ /usr/local/share/emacs/29.0.50/lisp/org/)]

2021-10-08 Thread Mark Barton
I can confirm this too. (defun org-save-all-org-buffers () "Save all Org buffers without user confirmation." (interactive) (message "Saving all Org buffers...") (save-some-buffers t (lambda () (derived-mode-p 'org-mode))) (when (featurep 'org-id) (org-id-locations-save)) (message

[ANN] New `bibtex' citation processor

2021-10-08 Thread Nicolas Goaziou
Hello, I just added the no-thrill "oc-bibtex" citation processor, which relies on the standard "\cite" and "\nocite" LaTeX commands. It only supports citation suffixes. Regards, -- Nicolas Goaziou

Re: Citations: Locale specific adaptions?

2021-10-08 Thread Nicolas Goaziou
M. ‘quintus’ Gülker writes: > I agree with Bruce that this should be mentioned in the manual, > including a pointer to the aforementioned Git repository, because I > needed to find that one on my own. Meanwhile, the `csl' processor is copiously documented in the "Commentary" section of the

Re: Citations: Locale specific adaptions?

2021-10-08 Thread M . ‘quintus’ Gülker
Am Freitag, dem 08. Oktober 2021 schrieb Nicolas Goaziou: > I think you need to provide locales in addition to the style file, see > `org-cite-csl-locales-dir'. That resolved the problem! Thank you (and Bruce). I cloned https://github.com/citation-style-language/locales and set

Re: Citations: Locale specific adaptions?

2021-10-08 Thread András Simonyi
Dear All, setting the `org-cite-csl-locales-dir' variable to a directory containing the German CSL locale file I indeed get the localized Akbarian, Samira, An einen, der vorüberfuhr, Stand: 14. Dezember 2020, https://verfassungsblog.de/an-einen-der-voruberfuhr/ (besucht am 02.01.2021). version

Re: Citations: Locale specific adaptions?

2021-10-08 Thread Nicolas Goaziou
Hello, M. ‘quintus’ Gülker writes: > CSL has a concept of locales, where things like specific terms or the > date format are drawn from locale files (see > https://docs.citationstyles.org/en/1.0.1/specification.html#locale). I > am not entirely sure if this is supported yet by the new citations

Re: Citations: Locale specific adaptions?

2021-10-08 Thread Bruce D'Arcus
On Fri, Oct 8, 2021 at 12:38 PM M. ‘quintus’ Gülker wrote: > I am not entirely sure if this is a bug, a missing feature (if so, I > would like to request it), or a user error on my side. Please enlighten > me. >From reading the code, it looks like you need to set org-cite-csl-locales-dir. Have

Citations: Locale specific adaptions?

2021-10-08 Thread M . ‘quintus’ Gülker
Dear list, CSL has a concept of locales, where things like specific terms or the date format are drawn from locale files (see https://docs.citationstyles.org/en/1.0.1/specification.html#locale). I am not entirely sure if this is supported yet by the new citations functionality. Take this test

Re: Someone to help merging orgmode.org/contribute.html and orgmode.org/worg/org-contribute.html ?

2021-10-08 Thread Greg Minshall
Bastien, > I added you, you can now clone g...@git.sr.ht:~bzg/worg > and push commits. thanks. cheers, Greg

Re: Someone to help merging orgmode.org/contribute.html and orgmode.org/worg/org-contribute.html ?

2021-10-08 Thread Bastien
Greg Minshall writes: > thanks. i'm "minshall" there, too. I added you, you can now clone g...@git.sr.ht:~bzg/worg and push commits. -- Bastien

Re: Someone to help merging orgmode.org/contribute.html and orgmode.org/worg/org-contribute.html ?

2021-10-08 Thread Greg Minshall
Bastien, > Applied, thanks a lot! Let me know if you have a user on git.sr.ht, I > can add you as a regular committer on https://git.sr.ht/~bzg/worg thanks. i'm "minshall" there, too. cheers, Greg

Re: Citation not inserted as 1st item in footnote (using org-cite and org-ref-cite)

2021-10-08 Thread Elias Bounatirou
Great, thanks! I can confirm it works now. Once again thank you very much. Best regards, Elias Am Mi., 6. Okt. 2021 um 14:44 Uhr schrieb Nicolas Goaziou < m...@nicolasgoaziou.fr>: > Nicolas Goaziou writes: > > > This allows one to insert a citation in the middle of the citation > > number,

Re: Someone to help merging orgmode.org/contribute.html and orgmode.org/worg/org-contribute.html ?

2021-10-08 Thread Bastien
Hi Greg, Greg Minshall writes: > sure. some comments and a patch (and, without the nice css, the .html > file it generates, just for ease of reviewing). Applied, thanks a lot! Let me know if you have a user on git.sr.ht, I can add you as a regular committer on https://git.sr.ht/~bzg/worg

Re: Citation in footnote not expanded/exported to LaTeX (using Org-ref-cite)

2021-10-08 Thread Elias Bounatirou
Many thanks, Nicolas !!! I've just tested. It looks good now. I should rather say it's excellent. Am Mi., 6. Okt. 2021 um 16:13 Uhr schrieb Nicolas Goaziou < m...@nicolasgoaziou.fr>: > Hello, > > Elias Bounatirou writes: > > > However, it appears Nicolas' MWE unfortunately does not reproduce

Re: Inequalities in math blocks

2021-10-08 Thread Greg Minshall
Rudolf, > I do not understand. As Max pointed out, inequalities break HTML > export in \( and \) as well. my apologies for not having understood where we were in the discussion! cheers, Greg

Re: Someone to help merging orgmode.org/contribute.html and orgmode.org/worg/org-contribute.html ?

2021-10-08 Thread Greg Minshall
Bastien, > thanks a lot for volunteering, but I did the merge a few days ago. great! > Perhaps you can still carefully proofread > https://orgmode.org/worg/org-contribute.html and enhance it? sure. some comments and a patch (and, without the nice css, the .html file it generates, just for

Re: Fwd: [BUG] org-save-all-org-buffers reapplies startup visibility [9.5 (release_9.5 @ /usr/local/share/emacs/29.0.50/lisp/org/)]

2021-10-08 Thread Lennart C. Karssen
Dear list, Confirmed. This is to confirm Micheal's overservation that `org-save-all-org-buffers' doesn't save any Org buffers any more in Emacs 28, compiled a few days ago from commit d86b2e59c and Org 9.5 from Elpa, running on Ubuntu Linux 21.04. I can't say if this is because of the upgrade of

Re: [BUG] org-context called from link in org-agenda entry returns wrong values [9.5 (9.5-g0a86ad @ /home/.emacs.d/elpa/org-9.5/)]

2021-10-08 Thread Harald Judt
Am 07.10.21 um 06:10 schrieb Ihor Radchenko: Harald Judt writes: Hi, I am using this function to copy links from the agenda to the clipboard: (defun my-copy-org-url () (interactive) (let* ((link-info (assoc :link (org-context))) ... org-context is ancient. It relies on

Re: [PATCH] Bug: Tag Selection Face Doesn't Toggle

2021-10-08 Thread Daniel Fleischer
> Daniel Fleischer writes: > >> Hi, when selecting tags using fast selection and then de-selecting, the >> face doesn't toggle back to regular face. >> It's better to have a default face instead of 'org-default face. >From f269d3ad99b8ad570c19961831f38653046f07fb Mon Sep 17 00:00:00 2001 From:

Re: [PATCH] [BUG] Org 9.5: org-goto UI seems broken

2021-10-08 Thread Marco Wahl
Max Nikulin writes: > On 05/10/2021 23:32, Ihor Radchenko wrote: >> Max Nikulin writes: >> I tried come up with the reason why org-no-popup was used in the >> initial >> implementation. I think, the reason is avoiding situation like what you >> may see after running >> (let ((pop-up-frames t))

[PATCH] Bug: Tag Selection Face Doesn't Toggle

2021-10-08 Thread Daniel Fleischer
Daniel Fleischer writes: > Hi, when selecting tags using fast selection and then de-selecting, the > face doesn't toggle back to regular face. > > Fast selection means `org-use-fast-tag-selection' is t. See attached. >From 0352757d7012dc543bae4039deaed7bbd401bb9f Mon Sep 17 00:00:00 2001 From: