@seancorfield thanks , working great !
how do you switch namespace easily with proto-repl
I’m typing (in-ns namespace)
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").
@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).
nice ! ^^ :thumbsup: going to find RDD talk now
thanks
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).
perfect !