Re: org-mode with picolisp

2022-12-04 Thread Thorsten Jolitz
Hi List, I did some tests now with PIL21 in Org-mode on Emacs doom. I did not touch picolisp-mode.el or inferior-picolisp.el from my repo yet tj64/picolisp-mode: GNU Emacs mode for PicoLisp programming (github.com) However, and to my surprise, I had to do

Re: org-mode with picolisp

2022-11-30 Thread Thorsten Jolitz
Yes, and I added eedit.l to picolisp iirc, so one could chose between vim and emacs keybindings in the repl line editor. Inferior-picolisp.el is responsable for the picolisp repl in Emacs, so when starting it the user could choose between the 2 editing styles. You don't necessary see that repl in

Re: org-mode with picolisp

2022-11-30 Thread Alexander Burger
On Wed, Nov 30, 2022 at 03:25:31PM -0600, Galaxy Being wrote: > The old picolisp file structure had ~/.../lib/edit.l and .../lib/el which > is no longer the case. That functionality went somewhere else? And yet both lib/edit.l was an in-memory editor for symbols in pil64, which called Vim

Re: org-mode with picolisp

2022-11-30 Thread Galaxy Being
b/eedit.l" (cdr cmdlist)) (cons "@lib/edit.l" (cdr cmdlist)) ) ) ) )... (typo?) appears in both inferior*.el files. I don't know what this is about or what the new way of doing it might be. On Wed, Nov 30, 2022 at 3:02 PM Thorsten Jolitz wrote: > Hi, > I'm more or

Re: org-mode with picolisp

2022-11-30 Thread Thorsten Jolitz
Hi, I'm more or less responsable for PicoLisp in org-mode. Before diving any deeper, note the readme of GitHub - flexibeast/plisp-mode: PicoLisp support for Emacs <https://github.com/flexibeast/plisp-mode> : "The plisp-mode in this package has been built from scratch, and is not ba

Re: org-mode with picolisp

2022-11-30 Thread Galaxy Being
The problem might be with plisp-mode. It gives the same error (on "send definition and go" i.e., start REPL and hand code off to it), and I think ob-picolisp.el relies on plisp. In any case, you've changed your files around and there is no edit.l anymore. Here's my .emacs section for picolisp. ;;

Re: org-mode with picolisp

2022-11-29 Thread Alexander Burger
Hi Lawrence, > Having trouble with getting picolisp to work with org-mode Babel code > blocks. I'm guessing it's because I have an out of date ob-picolisp.el > which I had to scrounge on the Internet. (Got one latest 2021.) Sorry, yes. Org-Mode is not ported to Pil21 (yet). Let us investigate a

org-mode with picolisp

2022-11-29 Thread Galaxy Being
Having trouble with getting picolisp to work with org-mode Babel code blocks. I'm guessing it's because I have an out of date ob-picolisp.el which I had to scrounge on the Internet. (Got one latest 2021.) I run this code #+BEGIN_SRC picolisp :session *pl1* (+ 1 2 3) #+END_SRC #+RESULTS: : No It