xavierd / clang_complete

Vim plugin that use clang for completing C/C++ code.
http://www.vim.org/scripts/script.php?script_id=3302
1.96k stars 308 forks source link

Fix for errors that don't have filename attached #530

Closed mlen closed 7 years ago

mlen commented 7 years ago

Some errors, for example "too many errors emitted, stopping now" don't have file property set. Skip highlighting errors in this case, previously they weren't highlighted, because generated command matched line 0, column 0.

xaizek commented 7 years ago

Thanks.