Live data from Hacker News

Ask HN: What code editors or IDEs are easily scriptable?

news.ycombinator.com

1–10 of 68 posts

Ask HN: What code editors or IDEs are easily scriptable?

#1
I want to build a deeper relationship with an editor or IDE that's designed to be extended or scripted.

I'd prefer to use an everyday-language I work in for scripting, which rules out Vimscript, Lua or Lisp. I'd be most happy with any of Ruby, Python, Go or Rust. Ideas?

Re: Ask HN: What code editors or IDEs are easily scriptable?

#6
Kakoune _barely_ has a scripting language. It has essentially a set of commands and some basic string substitution, one of which will let you drop to a shell (something akin to substitute this string with the result of evaluating its contents through bash). With this you can write your scripts in whatever language you like. My plugins are almost all in Rust, some are in bash.

Re: Ask HN: What code editors or IDEs are easily scriptable?

#10
post #2

Do VScode and Jetbrains's plug-ins /extensions satisfy your scripting needs? They're in JS and Java, I think.

In my experience, VS Code’s extension system really shines here. There are also boilerplate repos out there to get started.
Post reply on HN