You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently installed rust.vim via vim-plug. When I did, I was disappointed to find that I was not getting any syntax checking. It wasn't until I added the following to my init.vim that I was able to get syntax checking on buffer write:
let g:syntastic_rust_checkers = ['rustc']
The text was updated successfully, but these errors were encountered:
I have a feeling you might actually always need to do this (i.e. it's not advisable to add something like the above line automatically without the user knowing). If that's the case, we should update the README to indicate this. Happy to make a small PR if that's the best course of action.
I recently installed
rust.vim
viavim-plug
. When I did, I was disappointed to find that I was not getting any syntax checking. It wasn't until I added the following to myinit.vim
that I was able to get syntax checking on buffer write:let g:syntastic_rust_checkers = ['rustc']
The text was updated successfully, but these errors were encountered: