Re: [BUG] Info JS does not work [9.5.3 (release_9.5.3-467-g2bd34e @ /Users/salutis/src/org-mode/lisp/)]

2022-06-21 Thread Ihor Radchenko
Bastien writes: >> https://todo.sr.ht/~emacs/emacs/2 could be somewhat useful. > > Yes, somewhat: but I'm not yet clear on the steps to set up a mirror. > > If anyone can guide me from A to Z, I'd be glad. The discussion mentions some cron job. Quick googling yielded

Re: [BUG] Info JS does not work [9.5.3 (release_9.5.3-467-g2bd34e @ /Users/salutis/src/org-mode/lisp/)]

2022-06-21 Thread Bastien
Hi Ihor, Ihor Radchenko writes: > However, https://git.sr.ht/~bzg/org-mode does not appear to sync > automatically. The last commit in https://git.sr.ht/~bzg/org-mode/log is > 15 days ago. > > Can we setup automatic mirror sync? Sure. > https://todo.sr.ht/~emacs/emacs/2 could be somewhat

Re: About 'inline special blocks'

2022-06-21 Thread Juan Manuel Macías
Max Nikulin writes: > If alternative text for images and description of > links are not convincing [...] It does convince me, Maxim, that's why I told you in my previous message that you were right in that example you had put about the alternate text. And my question was (and still is) if you

Re: Missing from Info

2022-06-21 Thread Colin Baxter
> Ihor Radchenko writes: > Colin Baxter writes: >> The latest org-mode info has a section entitled: "13.10.2 LaTeX >> specific export settings". At the foot of that Section is the >> line: "The following sections have further details." There is >> nothing following.

Re: About 'inline special blocks'

2022-06-21 Thread Max Nikulin
On 21/06/2022 02:06, Juan Manuel Macías wrote: Max Nikulin writes: I would like to stress that styles can not be a rescue in some important cases. Let's leave aside ad hoc final tuning of formatting. In the case of HTML export there are still and attributes that are namely per-object, not

Re: Proposal: 'executable' org-capture-templaes

2022-06-21 Thread Max Nikulin
On 21/06/2022 11:07, Ihor Radchenko wrote: Max Nikulin writes: The other question is altering the org-capture code. I think that it is too early to discuss org-capture part just yet. Lets first finalize the generic library itself and discuss the appropriate adjustments to

Re: [PATCH v3] ol.el: add description format parameter to org-link-parameters

