Elixir Livebook with VIM shortcuts?

Viewed 128

I love Elixir's Livebook efforts. It is great for quick ideas, tests, ... or in my case still learning about Elixir.

One thing I seriously miss are my VIM ways of navigating through the code. Is any support available?

1 Answers

I don't think there's anything available by default, no. The editor used in Livebook is Monaco, for which I found https://github.com/brijeshb42/monaco-vim. There may be others.

Some assembly required.

...by which I mean that you'll probably need to fork Livebook to add it. I can see a number of people being interested, though.

Related