Eclipse Project Explorer that highlights files with compilation errors in Vim? -
what mean this:

if there errors in of source files, eclipse in fashion highlight files have problems. i've been missing when use vim. question is, there vim plugins replicates behavior? extension nerdtree maybe?
vim has different mechanism called quickfix list. run :make command depending on buffer runs ever 'makeprg' set to. results put quickfix list. can use :cnext, :cprev move between errors. can use :cnfile , :cpfile go next , previous file in list. can view list via :copen.
i recommend using tim pope's excellent vim-unimpaired plugin provides nice mappings like: [q , ]q, mappings move through quickfix list.
for more see:
:h :make :h 'makeprg' :h quickfix :h :cn :h :cnf
Comments
Post a Comment