Fwd: bug#57213: 27.1; statistics of repeated tasks

2022-08-14 Thread Ihor Radchenko
Forwarding from debbugs. Abhisek, we usually discuss Org development in a dedicated mailing list. See https://orgmode.org/manual/Feedback.html As for your suggestion, the idea is reasonable. Patches are welcome :) Note that statistic cookies have a very specific format [NN%] or [N/M]. I guess

Re: Bug? org-id-find not finding some IDs

2022-08-14 Thread Jack Kamm
Ihor Radchenko writes: > Applied onto main via 8f5bf1725. > https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=8f5bf172556564df89fb16ce8ecec68c5b7f0221 My sincere apologies, but after a bit of testing, I found that my requested change had some unforeseen consequences, and I don't

[PATCH v2] ol-info: Define :insert-description function

2022-08-14 Thread Max Nikulin
On 06/08/2022 14:00, Ihor Radchenko wrote: Max Nikulin writes: +If LINK is not an info link then DESC is returned." + (or (org-string-nw-p desc) + (let* ((file-node (org-info-link-file-node link)) + (file (car file-node)) + (node (cadr file-node))) pcase-let

Re: how to beamer export overlay figure?

2022-08-14 Thread Fraga, Eric
On Sunday, 14 Aug 2022 at 16:30, Max Nikulin wrote: > ox-latex may wrap \includegraphics into various environments to add > caption, center figure, etc. Shouldn't :overlay affect all such stuff, > not just the image? I guess so, in principle. However, this is beamer so some of these don't apply

Re: Bug: org-store-link uses CUSTOM_ID instead of target point [9.4.4 (release_9.4.4 @ /usr/share/emacs/27.2/lisp/org/)]

2022-08-14 Thread Max Nikulin
On 06/11/2021 19:51, Max Nikulin wrote: On 06/05/2021 19:41, Bastien wrote: Fr Ml writes: I have a problem with the function org-store-link it doesn't work as described in the documentation: https://orgmode.org/manual/Handling-Links.html "For Org files, if there is a '<>' at point, the link

Re: [PATCH v2] Re: Adding target and custom id links doesn't ask for description

2022-08-14 Thread Max Nikulin
On 13/08/2022 12:01, Ihor Radchenko wrote: See the updated version of the patch attached. It works on my side. --- a/lisp/ol.el +++ b/lisp/ol.el @@ -1577,10 +1577,8 @@ (defun org-store-link (arg interactive?) t (setq link (plist-get org-store-link-plist :link))

Re: how to beamer export overlay figure?

2022-08-14 Thread Max Nikulin
On 13/08/2022 18:39, Fraga, Eric wrote: + ((string-match "include\\(graphics\\|svg\\)\\([[{]?\\)" latex-link) + ;; check for overlay specification and insert if present + (replace-match +(format "include\\1%s\\2" +

Re: Suggestion: default path for attachments

2022-08-14 Thread Ypo
Love it. Thanks! El 14/08/2022 a las 9:36, Ihor Radchenko escribió: Ihor Radchenko writes: See org-global-properties-fixed Or rather org-global-properties, which is an actual user customization.

Re: Suggestion: default path for attachments

2022-08-14 Thread Ihor Radchenko
Ihor Radchenko writes: > See org-global-properties-fixed Or rather org-global-properties, which is an actual user customization. -- Ihor Radchenko, Org mode contributor, Learn more about Org mode at https://orgmode.org/. Support Org development at https://liberapay.com/org-mode, or support my

Re: Suggestion: default path for attachments

2022-08-14 Thread Ihor Radchenko
Ypo writes: > Could it be possible to customize a default folder for attachments? > > > - I am using inheritance (org-attach-use-inhetirance). > > - But in the headlines in the first level, the :DIR: property needs to > be set by hand, always. > > - I would like to have a default attachment

Suggestion: default path for attachments

2022-08-14 Thread Ypo
Could it be possible to customize a default folder for attachments? - I am using inheritance (org-attach-use-inhetirance). - But in the headlines in the first level, the :DIR: property needs to be set by hand, always. - I would like to have a default attachment folder which would be

Re: [PATCH v2] org-contrib/babel/languages/ob-doc-plantuml.org: ASCII output

2022-08-14 Thread Ihor Radchenko
Joseph Turner writes: > Document the new functionality of ob-plantuml to insert ASCII diagrams > directly in the buffer. > --- > .../babel/languages/ob-doc-plantuml.org | 57 +++ > 1 file changed, 46 insertions(+), 11 deletions(-) Thanks! Applied onto master via e68a7903.