padfoot27
padfoot27

Reputation: 537

How to switch off the syntax checker in YouCompleteMe?

YouCompleteMe has an added syntax checker that comes along with it. How can I switch it off?

Upvotes: 4

Views: 3937

Answers (1)

FDinoff
FDinoff

Reputation: 31459

Place the following in your vimrc

let g:ycm_show_diagnostics_ui = 0

To learn more about this option read :h g:ycm_show_diagnostics_ui

Upvotes: 6

Related Questions