Re: Using org-latex-preview in other major modes

2024-04-07 Thread Karthik Chikmagalur
> Abstracting away previews is certainly welcome. > RMS explicitly asked Org mode team to work towards this goal: > https://list.orgmode.org/e1kikxv-0007iy...@fencepost.gnu.org/ I agree with RMS about this, and this was on our minds when we wrote org-latex-preview. The basic previewing process

Re: Using org-latex-preview in other major modes

2024-04-07 Thread Karthik Chikmagalur
Hi Tony, Just tried it out, it's very promising! Thanks for taking the initiative on this. > I've prodded the code a little bit and, mostly just following [1], > managed to implement basic previews in a relatively straightforward > fashion. Attached is a proof-of-concept—aptly named >

[BUG] org-element-at-point warning with org-timer in agenda [9.7-pre, release_N/A-N/A-b45b39 @ /home/bhavin/.emacs.d/elpa/org-9.7pre0.20240405.140341/, ]

2024-04-07 Thread Bhavin Gandhi
When running org-timer-set-timer (bound to `;') in an Org agenda buffer, I get following warning: ⛔ Warning (org-element): ‘org-element-at-point’ cannot be used in non-Org buffer # (org-agenda-mode) I tried to understand the code of org-timer-set-timer. It runs (org-entry-get nil

Re: Let `org-element-at-point` or `org-element-context` return element type "tags" when point on tags.

2024-04-07 Thread Ihor Radchenko
"Christopher M. Miles" writes: > When I move point on the headline tags position. I evaluate > `(org-element-at-point)` or `(org-element-context)`, both return element > type is `(headline )`. I hope those two functions can return more > explicit element type like "tags". > I tried to find

Re: Using org-latex-preview in other major modes

2024-04-07 Thread Ihor Radchenko
Tony Zorman writes: > I'm interested in adjusting org-latex-preview to work in other major > modes (most notably LaTeX-mode itself, so one can get rid of preview.el). > On the advice of Karthik (Cc'd) I'll move the discussion from private > mails to this list, so more people who might be

Re: [POLL] Dealing with +1m/y repeaters when jumping to impossible date (should 05-31 +1m be 07-01 or 06-30?)

2024-04-07 Thread Ihor Radchenko
Max Nikulin writes: > I think the following should be taken into account: behavior of popular > calendar applications, specifications they implement, libraries that > likely used to create such applications. ### what happens in google calendar if you repeat task monthly at 31st day of month

Re: [PATCH] lisp/org-element.el: Add repeater-deadline support to org-element

2024-04-07 Thread Ihor Radchenko
Morgan Smith writes: > See two patches attached. One for org and one for worg. Tests still > pass on my end. Thanks! >> In addition to changes in Org git, you also need to update >> https://orgmode.org/worg/org-syntax.html#Timestamps and >>

Re: [BUG] Org agenda misbehaves in a side window [9.5 (9.5-g0a86ad @ /home/zellerin/.emacs.d/elpa/org-9.5/)]

2024-04-07 Thread Ihor Radchenko
Ihor Radchenko writes: > Confirmed. > >> Other failing commands are for example changes of todo state in agenda >> buffer. >> >> The reason seems that org-agenda-get-restriction-and-command calls >> delete-other-window; however, this is not something user observes and >> expects as effect of

Re: [PATCH] org-id: implement arbitrary cross-file references

2024-04-07 Thread Ihor Radchenko
Ihor Radchenko writes: > It has been a couple of months since the last activity in this thread. > May I know if you are still interested to work on this feature? No followup has been received within over half a year. I am thus closing this ticket. Canceled. Feel free to re-open if there is any

Let `org-element-at-point` or `org-element-context` return element type "tags" when point on tags.

2024-04-07 Thread Christopher M. Miles
When I move point on the headline tags position. I evaluate `(org-element-at-point)` or `(org-element-context)`, both return element type is `(headline )`. I hope those two functions can return more explicit element type like "tags". I tried to find this type API function in existing

Using org-latex-preview in other major modes

2024-04-07 Thread Tony Zorman
Hi, I'm interested in adjusting org-latex-preview to work in other major modes (most notably LaTeX-mode itself, so one can get rid of preview.el). On the advice of Karthik (Cc'd) I'll move the discussion from private mails to this list, so more people who might be interested can join in. I've