Add slime syntax, closes #252

This commit is contained in:
Adam Stankiewicz
2017-12-06 13:17:06 +01:00
parent 9fe009095a
commit 11f53253ad
39 changed files with 2292 additions and 3432 deletions

11
compiler/fish.vim Normal file
View File

@@ -0,0 +1,11 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'fish') == -1
if exists('current_compiler')
finish
endif
let current_compiler = 'fish'
CompilerSet makeprg=fish\ --no-execute\ %
execute 'CompilerSet errorformat='.escape(fish#errorformat(), ' ')
endif