David DeSimone
David DeSimone
I'm going to keep this open only because this will be an issue for anyone running in "complete" mode if I understand this correctly.
I had a small write up on this I made a couple months ago that I need to find. Once I find it I'll include it in our documentation for...
@AndreaCorallo I found the write up: https://github.com/emacs-ng/emacs-ng/issues/94#issuecomment-761849404 I’ll include this in our docs. My logic of running initialize before we calculate anything is that JS is lazily initialized, and I...
@AndreaCorallo thank you for looking into this further. I wrote this benchmark a while ago when the only people following the project were mostly the core contributors, and obviously I...
I've been meaning to propose a feature that shows off the capabilities we get using one of the more popular deno plugins (https://github.com/webview/webview_deno), and I think this could be it....
A possible work around is to have JS set a shared variable of the result of eval, i.e. `const result = eval(line); lisp.setq(lisp.symbols.js_return, result);` OR we can write the whole...
I'd have to test it out, but it should be possible.
I've implemented a very basic evaluation minor mode with the attached module. C-j can be used to evaluate a line, with buffer and region evaluation that inserts the results into...
@yyoncho I've whipped something up based on dap (with attribution of course). It's not perfect but it works ok enough. I'm not sure the best method for distribution - if...
> hmmm, any idea ? > > ``` > error[E0308]: mismatched types > --> crates/lisp/src/list.rs:273:18 > | > 272 | pub fn cdr(self) -> LispObject { > | ---------- expected...