Fork me on GitHub
#vim
<
2018-04-16
>
eraserhd14:04:31

There's no mention of quickfixsigns_vim in the README, FYI.

dominicm15:04:01

@eraserhd Nope, if this turns out to be something loved, I'm going to add signs directly to replant: which are more contextual. In theory, I want to be able to add signs without the quickfix, in case you are using fzf for example.

dominicm15:04:41

Right now you get W for "Failed test" and "E" for "Exception", I'd love to have "F" and "E" instead.

dominicm15:04:10

But I have been using these two together for tests & stacktraces, and it works very nicely.

eraserhd17:04:45

@dominicm I also can't run tests with Vim8 😞

dominicm17:04:35

@eraserhd did the hug rpc thing work? I'm not sure if it should automatically. Happy to take PRs to get it working, but haven't got much interest to drive that myself.

eraserhd17:04:59

I'll take a look later, but the problem seems to be unrelated.

eraserhd17:04:17

I think it has to do with the python host stuff. Is that different?

eraserhd17:04:04

Oh, it looks like that will help.

eraserhd17:04:33

Curious though... I haven't looked at it closely, but why isn't that python code part of vim-fireplace?

dominicm18:04:34

Because it's async in places, e.g. the refresh gives real-time progress.

dominicm18:04:56

I want to make the find-symbol from refactor.el async too, as it's quite slow.

dominicm18:04:26

I'm going to modify cider's test operations to be async, and that will mean I can update the quickfix as tests fail, in real-time.

dominicm18:04:41

async is going to be an increasingly bigger focus for me.