Re: [HELP] Fwd: Org format as a new standard source format for GNU manuals

2022-10-05 Thread Ihor Radchenko
Max Nikulin writes: > It seems I completely failed trying to express my idea. > > Instead of extending Org grammar (syntax), I suggest to change behavior > of source blocks during export. In addition to current :results options, > "ast" may be added. Its effect is that instead of adding text

Re: A function to perform Org related searches in several places

2022-10-05 Thread Ihor Radchenko
Juan Manuel Macías writes: > For my personal use I have written a function which performs Org related > searches in different places. The list of places is expandable, but so > far I found them useful: this mailing list, the Org Manual (via org-ql), > the Git log and the Org Reddit. The idea was

Re: [PATCH] Three documentation patches

2022-10-05 Thread Stefan Kangas
Ihor Radchenko writes: > The patches look good, but I am unable to apply them onto current main: Hmm, strange. I've rebased on top of current main, and I'm resending the resulting patches here. I hope they work better. From ffd00c1272dd876f64c9ef930d19988b6da5c2a3 Mon Sep 17 00:00:00 2001

Re: [PATCH] Three documentation patches

2022-10-05 Thread Ihor Radchenko
Stefan Kangas writes: > Please find attached three separate documentation patches. Thanks! The patches look good, but I am unable to apply them onto current main: 128 git … am --3way -- /tmp/0002-Improve-documentation-of-org-agenda-skip.patch Applying: Improve documentation of

Re: Some links in online manual do not work

2022-10-05 Thread Ihor Radchenko
Tim Landscheidt writes: >> This looks like the nginx case issue again. > >> I've looked at this and there does not seem to be any 'clean' way to fix >> this which also doesn't have significant processing overhead or a >> maintenance burden. > >> I wonder if it would be worthwhile adding an

Re: [PATCH] lisp/org-agenda.el: Fix filter preset problem for sticky agenda

