Something similar: Fennel (<a href="https://fennel-lang.org/" rel="nofollow">https://fennel-lang.org/</a>) is a lisp that compiles into Lua, which neovim can use as plugins, so you can write neovim plugins in a lisp. Aniseed (<a href="https://github.com/Olical/aniseed">https://github.com/Olical/aniseed</a>) makes this really easy.<p>Aniseed is also used by Conjure (Interactive development environment for neovim, used for evaluating Fennel code inside of neovim), which is also made by the same author. Really great plugin for doing Clojure development with neovim. <a href="https://github.com/Olical/conjure">https://github.com/Olical/conjure</a>
For maximum effect, read the following in Tim’s distinctive voice:<p>“Is this a joke?<p>If you mean the 6,000 lines of working code, then no, I poured hundreds upon hundreds of very serious hours into that. But if you're referring to the fact it's woefully underdocumented, adds considerable overhead to an already slow host platform, and ultimately unlikely to gain any traction, then yeah, probably.”
This reminds me of a vim koan[0]:<p>> Master Pope once dreamt he was an Emacs user. When he awoke, he exclaimed:<p>> “I do not know if I am Tim Pope dreaming I am an Emacs user, or an Emacs user dreaming I am Tim Pope!”<p>---<p>0: <a href="https://blog.sanctum.geek.nz/vim-koans/" rel="nofollow">https://blog.sanctum.geek.nz/vim-koans/</a>
Is there anything like this on the works for Vimscript 9?<p>Tangentially related: asking around in fora and in person, I was surprised to see that many plugin writers have had very good experience with the new Vimscript, and even prefer it to the more general purpose Lua (I was expecting the opposite). I myself have not used any Vimscript, but I am tempted to take a look at the new language.
ELVM might be a related project, which takes C code and compiles to various languages, including VIM.<p><a href="https://github.com/shinh/elvm">https://github.com/shinh/elvm</a>
How difficult is it to write an "Emacs Lisp" interpreter in a foreign framwork like neovim? Wouldn't this basically convert any IDE into Emacs if the user wants it?<p>I mean, I know elisp is not the most efficient of Lisp compilers but doing so for a new IDE opens the door for all available codes and plugins people have written for emacs throughout the years.