Re: [PATCH] Re: what is the purpose of "This link has already been stored"?

2023-07-20 Thread Samuel Wales
On 7/15/23, Ihor Radchenko wrote: > Applied, onto main. > https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=c0dbcf361 thank you! will this reach bugfix too? -- The Kafka Pandemic A blog about science, health, human rights, and misopathy: https://thekafkapandemic.blogspot.com

Re: [BUG] [PATCH] Avoid interaction in test ~ob-tangle/detangle-false-positive~

2023-07-20 Thread Evgenii Klimov
Ihor Radchenko writes: > Evgenii Klimov writes: > >> Test ~ob-tangle/detangle-false-positive~ asks for confirmation to kill >> the buffer, connected to testing/examples/babel.org file, that is >> modified during the couse of the test. >> >> Way to reproduce the bug (from projects main dir): >

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Evgenii Klimov
Hi Vlastimil Vondra writes: > Perfect, org-reveal is working as well, haven't known about that! But it > would be good that org-reveal is called automatically before org-cycle, > because when > going through the task list, I'm just expanding by tab. It is not really > convenient to use tab

Re: [BUG] SPACE jumps to tag in header line after hidden emphasis marker [9.7-pre (release_9.6.7-562-g5b6268 @ /home/jschmidt/work/org-mode/lisp/)]

2023-07-20 Thread Jens Schmidt
On 2023-07-18 10:13, Ihor Radchenko wrote: No, it is space. In particular, it is `org--align-tags-here' + some bug in Emacs that screws up column computation. https://debbugs.gnu.org/cgi/bugreport.cgi?bug=64696 FWIW the third test yields ■ Warning (emacs): Test #3:: ’word’ is hidden

Re: org-bibtex manual

2023-07-20 Thread Ypo
No, I mean customizing the generated headline. Instead of just title, to be like: * Author (year) /Title/. Publisher Bests El 20/07/2023 a las 21:00, Ihor Radchenko escribió: Ypo writes: Then, is it not possible to customize the entry generated with org-bibtex-create? You mean fields?

Re: org-bibtex manual

2023-07-20 Thread Ihor Radchenko
Ypo writes: > Then, is it not possible to customize the entry generated with > org-bibtex-create? You mean fields? Everything is defined in `org-bibtex-types', but it is not currently a defcustom. I see no problem adding user types. -- Ihor Radchenko // yantar92, Org mode contributor,

Re: org-bibtex manual

2023-07-20 Thread Ypo
Hi Ihor. Then, is it not possible to customize the entry generated with org-bibtex-create? Bests >/#+begin_src emacs-lisp/ >/(defun my-org-bibtex-headline-format (entry)/ >/  "Custom function to generate the headline text for org-bibtex-write."/ >/  (let* ((title (cdr (assoc :title

Re: [BUG] WORG example for ob-lilypond is no longer working as described (was: Moving some lisp/ob-*.el files to org-contrib - your advice?)

2023-07-20 Thread Jonathan Gregory
On 20 Jul 2023, Ihor Radchenko wrote: With your patch, I cannot produce png output. The file is just not created: [...] You're right. Thanks for the feedback. I've made some changes and was able to produce the correct results using pdf, eps, and png (tested with 2.20.0 and 2.24.1). I think

Re: Is there a better (built-in) way to insert an org link with title as description?

2023-07-20 Thread Max Nikulin
On 19/07/2023 19:06, Arthur Miller wrote: I want to auto insert a title from an HTML page as description for an org link in my notes. (defun org-link-from-clipboard () ... (url-retrieve url (lambda (buffer) (goto-char (point-min)) (when (re-search-forward

Re: Is there a better (built-in) way to insert an org link with title as description?

2023-07-20 Thread Ihor Radchenko
Arthur Miller writes: > I want to auto insert a title from an HTML page as description for an org > link in > my notes. I stumbled upon some old message by Miro Bezjak on this list: > > https://lists.gnu.org/archive/html/emacs-orgmode/2012-09/msg01435.html > > I have seen the replies, but I am

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Vlastimil Vondra
Perfect, org-reveal is working as well, haven't known about that! But it would be good that org-reveal is called automatically before org-cycle, because when going through the task list, I'm just expanding by tab. It is not really convenient to use tab and when reaching error (or no unfold) then

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Ihor Radchenko
[ Adding Org mailing list back to CC ] Vlastimil Vondra writes: > Sorry, I think I've sent the reply in wrong manner. I was trying to reply > to this conversation https://list.orgmode.org/87ty4b7ofr@gnu.org/t/ > where Reiner wrote that he is not able to unfold tree if folded and at the >

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Ihor Radchenko
Vlastimil Vondra writes: > Unable to unfold a folded block having point directly after the folded block I tried to reproduce the problem and I cannot. May you please provide more details? See https://orgmode.org/manual/Feedback.html#Feedback -- Ihor Radchenko // yantar92, Org mode

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Vlastimil Vondra
Hi all, I solved it by using "(org-end-of-line)" before "(org-cycle)" (defun my/org-cycle ( arg)   "adjust org-cycle"   (interactive "P")   (org-end-of-line)   (org-cycle arg)   ) I hope it could be useful to somebody. Best regards, Vlastimil Vondra

Re: [PATCH] org-clock-sum: Rewrite function to improve performance

2023-07-20 Thread Ihor Radchenko
Morgan Smith writes: > I have a very big file with lots of clock entries and refreshing my clocktable > has become slow. Using '(benchmark-elapse (org-ctrl-c-ctrl-c))' I saw that it > took 5.660532903 seconds to refresh it! After this rewrite it only takes > 3.384914703 seconds. Not great,

Re: [BUG] WORG example for ob-lilypond is no longer working as described (was: Moving some lisp/ob-*.el files to org-contrib - your advice?)

2023-07-20 Thread Ihor Radchenko
Jonathan Gregory writes: >> I do not mind. But remember that we are talking just about an >> example file. What you are suggesting appears to be closer to >> what we might do in ob-lilypond itself, when calculating default >> layout. > > That would be even better, I agree. > > Can you test my