An open API service indexing awesome lists of open source software.

https://github.com/tomtom/cfilehandler_vim

Make |:cfile| less intrusive
https://github.com/tomtom/cfilehandler_vim

Last synced: 3 months ago
JSON representation

Make |:cfile| less intrusive

Awesome Lists containing this project

README

          

This VIM plugin changes the way |:cfile| works.

- The cursor doesn't jump to the first error
- Optionally, the |quickfix| window is opened

I originally wrote this plugin to be used in conjunction with
sbt-quickfix (https://github.com/dscleaver/sbt-quickfix). In order to
fully enable it for use with sbt-quickfix, create the file
~/.vim/ftplugin/scala/cfilehandler.vim and add the following lines: >

if !exists('g:cfilehandler#file')
let b:cfilehandler_file = findfile('target/quickfix/sbt.quickfix', '.;')
endif

-----------------------------------------------------------------------

Status: Experimental
Install: See http://github.com/tomtom/vimtlib/blob/master/INSTALL.TXT
See http://github.com/tomtom for related plugins.