2022-10-05 Thread Liu Hui
Ihor Radchenko writes: >> +(defvar org-agenda-filters-preset nil >> + "Preset of filters, which becomes buffer-local in org-agenda buffers.") > > Can you detail the value format in the docstring? > It would also be useful to mention `org-agenda-local-vars'. Otherwise, > the reader might be

Re: [BUG] org-timer-start doesn't seem to take the timer string at point [9.5.5 (release_9.5.5 @ z:/emacs-i686/share/emacs/28.2/lisp/org/)]

2022-10-05 Thread Ihor Radchenko
Ypo writes: > Sorry for my delayed answer. But I don't see it either :/ > > "The prompt will default to a timer string at > +  point (if any)," > > I can't see it well related to the C-u prefix. For example why the "(if > any)"? It should be unnecessary, since it is the previous explained >

Re: [HELP] Fwd: Org format as a new standard source format for GNU manuals

2022-10-05 Thread Ihor Radchenko
"Rick Lupton" writes: > I wonder if you have seen Pollen’s approach to this? > https://docs.racket-lang.org/pollen/pollen-command-syntax.html Thanks for the interesting reference! After skimming through the syntax described in the link, I feel like most of the features are already present in

Re: [PATCH 1/1] Allow returning empty list from post-processing block

2022-10-05 Thread Ihor Radchenko
Jonas Bernoulli writes: > * lisp/ob-ref.el (org-babel-ref-resolve): When the result an empty > list, then treat it as a list, not as the symbol nil. > * testing/lisp/test-ob.el (test-ob/return-empty-list-from-post-block): > Add new test. > * etc/ORG-NEWS (Post-processing code blocks can return

Re: [BUG] org-beamer :BEAMER_ACT: ignored on columns

2022-10-05 Thread Ihor Radchenko
"Fraga, Eric" writes: > On Wednesday, 5 Oct 2022 at 06:38, reza wrote: >> But the overlay specification is missing on the second column and I >> guess this is a bug? > > Maybe a bug or more simply a missing feature. On line 552 of > ox-beamer.el, we add options but there is no equivalent for

Re: [PATCH] DOCT integration: template specific hooks [9.5.5 (9.5.5-g003cc7 @ /home/n/.emacs.d/elpaca/builds/org/)]

2022-10-05 Thread Ihor Radchenko
No Wayman writes: > The attached patch is the first step toward integrating DOCT[1] > syntax into Org mode. Thanks! This is most welcome. > It adds property options to org-capture-templates which make it > easier to run template-specific hooks. > ... > Contrast the above with the

Re: Planning links to tasks

2022-10-05 Thread Eduardo Suarez Santana
Org sample fixed: BEGIN ORG SAMPLE ... * Planning ** Planned tasks - [[#task4][My task 4 header]] - [[#task5][My task 5 header]] - [[#task1][My task 1 header]] - [[#task2][My task 2 header]] - [[#task7][My task 7 header]] - [[#task6][My task 6 header]] - [[#task3][My task 3 header]]

Re: [HELP] Fwd: Org format as a new standard source format for GNU manuals

2022-10-05 Thread Rick Lupton
Hi Ihor and all, I wonder if you have seen Pollen’s approach to this? https://docs.racket-lang.org/pollen/pollen-command-syntax.html There are two separate ideas used there which seemed related to this discussion. I’m not sure if they are useful in the org context. 1. The use of a special

[PATCH] Three documentation patches

2022-10-05 Thread Stefan Kangas
Please find attached three separate documentation patches. From 269faa44ec18bb63c61ecba4cb232ceb0e46cd10 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 2 Oct 2022 21:54:20 +0200 Subject: [PATCH 1/3] Add crossreference to org-stuck-projects docstring * lisp/org-agenda.el

Re: Some links in online manual do not work

2022-10-05 Thread Tim Landscheidt
Tim Cross wrote: >> at https://orgmode.org/manual/HTML-Export.html, the links >> for the first five (5) and the last two (2) subsections >> work, the links for: >> - "Headlines in HTML export" >> (https://orgmode.org/manual/Headlines-in-HTML-export.html) >> - "Links in HTML export" >>

[PATCH 0/1] Allow returning empty list from post-processing block

2022-10-05 Thread Jonas Bernoulli
Here's my patch, including a test and a news entry. I didn't know where to put the test so I just put it at the beginning. It should probably be moved. Jonas Bernoulli (1): Allow returning empty list from post-processing block etc/ORG-NEWS| 6 ++ lisp/ob-ref.el | 2

[PATCH 1/1] Allow returning empty list from post-processing block

2022-10-05 Thread Jonas Bernoulli
* lisp/ob-ref.el (org-babel-ref-resolve): When the result an empty list, then treat it as a list, not as the symbol nil. * testing/lisp/test-ob.el (test-ob/return-empty-list-from-post-block): Add new test. * etc/ORG-NEWS (Post-processing code blocks can return an empty list): Document change in

Re: [BUG] org-timer-start doesn't seem to take the timer string at point [9.5.5 (release_9.5.5 @ z:/emacs-i686/share/emacs/28.2/lisp/org/)]

2022-10-05 Thread Ypo
Sorry for my delayed answer. But I don't see it either :/ "The prompt will default to a timer string at +  point (if any)," I can't see it well related to the C-u prefix. For example why the "(if any)"? It should be unnecessary, since it is the previous explained general case. Best regards

Re: Numbered footnotes in the manual interfere with diff (was: Dates in headlines)

2022-10-05 Thread Ihor Radchenko
Ihor Radchenko writes: > Ihor Radchenko writes: > >>> https://orgmode.org/manual/Handling-Links.html#FOOT28 >> >> Unless I miss something, this footnote is plain wrong. The timestamps >> are not removed. At least not when I run M-x org-store-link on a >> headline with timestamp with emacs -Q. >

A function to perform Org related searches in several places

2022-10-05 Thread Juan Manuel Macías
Hi all, For my personal use I have written a function which performs Org related searches in different places. The list of places is expandable, but so far I found them useful: this mailing list, the Org Manual (via org-ql), the Git log and the Org Reddit. The idea was that everything would be

Re: [BUG] org-beamer :BEAMER_ACT: ignored on columns

2022-10-05 Thread Fraga, Eric
On Wednesday, 5 Oct 2022 at 06:38, reza wrote: > But the overlay specification is missing on the second column and I > guess this is a bug? Maybe a bug or more simply a missing feature. On line 552 of ox-beamer.el, we add options but there is no equivalent for adding actions to the column

Re: Explicit page breaks

2022-10-05 Thread Ihor Radchenko
Juan Manuel Macías writes: > Ihor Radchenko writes: > >> May we introduce a new standard macro {{{page-break(backend)}}} >> that will expand to an appropriate >> @@backend:> ? > > The macro seems like a good idea. The only (minor) inconvenience that I > see, if I have understood it correctly, is

Re: [BUG] org-table: deleting columns not always actualise the formulas. [9.4.6 (release_9.4.6-541-g52b097 @ /home/oub/emacs/site-lisp/packages/org/)]

2022-10-05 Thread Uwe Brauer
>>> "IR" == Ihor Radchenko writes: > Uwe Brauer writes: >> But as you can see @3$17 only gets changed to @3$16 but not to @3$8 as >> it should be. > Thanks for reporting, and sorry for the late reply. > Fixed on main. >

Re: Support for tagging (special) blocks

2022-10-05 Thread Ihor Radchenko
Sébastien Miquel writes: > Hi, > > Ihor Radchenko writes: >> Thanks for the clarification! >> I did not mean to reduce the font size in affiliated keywords. >> I was referring to replacing the display of affiliated keywords: >> >> #+name: A classic >> #+tag: easy >> >> will be displayed by Emacs

Re: [PATCH] lisp/org-agenda.el: Fix filter preset problem for sticky agenda

2022-10-05 Thread Bastien Guerry
Hi Ihor and Liu, Ihor Radchenko writes: >> I have signed the FSF >> copyright assignment paper. > > Bastien, could you please confirm the FSF records? I do confirm, I updated https://orgmode.org/worg/contributors.html Liu, thanks in advance for contributing to Org! Best, -- Bastien

Re: Post-process table without changing result for empty table(/list)

2022-10-05 Thread Ihor Radchenko
Jonas Bernoulli writes: >>> In the long run you might want to consider not turning any symbols >>> into strings, at least not when the "regular" block as well as the >>> post-processing block both use elisp. >> >> This may be tricky. Introducing any kind of special case will make the >> code

[BUG] org-beamer :BEAMER_ACT: ignored on columns

2022-10-05 Thread reza
Hi List I have the following MWE: * A section ** A Frame *** A left column :PROPERTIES: :BEAMER_COL: 0.48 :END: *** A right column :PROPERTIES: :BEAMER_COL: 0.48 :BEAMER_ACT: <2-> :END: And I would expect the following tex output:

Re: emacs really slow when inserting a new source code block

2022-10-05 Thread Luca Ferrari
On Thu, Sep 29, 2022 at 4:19 PM Ihor Radchenko wrote: > Or you can bisect the config to hunt for less obvious issues using > https://github.com/Malabarba/elisp-bug-hunter > I'm preparing a new machine right now, so I will plug into the emacs configuration one bit ata time and see when the