-
Notifications
You must be signed in to change notification settings - Fork 52
Support for Vim signs #22
Comments
@alexbooker is this easy to integrate?. window split is a pain on a macbook pro 13 inch |
@orlando I'm never tried so I don't know. I use Atom when I use Flow nowadays. |
@alexbooker cool, I'll give a try next week to see if I can come up with something. Thanks! |
@orlando Sounds awesome 😄 I would just be a bit wary of the fact that the maintainers of this repository might not want to merge such a feature. |
@alexbooker I was about to start work on this, but looks like Syntastic already supports it. Just add it to your javascript checkers ( So I think we should close this issue |
Same for neomake, it works well with flow. |
Since I posted this two months ago I haven't really used |
Neomake does this really really well! |
@ryyppy That's true, I'm delegating this to Neomake and it just works. Do you think is even worth having this plugin handling both linting and syntax highlighting? Maybe it's better to just take care of the latter and then suggesting other tools like syntastic and Neomake for linting, since they're out there for longer therefore are more reliable options. |
@ryyppy how do you set up neovim to do that. I want to switch to Neovim starting next month and this is one of the features I want to get in place from the beginning. |
@orlando Neomake comes with Flow support. You just have to make sure you setup |
can you explain that part please?. I didn't get it |
@orlando Something like this should do it: " Disable Facebook's Flow Vim linter to avoid collisions
let g:flow#enable = 0
" Enable Flow maker
let g:neomake_javascript_enabled_makers = ['flow']
" Lint whenever saving a file
au BufWritePost * Neomake |
@rafaelrinaldi awesome. Great idea to have a til repo Cheers! |
What do you think about using Signs to indicate erroneous lines?
(Screenshot taken from Syntatic)
The text was updated successfully, but these errors were encountered: