"============================================================================ "File: vimlint.vim "Description: Syntax checking plugin for syntastic.vim "Maintainer: LCD 47 "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. " "============================================================================ if exists("g:loaded_syntastic_vim_vimlint_checker") finish endif let g:loaded_syntastic_vim_vimlint_checker = 1 let s:save_cpo = &cpo set cpo&vim function! SyntaxCheckers_vim_vimlint_GetHighlightRegex(item) let term = matchstr(a:item['text'], '\m `\zs[^`]\+\ze`') if term != '' let col = get(a:item, 'col', 0) if col && term[0:1] ==# 'l:' if getline(a:item.lnum)[col-1:col] !=# 'l:' let term = term[2:] endif endif return '\V' . (col ? '\%' . col . 'c' : '') . escape(term, '\') endif return '' endfunction function! SyntaxCheckers_vim_vimlint_IsAvailable() dict let ret = 0 try call vimlint#vimlint(syntastic#util#DevNull(), { 'output': [], 'quiet': 1 }) let ret = 1 catch /\m^Vim\%((\a\+)\)\=:E117/ " do nothing endtry return ret endfunction function! SyntaxCheckers_vim_vimlint_GetLocList() dict " EVL102: unused variable v " EVL103: unused argument v " EVL104: variable may not be initialized on some execution path: v " EVL105: global variable v is defined without g: " EVL106: local variable v is used without l: " EVL201: unreachable code " EVL204: constant in conditional context " EVL205: missing scriptencoding " value 3: the message is a warning " " References: :help vimlint-errorcode and :help vimlint-variables return vimlint#vimlint(expand('%'), { \ 'output': function('s:vimlintOutput'), \ 'quiet': 1, \ 'EVL102': 3, \ 'EVL103': 3, \ 'EVL104': 3, \ 'EVL105': 3, \ 'EVL106': 3, \ 'EVL201': 3, \ 'EVL204': 3, \ 'EVL205': 3 }) endfunction " @vimlint(EVL103, 1, a:filename) function! s:vimlintOutput(filename, pos, ev, eid, mes, obj) call add(a:obj.error, { \ 'bufnr': bufnr(''), \ 'lnum': a:pos.lnum, \ 'col': a:pos.col, \ 'vcol': 0, \ 'type': a:ev[0], \ 'text': '[' . a:eid . '] ' . a:mes, \ 'valid': a:pos.lnum > 0 }) endfunction " @vimlint(EVL103, 0, a:filename) call g:SyntasticRegistry.CreateAndRegisterChecker({ \ 'filetype': 'vim', \ 'name': 'vimlint'}) let &cpo = s:save_cpo unlet s:save_cpo " vim: set et sts=4 sw=4: