vim-polyglot/compiler/typescript.vim

25 lines
601 B
VimL
Raw Normal View History

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1
2013-09-26 06:41:08 -04:00
if exists("current_compiler")
finish
endif
let current_compiler = "typescript"
2015-01-23 15:09:23 -05:00
if !exists("g:typescript_compiler_binary")
let g:typescript_compiler_binary = "tsc"
endif
2014-12-09 17:09:20 -05:00
if !exists("g:typescript_compiler_options")
let g:typescript_compiler_options = ""
endif
2016-09-11 07:24:17 -04:00
if exists(":CompilerSet") != 2
command! -nargs=* CompilerSet setlocal <args>
endif
2015-01-23 15:09:23 -05:00
let &l:makeprg = g:typescript_compiler_binary . ' ' . g:typescript_compiler_options . ' $* %'
2013-09-26 06:41:08 -04:00
CompilerSet errorformat=%+A\ %#%f\ %#(%l\\\,%c):\ %m,%C%m
endif