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
Do not echo diagnostics in virtual-text when update_diagnostics_in_insert_mode == 0
Needed settings:
let g:ycm_update_diagnostics_in_insert_mode = 0
let g:ycm_echo_current_diagnostic = 'virtual-text'
Previously, whenever we should NOT display diagnostic UI, but diag
message would not need clearing, we ended up echoing. Most noticable in
the following example
int main() {
puts("")<CR>
}
Note that this first patch still leaves a diagnostic UI flicker on
InsertLeave.
0 commit comments