Replies: 2 comments 1 reply
-
We should be able to do that, yeah. It means adapting The client API also supports a So yeah, we could quite easily check for both in a particular order and make some decision about what the current context for the current document is. Maybe even base it on where in the file your cursor is right now for more contextual evals? |
Beta Was this translation helpful? Give feedback.
-
I don't know much about Common Lisp but some research provided some help:
I've also tried out https://github.com/monkoose/nvlime to see how the interaction with a Common Lisp REPL works. It does switch packages when it evaluates an |
Beta Was this translation helpful? Give feedback.
-
When talking with the REPL, common-lisp needs to define a context to operate in. This is currently done by looking for the most recent
(defpackage __context__)
. Does it make sense to instead look for(in-package __context__)
? Or maybe either? (Not sure if that's possible with lua patterns)Beta Was this translation helpful? Give feedback.
All reactions