https://github.com/orgs/neovim/repositories?type=all&q=Clien...
Re: Ask HN: What code editors or IDEs are easily scriptable?
#11Neovim. You can use Lua, but you can also use your language of choice via msgpack.
11–20 of 68 posts
https://github.com/orgs/neovim/repositories?type=all&q=Clien...
I will say that Lua is extremely easy to pick up, and as far as hacking on an IDE I think that simplicity might make it an ideal language.
Personally I use macros in an editor for "text manipulation", and drop to Python/sed/awk for "text processing". I don't find I have a need for anything in-between.
Plain old vim doesn't only do vimscript, you can also script it in Perl, Python, TCL, Lua and maybe one more I cannot remember. See e.g. this python howto: http://codeseekah.com/2012/03/04/vim-scripting-with-python-l...