Re: Connecting to an Already Running Scheme REPL with org-babel

2024-01-30 Thread Hunter Jozwiak
Ihor Radchenko writes: > Hunter Jozwiak writes: > >>>> + (host (cdr (assq :host params))) >>>> + (port (cdr (assq :port params))) >>> >>> Please declare these new scheme-specific header argument in >>> `org-babel-h

Re: Connecting to an Already Running Scheme REPL with org-babel

2024-01-29 Thread Hunter Jozwiak
On Mon, Jan 29, 2024 at 8:15 AM Ihor Radchenko wrote: > Hunter Jozwiak writes: > > > Here is a patch that provides this functionality. > > Thank you! > > > Subject: [PATCH] org-mode: allow ob-scheme to accept a remote connection. > > > > * lisp/org/

Re: Connecting to an Already Running Scheme REPL with org-babel

2024-01-29 Thread Hunter Jozwiak
Ihor Radchenko writes: > Hunter Jozwiak writes: > >> Here is a patch that provides this functionality. > > Thank you! > >> Subject: [PATCH] org-mode: allow ob-scheme to accept a remote connection. >> >> * lisp/org/ob-scheme.el (org-babel-scheme-get-rep

Re: Connecting to an Already Running Scheme REPL with org-babel

2024-01-28 Thread Hunter Jozwiak
Ihor Radchenko writes: > Hunter Jozwiak writes: > >> i am curious whether or not it is possible to connect Org babel to a >> remotely running scheme REPL, more >> specifically the Guile REPL that you get by running something like guix repl >> --listen=tcp:371

Connecting to an Already Running Scheme REPL with org-babel

2024-01-28 Thread Hunter Jozwiak
Hello, i am curious whether or not it is possible to connect Org babel to a remotely running scheme REPL, more specifically the Guile REPL that you get by running something like src_shell[:exports code]{guix repl --listen=tcp:37146} If so, what are the header arguments I need to put into place