Hi Ihor, On 2023-02-26 at 04:18 -08, Ihor Radchenko <yanta...@posteo.net> wrote: >> +;; Reuse the variable assignment code from ob-shell >> +(defalias 'org-babel-variable-assignments:screen >> + 'org-babel-variable-assignments:shell) > > This will work, but you are relying on implementation detail of > ob-shell.el. A more safe approach would be calling > org-babel-variable-assignments:LANG depending on the :cmd header arg. > For :cmd bash - org-babel-variable-assignments:bash, for :cmd fish - > org-babel-variable-assignments:fish. > > To archive this, you can define a full > org-babel-variable-assignments:screen function that does what I > described.
You're pushing my lisp skills here. Which is fine, but I might need some help. In ob-shell I see (defcustom org-babel-shell-names '("sh" "bash" "zsh" "fish" "csh" "ash" "dash" "ksh" "mksh" "posh") Should I create a function that, using case statement or something similar, checks for each of these and calls that flavor? I think I could do that. But if I also see org-babel-shell-initialize in ob-shell that looks like it creates defaliases for each of these to (org-babel-execute:shell) and #'org-babel-variable-assignments:shell. I'm not sure how that is very different from what I've done. I'm not sure what to do here, nor how to do what you suggest (yet - I've only read it so far, not spent a lot of time experimenting and searching, so I may be able to implement what I think is a solution to what you wrote, but I doubt it'll be what you expect). -k.