mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:50:03 +08:00
12 lines
258 B
VimL
12 lines
258 B
VimL
" Uses syntax runtime file to clear default syntax, before later Syntax
|
|
" autocommands.
|
|
|
|
if !exists('*neomake#quickfix#FormatQuickfix')
|
|
" customqf is not used.
|
|
finish
|
|
endif
|
|
|
|
if neomake#quickfix#is_enabled()
|
|
call neomake#quickfix#FormatQuickfix()
|
|
endif
|