Remix.run Logo
busfahrer 5 hours ago

For vim users, there's vim-slime:

https://github.com/jpalardy/vim-slime

I don't know if it's as powerful as the real thing, but it allows you to "send" your current vim line or paragraph to a tmux instance running a lisp interpreter, essentially. Very useful.

iroddis an hour ago | parent | next [-]

+1 for vim slime. It’s not only amazing for programming in REPL languages. Since you can send anything from the buffer to another pane, it can be used to execute commands (send some rows from a cookbook to a remote shell), copy and paste segments of a local file to a remote source, and lots of other things. It’s a great example of doing something simple (send selections to another tmux/screen pane) that can be used in all kinds of useful ways. Very much the unix philosophy.

phplovesong 3 hours ago | parent | prev [-]

Vim slime is awesome. I use it for tinkering in languages with a repl like ocaml or javascript.

The feedback loop is probably the best in class from anything i have ever used. No IDE comes even close.