New source: nvim-cmp-vlime #1319
HiPhish
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have created a new source: nvim-cmp-vlime. It provides Common Lisp completions using the Vlime plugin, which is similar to Slime for Emacs.
Common Lisp is a bit weird as a language. It is very dynamic, so the way you write Lisp code is that your start a Lisp interpreter, load your project into the running image, and then as you write new code you send it over to the running Lisp process for evaluation. In a way this is similar to LSP where we also need to communicate with a remote process to get results, except that you need to send code over manually because it cannot be in an incomplete state like it can be in LSP.
Beta Was this translation helpful? Give feedback.
All reactions