Re: [PATCH] Re: Q: org-export-headline-levels doc problem?

2025-04-29 Thread David Masterson
Ihor Radchenko writes: > David Masterson writes: > #+begin_example -,* Top level headline +,* Top (or first) level headline >>> >>> IMHO, this sounds like "top" and "first" are two different things. Maybe >>> it is my non-native English. >> >> In keeping with the rest of the exam

Re: [PATCH] org-element.el; significant optimizations for org-element--interpret-affiliated-keywords

2025-04-29 Thread Dwarshuis, Nathan J
> Another effect of the patch exceeding 15LOC is that I now need you to go > through the copyright assignment before I can accept it. > Would you be interested to do it? > See https://orgmode.org/worg/org-contribute.html#copyright Yes but let me check a few things first

[PATCH] lisp/org-capture.el: cancel new clock when capture is killed

2025-04-29 Thread Bibek Panthi
When a clock is started due to :clock-in t, it is saved when :clock-keep is t. But this should only be done when capture is finalized and not when killed/aborted. This change adds a check to ensure that the clock is not kept when the capture was aborted. From 1024e23a4bb3962f5446a1cc705035a0f8e3

Re: Select a region and yank a URL to create a link

2025-04-29 Thread Ihor Radchenko
Ihor Radchenko writes: > That looks like a good optional addition. > >> If you're open to a patch, how do you like my implementation in the linked >> package? I'm happy to take a different approach if you prefer something else. >> ... >> [2] https://github.com/ryanprior/yank-dwim/blob/main/yank-

Re: [Feature Request] Adding custom indices for Texinfo export (and maybe unaffiliated dual-value keywords?)

2025-04-29 Thread Ihor Radchenko
Ihor Radchenko writes: >> Texinfo allows one to create new named indices using `@defindex NAME`, >> which can then be used via `@NAMEindex`. I have been experimenting with >> different ways of supporting this. > > Looks like a reasonable addition. > CCing the new ox-texinfo maintainer. He migh

Re: [FR] org-read-date-style

2025-04-29 Thread Ihor Radchenko
Ihor Radchenko writes: >> It would support at least =american= (M/D and M/D/Y) and =european= (D/M >> and D/M/Y) options. > > I do not mind such an addition. It has been a while since the last update in this thread. May I know if you are still interested in the patch you were working on? Do you

Re: [PATCH] Add code element inside src-block in ox-html

2025-04-29 Thread Nikolaos Chatzikonstantinou
On Sun, Apr 27, 2025, 4:48 AM Ihor Radchenko wrote: > Nikolaos Chatzikonstantinou writes: > > >> So, I think this is probably slightly unusual in practice, but also > fine to do. Consistency with the klipsify version seems worth it, > regardless of which way we go. > > > > In HTML they'd need a

Re: Question reg. behavior of shell vs. zsh vs. sh code blocks.

2025-04-29 Thread Ihor Radchenko
Ravi Kiran Chilakapati writes: > I have the following org file, and I'd like to understand this > behavior better. Specifically, I'm curious why my `#+RESULTS:` blocks > only returns the output when I use `sh` code blocks, as opposed to > when I use `shell` or `zsh`. > ... Matthew, may you take

Re: Bug: Abrupt window-start changes with hidden emphasis markers and display-line-numbers-mode enabled

2025-04-29 Thread Ihor Radchenko
Ihor Radchenko writes: >> May you try to reproduce the problem on Emacs 30 pretest? > > FYI, I am unable to reproduce on the latest Emacs master. Canceled. -- Ihor Radchenko // yantar92, Org mode maintainer, Learn more about Org mode at . Support Org development at

#18 [[bbb:OrgMeetup]] on Wed, May 14, 19:00 UTC+3

2025-04-29 Thread Ihor Radchenko
Dear all, Another OrgMeetup will be scheduled on the second Wednesday of May, in two weeks. Previous meetup notes: https://list.orgmode.org/87ecxkb1pv.fsf@localhost/T/#u WORG page with earlier notes and meetup schedule: https://orgmode.org/worg/orgmeetup.html URL: https://bbb.emacsverse.org/roo

Re: Question about getting properties of org entry

2025-04-29 Thread Ihor Radchenko
Doerthous writes: >> Since you are changing the public variable representation, you should >> (1) document the breaking change in etc/ORG-NEWS; (2) Update the >> docstring. > > A grep in codebase give me many references of `org-id-locations', which > indicates that this Enhance Request may involv

Question reg. behavior of shell vs. zsh vs. sh code blocks.

2025-04-29 Thread Ravi Kiran Chilakapati
Hello, I have the following org file, and I'd like to understand this behavior better. Specifically, I'm curious why my `#+RESULTS:` blocks only returns the output when I use `sh` code blocks, as opposed to when I use `shell` or `zsh`. I already [saw this post](https://mail.gnu.org/archive/html/e

Differences in GNU ELPA Org-mode version

2025-04-29 Thread Bruno Cardoso
Hello everyone, Last year I asked about a template expansion feature in Org capture. This patch was then applied: https://lists.nongnu.org/archive/html/emacs-orgmode/2024-06/msg00057.html I recently noticed that it stopped working. As I've moved from straight.el to package.el, I thought I'd

Re: Question about getting properties of org entry

2025-04-29 Thread Doerthous
Ihor Radchenko writes: > > (when pos ...) will be more clean. > changed. >> +(when (and (null where) file) >>(setq where (org-id-find-id-in-file id file markerp))) >> (unless where >>(org-id-update-id-locations nil t) >>(setq file (org-id-find-id-file id)) >>