does this work with the socket repl support in vim-iced?
@sogaiu No. This feature is only for nREPL currently:disappointed_relieved:
ah, thanks for the clarification.
I'm trying out vim-iced, and it's pretty dang slick, but I'm running into trouble running tests on a given file
I write a failing test, test the file with <Leader>tp
, fix the test, and retest the file with <Leader>tp
, but the ran test isn't updated
running a specific test with <Leader>tt
works, but it doesn't clear the 🔥 emoji in the gutter
@nbtheduke Did you evaluate the fixed test form?
<Leader>tt
evaluate the current form automatically, but <Leader>tp
don't because the test target is the whole project.
evaluate with <Leader>et
? Yes. <L>tp
still references now fully deleted tests and doesn't test anything new
Also doesn't change if I use <L>eb
or <L>eB
to reload the whole file
Once evaluated a form, the test var exists in your REPL even if you fully deleted.
Could you try <Leader>eU
to undefine all, and <Leader>eb
to re-evaluate current buffer.
that worked
thank you!