vim

For discussion on all things (neo)vim.
2020-02-11T00:26:54.063Z

does this work with the socket repl support in vim-iced?

2020-02-11T04:24:41.063200Z

@sogaiu No. This feature is only for nREPL currently:disappointed_relieved:

2020-02-11T04:25:03.063400Z

ah, thanks for the clarification.

NoahTheDuke 2020-02-11T20:23:46.066100Z

I'm trying out vim-iced, and it's pretty dang slick, but I'm running into trouble running tests on a given file

NoahTheDuke 2020-02-11T20:24:36.067100Z

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

NoahTheDuke 2020-02-11T20:27:35.067800Z

running a specific test with <Leader>tt works, but it doesn't clear the 🔥 emoji in the gutter

2020-02-11T22:00:50.068600Z

@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.

NoahTheDuke 2020-02-11T22:35:08.070Z

evaluate with <Leader>et? Yes. <L>tp still references now fully deleted tests and doesn't test anything new

NoahTheDuke 2020-02-11T22:36:31.070400Z

Also doesn't change if I use <L>eb or <L>eB to reload the whole file

2020-02-11T22:53:40.071Z

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.

NoahTheDuke 2020-02-11T23:08:31.071300Z

that worked

NoahTheDuke 2020-02-11T23:08:34.071500Z

thank you!

👍 1