2010-09-24 22:06:22 +08:00
|
|
|
"============================================================================
|
|
|
|
"File: lua.vim
|
2017-09-15 21:04:16 +03:00
|
|
|
"Description: Syntax checking plugin for syntastic
|
2010-09-24 22:06:22 +08:00
|
|
|
"Maintainer: Gregor Uhlenheuer <kongo2002 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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2015-03-25 18:44:34 +02:00
|
|
|
if exists('g:loaded_syntastic_lua_luac_checker')
|
2013-02-21 15:50:41 +00:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 11:29:08 +02:00
|
|
|
let g:loaded_syntastic_lua_luac_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 15:50:41 +00:00
|
|
|
|
2013-03-02 14:33:04 +02:00
|
|
|
function! SyntaxCheckers_lua_luac_GetHighlightRegex(pos)
|
2011-05-03 15:36:19 +03:00
|
|
|
let result = ''
|
2013-11-11 18:24:36 +02:00
|
|
|
let near = matchstr(a:pos['text'], '\mnear ''\zs[^'']\+\ze''')
|
2015-03-25 18:44:34 +02:00
|
|
|
if near !=# ''
|
2013-11-29 10:35:21 +02:00
|
|
|
if near ==# '<eof>'
|
2011-05-03 15:36:19 +03:00
|
|
|
let p = getpos('$')
|
|
|
|
let a:pos['lnum'] = p[1]
|
|
|
|
let a:pos['col'] = p[2]
|
2013-11-11 18:24:36 +02:00
|
|
|
let result = '\%' . p[2] . 'c'
|
2011-05-03 15:36:19 +03:00
|
|
|
else
|
2014-03-09 22:21:29 +02:00
|
|
|
let result = '\V' . escape(near, '\')
|
2011-05-03 15:36:19 +03:00
|
|
|
endif
|
2013-11-11 18:24:36 +02:00
|
|
|
|
|
|
|
" XXX the following piece of code is evil, and is likely to break
|
|
|
|
" in future versions of syntastic; enable it at your own risk :)
|
|
|
|
|
|
|
|
"let open = matchstr(a:pos['text'], '\m(to close ''\zs[^'']\+\ze'' at line [0-9]\+)')
|
2014-01-29 01:12:42 +02:00
|
|
|
"if open != ''
|
2013-11-11 18:24:36 +02:00
|
|
|
" let line = str2nr(matchstr(a:pos['text'], '\m(to close ''[^'']\+'' at line \zs[0-9]\+\ze)'))
|
|
|
|
" let group = a:pos['type'] ==? 'E' ? 'SyntasticError' : 'SyntasticWarning'
|
2014-03-09 22:21:29 +02:00
|
|
|
" call matchadd(group, '\%' . line . 'l\V' . escape(open, '\'))
|
2013-11-11 18:24:36 +02:00
|
|
|
"endif
|
2011-05-03 15:36:19 +03:00
|
|
|
endif
|
|
|
|
return result
|
|
|
|
endfunction
|
|
|
|
|
2013-10-28 13:53:33 +02:00
|
|
|
function! SyntaxCheckers_lua_luac_GetLocList() dict
|
2014-01-28 21:44:44 +02:00
|
|
|
let makeprg = self.makeprgBuild({ 'args_after': '-p' })
|
2013-05-31 21:05:45 +03:00
|
|
|
|
2016-09-22 09:09:35 +03:00
|
|
|
let errorformat = '%*\f: %#%f:%l: %m'
|
2010-09-24 22:06:22 +08:00
|
|
|
|
2013-05-31 21:05:45 +03:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': { 'bufnr': bufnr(''), 'type': 'E' } })
|
2010-09-24 22:06:22 +08:00
|
|
|
endfunction
|
|
|
|
|
2013-01-27 20:08:30 +00:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'lua',
|
|
|
|
\ 'name': 'luac'})
|
2014-01-03 11:29:08 +02:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 12:46:54 +02:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|