syntastic/syntax_checkers/lua/luac.vim

66 lines
2.3 KiB
VimL
Raw Normal View History

2010-09-24 10:06:22 -04:00
"============================================================================
"File: lua.vim
2017-09-15 14:04:16 -04:00
"Description: Syntax checking plugin for syntastic
2010-09-24 10:06:22 -04: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 12:44:34 -04:00
if exists('g:loaded_syntastic_lua_luac_checker')
finish
endif
let g:loaded_syntastic_lua_luac_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_lua_luac_GetHighlightRegex(pos)
2011-05-03 08:36:19 -04:00
let result = ''
2013-11-11 11:24:36 -05:00
let near = matchstr(a:pos['text'], '\mnear ''\zs[^'']\+\ze''')
2015-03-25 12:44:34 -04:00
if near !=# ''
if near ==# '<eof>'
2011-05-03 08:36:19 -04:00
let p = getpos('$')
let a:pos['lnum'] = p[1]
let a:pos['col'] = p[2]
2013-11-11 11:24:36 -05:00
let result = '\%' . p[2] . 'c'
2011-05-03 08:36:19 -04:00
else
let result = '\V' . escape(near, '\')
2011-05-03 08:36:19 -04:00
endif
2013-11-11 11:24:36 -05: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-28 18:12:42 -05:00
"if open != ''
2013-11-11 11:24:36 -05: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'
" call matchadd(group, '\%' . line . 'l\V' . escape(open, '\'))
2013-11-11 11:24:36 -05:00
"endif
2011-05-03 08:36:19 -04:00
endif
return result
endfunction
function! SyntaxCheckers_lua_luac_GetLocList() dict
let makeprg = self.makeprgBuild({ 'args_after': '-p' })
let errorformat = '%*\f: %#%f:%l: %m'
2010-09-24 10:06:22 -04:00
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
\ 'defaults': { 'bufnr': bufnr(''), 'type': 'E' } })
2010-09-24 10:06:22 -04:00
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'lua',
\ 'name': 'luac'})
let &cpo = s:save_cpo
unlet s:save_cpo
2015-01-04 05:46:54 -05:00
" vim: set sw=4 sts=4 et fdm=marker: