-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Neovim integration for GoCoverage #686
Conversation
@t-yuki thank you a lot for your contribution! I'm going to look at it asap. |
@t-yuki the whole handler additions are, in my opinion, not needed. I think just the fix for
It's already complex right now and the message is OK in my opionin. Tough, I'm curious about your thoughts. Let me know what you think. |
Sorry for late reply, ok, I'll resemble PR. |
… to work GoTestFunc. refs fatih#686
I wrote #695 |
Hi @t-yuki do you still want to work on this? If yes could you please again rebase it? I'm more than happy to review it just let me know please! Thanks :) |
…lback for callers of caller cmd: add neovim integration for GoCoverage
Rebased, but not refactored as proposed in the above. Well, I'm looking for the way to work with latest vim's |
@t-yuki just tested it works well but if |
Not yet. |
Thanks @t-yuki a lot for the PR. I really would like to merge |
Hi, I'm working on nvim integration of my coverage plugin: https://github.com/t-yuki/vim-go-coverlay
However, I've realized that go#cmd#GoCoverage is not integrated with nvim yet and several API changes are required for better integration.
Moreover, I guess that a recent change 579dd89 broke go#cmd#GoTestFunc because go#util#Shelllist also escapes "-run" flag.
So I want to include changes:
However, I used ugly event handler method to track job status by go#cmd#GoTest and go#cmd#GoCoverage function. Another solution is welcome.
refs #607