Re: [ANN] Org mode 9.7 is out

2024-06-29 Thread Juergen Fenn
Am 02.06.24 um 23:17 Uhr schrieb Juergen Fenn: >>> There is one more thing: My Emacs init time has got slightly longer >>> since updating to Org 9.7.1 from ~1.9 to 2.273441 seconds. I >>> re-installed Org and the depending packages, as you recommended >>> (org-contrib, org-static-blog). No more

Re: [BUG] Unexpected behaviour of TAB in table depending on font family [9.6.15 (release_9.6.15 @ /snap/emacs/current/usr/share/emacs/29.4/lisp/org/)]

2024-06-29 Thread Ihor Radchenko
Giovanni Pavolini writes: > I can confirm that in org 9.7.6 the behaviour for the font "Ubuntu" is the > expected one. Thanks for the update! Closing. Canceled. -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at . Support Org development at

Re: [BUG] Unexpected behaviour of TAB in table depending on font family [9.6.15 (release_9.6.15 @ /snap/emacs/current/usr/share/emacs/29.4/lisp/org/)]

2024-06-29 Thread Giovanni Pavolini
Thanks Ihor for your quick response. I can confirm that in org 9.7.6 the behaviour for the font "Ubuntu" is the expected one. On Sat, 29 Jun 2024 at 08:34, Ihor Radchenko wrote: > Giovanni Pavolini writes: > > > I wanted to customize my default font by `(custom-set-faces '(default > >

Re: Reference to non-existent variable `header-arguments-alist'

2024-06-29 Thread Ihor Radchenko
Stefan Kangas writes: >>> ./lisp/org/ob-core.el:2517:`header-arguments-alist' see the docstring for >> >> It is not referring to a variable, but to ARGUMENTS slot in the INFO >> list. INFO is expected to have the same format as the return value of >> `org-babel-get-src-block-info'. > > So would

Re: Reference to non-existent variable `header-arguments-alist'

2024-06-29 Thread Stefan Kangas
Ihor Radchenko writes: > Stefan Kangas writes: > >> There is a reference to `header-arguments-alist', but I can't find any >> such variable in the tree. >> >> ./lisp/org/ob-core.el:2517:`header-arguments-alist' see the docstring for > > It is not referring to a variable, but to ARGUMENTS slot

Re: bash source code block: problem after ssh commands

2024-06-29 Thread Max Nikulin
On 18/11/2023 15:04, Max Nikulin wrote: On 17/11/2023 17:17, Ihor Radchenko wrote: I see bash vs. dash difference with public key authorization, so no need for password prompts. I have not figured out how to construct an example without ssh since this command *may* read stdin, but does not do

Re: [PATCH] Ability to specify :html-head as a function

2024-06-29 Thread Nathan Nichols
Ok, here's a patch. Please let me know if this is acceptable or not. On Sat, Jun 22, 2024 at 8:33 AM Ihor Radchenko wrote: > Nathan Nichols writes: > > >> This looks like a copy-paste of `org-element-normalize-string'. > >> Why not simply calling `org-element-normalize-string'? > > > > I

Re: Reference to non-existent variable `header-arguments-alist'

2024-06-29 Thread Ihor Radchenko
Stefan Kangas writes: > There is a reference to `header-arguments-alist', but I can't find any > such variable in the tree. > > ./lisp/org/ob-core.el:2517:`header-arguments-alist' see the docstring for It is not referring to a variable, but to ARGUMENTS slot in the INFO list. INFO is expected

Re: [BUG] Unexpected behaviour of TAB in table depending on font family [9.6.15 (release_9.6.15 @ /snap/emacs/current/usr/share/emacs/29.4/lisp/org/)]

2024-06-29 Thread Ihor Radchenko
Giovanni Pavolini writes: > I wanted to customize my default font by `(custom-set-faces '(default > ((t(:family "Ubuntu")`. Then, after `M-x org-table-create` the TAB > started creating a cell to the left of the one it should have jumped to > (see a video here (webmd video of the

Reference to non-existent variable `header-arguments-alist'

2024-06-29 Thread Stefan Kangas
There is a reference to `header-arguments-alist', but I can't find any such variable in the tree. ./lisp/org/ob-core.el:2517:`header-arguments-alist' see the docstring for

Re: [PATCH] Highlight ANSI sequences in the whole buffer (was [PATCH] ANSI color on example blocks and fixed width elements)

2024-06-29 Thread Ihor Radchenko
Ihor Radchenko writes: > Nathaniel Nicandro writes: > >> Feedback appreciated! > > Thanks for the update! > ... >> I've finally implemented a solution to what I've discussed previously, > ... It has been a while since the last update in this thread. Nathaniel, may I know if you are still

Re: [PATCH] initialize org-babel-tangle-lang-exts to nil

2024-06-29 Thread Tom Gillespie
> More accurate approach would be using (eval-after-load 'ob-tangle > ...). This is what is being done in WIP branch that addresses many > similar problems across Org mode: > https://git.sr.ht/~yantar92/org-mode/log/feature/refactor-deps-v2 >

Re: [PATCH] initialize org-babel-tangle-lang-exts to nil

2024-06-29 Thread Ihor Radchenko
Tom Gillespie writes: >Here is a fix for bad init values for org-babel-tangle-lang-exts. > Details in the patch commit message. > ... > Subject: [PATCH] initialize org-babel-tangle-lang-exts to nil > ... > org-bable-tangle-lang-exts should be initialized to nil and not as a > void variable,