2022-06-21 Thread Max Nikulin
On 21/06/2022 19:03, Hugo Heagren wrote: +(defmacro test-ol-with-link-parameters-as (type parameters body) [...] + `(progn + (setq orig-parameters org-link-parameters) I can easily miss something, but wouldn't it be enough to use let-binding `(let ((org-link-parameters

Re: [BUG] Info JS does not work [9.5.3 (release_9.5.3-467-g2bd34e @ /Users/salutis/src/org-mode/lisp/)]

2022-06-21 Thread Ihor Radchenko
Bastien writes: >> There is such a SourceHut project: https://sr.ht/~bzg/orgmode/ > > The sr.ht project is now on https://sr.ht/~bzg/org/ and lists all > relevant repositories, including a mirror of the official org-mode > repository at https://git.sr.ht/~bzg/org-mode. I just found some

Implementing ox-beamer property support in ox-latex.

2022-06-21 Thread General discussions about Org-mode.
Dear list, I recently fell in love with the properties support provided by ox-beamer.  Especially in combination with an appropriate column view, this feature allows you to create complex presentations and maintain a good overview of all slides, layouts and possible transitions.  Today I

RE: [BUG] [9.6 (9.6-??-971eb68 @ c:/Users/xpar/.emacs.d/.local/straight/build-27.2/org/)]

2022-06-21 Thread Ihor Radchenko
Lourens van der Vliet writes: > Org mode version 9.6 (9.6-??-971eb68 @ > c:/Users/xpar/.emacs.d/.local/straight/build-27.2/org/) > I performed this week a sync with doom emacs. This the last version. Nope. 971eb68 is a 3 month old commit. Looking at

RE: [BUG] [9.6 (9.6-??-971eb68 @ c:/Users/xpar/.emacs.d/.local/straight/build-27.2/org/)]

2022-06-21 Thread Lourens van der Vliet
Hoi Ihor Org mode version 9.6 (9.6-??-971eb68 @ c:/Users/xpar/.emacs.d/.local/straight/build-27.2/org/) I performed this week a sync with doom emacs. This the last version. Groet, Lourens -Original Message- From: Ihor Radchenko Sent: Thursday, June 16, 2022 3:42 PM To: Lourens van

Re: [PATCH v3] ol.el: add description format parameter to org-link-parameters

2022-06-21 Thread Robert Pluim
> On Tue, 21 Jun 2022 13:03:32 +0100, Hugo Heagren said: Hugo> They're very nearly just right, but for some reason Hugo> `test-ol-with-link-parameters-as' doesn't always reset the parameters Hugo> correctly for me. However I have them set to originally, it sets Hugo>

Re: org-table in comment environments

2022-06-21 Thread Ihor Radchenko
Uwe Brauer writes: > I have a org-table in a comment environment, since I don't want to export it. > > However you can I edit the table using org-table commands, orgtbl-mode > is ignored, so what shall I do? > > That seems as a stupid question, but I can't find its obvious answer. Everything

Re: [PATCH] ox.el: Protect export from auto-formatting hooks

2022-06-21 Thread David Lukeš
Please ignore this patch! Apologies, as I was sending another patch today, I thought I hadn't followed up on my earlier promise to send a patch for this issue. It turns out I have, it just hasn't been reviewed/merged yet: https://list.orgmode.org/20220228140750.75761-1-dafydd.lu...@gmail.com/ (I

[PATCH] ox.el: Protect export from auto-formatting hooks

2022-06-21 Thread David Lukes
* ox.el, ox-odt.el: Use `write-region' instead of `write-file' or `save-buffer' to protect generated export buffers from auto-formatting hooks. In particular, `tidy' is often configured as the auto-formatter for HTML and XML, and it can corrupt the exports. TINYCHANGE --- lisp/ox-odt.el | 4

Re: [BUG] Editing link hides text

2022-06-21 Thread Ihor Radchenko
Tor Kringeland writes: > Most of the text will then be hidden, with "test" showing as a link, as > expected. However if I remove the last ], the link highlighting > disappears and only "test" is shown like regular text (/i.e./ instead of > "[[123][test]" as would be expected). If I insert a

org-table in comment environments

2022-06-21 Thread Uwe Brauer
Hi I have a org-table in a comment environment, since I don't want to export it. However you can I edit the table using org-table commands, orgtbl-mode is ignored, so what shall I do? That seems as a stupid question, but I can't find its obvious answer. Regards Uwe Brauer -- I strongly

Re: [PATCH v3] ol.el: add description format parameter to org-link-parameters

2022-06-21 Thread Hugo Heagren
I've finally had time to the `:default-description' parameter in `org-link-parameters'. Ihor Radchenko writes: > I recommend writing tests for org-insert-link in > testing/lisp/test-ol.el and testing expected behaviour for various > values of :default-description. Good advice! I haven't

Re: Missing from Info

2022-06-21 Thread Ihor Radchenko
Colin Baxter writes: > The latest org-mode info has a section entitled: "13.10.2 LaTeX specific > export settings". At the foot of that Section is the line: "The > following sections have further details." There is nothing following. I do have section 13.10.3 and the subsequent sections on my

[PATCH] oc-basic.el: Stringify year from CSL-JSON date-parts

2022-06-21 Thread David Lukes
* lisp/oc-basic.el (org-cite-basic--parse-json): Make sure year extracted from date-parts is returned as string. Raise error if original type other than number or string. The stringifiation is motivated by errors like the following on Emacs 28 with nativecomp: Error during redisplay:

Re: oc-basic: CSL-JSON year as number vs. string (nativecomp?)

2022-06-21 Thread David Lukeš
Bruce: Understood, I was just thinking forward :) Thank you for the details. As far as I'm concerned, EDTF in CSL JSON sounds like a good idea (but it's not like my opinion should particularly matter). Ihor: Thank you for the feedback! I'll send a proper patch then. Best, David

Re: [PATCH] Re: [BUG] Adding note to heading without newline at the end

2022-06-21 Thread Ihor Radchenko
Tor Kringeland writes: > Ihor Radchenko writes: > >> Aha. Not saving is an important piece of information. >> (said the person with compulsive saving syndrome) > > Thanks! This fixes the bug (which was present in both Org 9.5 and 9.6) > for me. However, my original bug, which is only present

Re: [PATCH] Re: [BUG] Adding note to heading without newline at the end

2022-06-21 Thread Tim Cross
Tor Kringeland writes: > Ihor Radchenko writes: > >> Aha. Not saving is an important piece of information. >> (said the person with compulsive saving syndrome) > > Thanks! This fixes the bug (which was present in both Org 9.5 and 9.6) > for me. However, my original bug, which is only

Re: Mastodon link type for capturing toots?

2022-06-21 Thread Christian Moe
Yes, I probably will write my own (and share it here). Just wanted to check first if the wheel had already been invented, as I'm feeling lazy. Thanks for confirming it probably hasn't. Yours, Christian Ihor Radchenko writes: > Christian Moe writes: > >> Has anyone written a link type for

Re: [PATCH] Re: [BUG] Adding note to heading without newline at the end

2022-06-21 Thread Tor Kringeland
Ihor Radchenko writes: > Aha. Not saving is an important piece of information. > (said the person with compulsive saving syndrome) Thanks! This fixes the bug (which was present in both Org 9.5 and 9.6) for me. However, my original bug, which is only present in Org 9.6, is still there. Do the

[PATCH] org.el (org-read-date): Point to Info documentation

2022-06-21 Thread Robert Pluim
I was just about to start implementing calendar navigation commands for org-read-date, except that they all already exist :-). Theyʼre just not documented in the docstring, only in the manual. Patch adding a cross-reference attached. Robert -- >From bded6dfd8d6340d8330f8c1f11a46a140082f3b5 Mon

Beamer export: Executing LaTeX between two frames

2022-06-21 Thread M . ‘quintus’ Gülker
Dear list, I am working on a presentation for a conference (using org-mode and its beamer export) and want to exchange the entire background for a specific frame with an image. This is possible with Beamer, see . It works by issueing \usebackgroundtemplate

Re: Proposal: 'executable' org-capture-templaes

2022-06-21 Thread Arthur Miller
Max Nikulin writes: > On 20/06/2022 19:10, Ihor Radchenko wrote: >> Max Nikulin writes: >> Sure. I was hinting about such functionality in the new library we are >> discussing. Multiple capture menus are not possible now anyway, so it >> will be a new feature if we decide that we need it (I am

Re: Proposal: 'executable' org-capture-templaes

2022-06-21 Thread Arthur Miller
Ihor Radchenko writes: > Max Nikulin writes: > >> Consider the following case. A user has 2 virtual desktops dedicated to >> rather independent tasks and an Emacs frame on each desktop. On desktop >> 1 she opens help for some function with aim to evaluate if it is >> appropriate for some

Missing from Info

2022-06-21 Thread Colin Baxter
Hello, The latest org-mode info has a section entitled: "13.10.2 LaTeX specific export settings". At the foot of that Section is the line: "The following sections have further details." There is nothing following. Best wishes,

[PATCH] org-agenda-with-point-at-orig-entry: Fix body indentation

2022-06-21 Thread Aaron L. Zeng
--- lisp/org-agenda.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 76f71e33e..021d36657 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -2124,7 +2124,7 @@ argument to `set-category' for each entry it's called