2012-09-15 22:18:07 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: elixir.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Richard Ramsden <rramsden at gmail dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_elixir_elixir_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_elixir_elixir_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-07-06 02:08:07 -04:00
|
|
|
" TODO: we should probably split this into separate checkers
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_elixir_elixir_IsAvailable() dict
|
2013-07-06 02:08:07 -04:00
|
|
|
return executable('elixir') && executable('mix')
|
2013-01-27 15:08:30 -05:00
|
|
|
endfunction
|
2012-09-15 22:18:07 -04:00
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_elixir_elixir_GetLocList() dict
|
2013-07-05 22:32:55 -04:00
|
|
|
|
2013-07-06 02:08:07 -04:00
|
|
|
let make_options = {}
|
|
|
|
let compile_command = 'elixir'
|
2013-07-05 22:32:55 -04:00
|
|
|
let mix_file = syntastic#util#findInParent('mix.exs', expand('%:p:h'))
|
|
|
|
|
|
|
|
if filereadable(mix_file)
|
2013-07-06 02:08:07 -04:00
|
|
|
let compile_command = 'mix compile'
|
|
|
|
let make_options['cwd'] = fnamemodify(mix_file, ':p:h')
|
2013-07-05 22:32:55 -04:00
|
|
|
endif
|
|
|
|
|
2013-11-01 05:51:47 -04:00
|
|
|
let make_options['makeprg'] = self.makeprgBuild({ 'exe': compile_command })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-07-06 02:08:07 -04:00
|
|
|
let make_options['errorformat'] = '** %*[^\ ] %f:%l: %m'
|
2012-09-15 22:18:07 -04:00
|
|
|
|
2013-07-06 02:08:07 -04:00
|
|
|
return SyntasticMake(make_options)
|
2012-09-15 22:18:07 -04:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'elixir',
|
|
|
|
\ 'name': 'elixir'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|