Files
vim-polyglot/compiler/fish.vim
Adam Stankiewicz 2838800832 Fix conditions, #608
2020-10-25 21:08:27 +01:00

12 lines
246 B
VimL

if has_key(g:polyglot_is_disabled, 'fish')
finish
endif
if exists('current_compiler')
finish
endif
let current_compiler = 'fish'
CompilerSet makeprg=fish\ --no-execute\ %
execute 'CompilerSet errorformat='.escape(fish#errorformat(), ' ')