IntelliJ -> Tools -> IDE Scripting Console -> Kotlin
Answered
One of my favorite features of Emacs is the ability to:
1. write some elisp code
2. hit C-x C-e, and
3. extend the editor itself
I believe two possible approaches to this "dynamic reprogrammability" are:
1. live-plugin: https://github.com/dkandalov/live-plugin and
2. ide scripting console: somewhat documented at https://gist.github.com/gregsh/b7ef2e4ebbc4c4c11ee9 (unfortunately only Groovy + Clojure)
my question:
Are there kotlin examples for using IDE Scripting Console? If so, where are they?
Thanks!
Please sign in to leave a comment.
Hello,
Blog post with description and examples is planned, but not released yet. Feel free to ask for an example in comments: https://gist.github.com/gregsh/b7ef2e4ebbc4c4c11ee9
Hi Yaroslav,
I believe that link is identical to #2 in the original post. Furthermore, it's only clojure + groovy -- there are no Kotlin examples there.
Yes, it's the same link. I just meant that you could ask for an example in comments.
The gist linked above is nowhere near enough for someone to actually start writing even the simplest automation. It's usable just for experienced plugin developers that are already familiar with the API.