protorepl

tdantas 2018-02-13T21:55:38.000605Z

@seancorfield thanks , working great !

tdantas 2018-02-13T21:56:30.000414Z

how do you switch namespace easily with proto-repl

tdantas 2018-02-13T21:56:49.000119Z

I’m typing (in-ns namespace)

seancorfield 2018-02-13T21:57:34.000138Z

Often just opening command palette (which is cmd-shift-p on a Mac) and starting to type is enough to find most commands (and their key bindings) but the command name for "jump to definition" is non-obvious (it's "open file containing var").

seancorfield 2018-02-13T21:58:18.000479Z

@oliv I try, as much as possible, to avoid typing in the REPL altogether. I type in a file window and evaluate code as I go (per Stu Halloway's excellent REPL-Driven Development talk).

tdantas 2018-02-13T21:59:27.000373Z

nice ! ^^ :thumbsup: going to find RDD talk now

tdantas 2018-02-13T21:59:44.000080Z

https://vimeo.com/223309989

tdantas 2018-02-13T22:00:05.000624Z

thanks

seancorfield 2018-02-13T22:00:07.000247Z

When you do that, the REPL automatically switches to whichever buffer you're in when you evaluate a form (cmd-opt-b for a form, cmd-opt-shift-b for a top-level form).

tdantas 2018-02-13T22:00:26.000097Z

perfect !