mirror of
https://github.com/amix/vimrc
synced 2025-07-12 06:05:01 +08:00
Cleaning deps.
This commit is contained in:
99
sources_non_forked/syntastic/syntax_checkers/vim/vimlint.vim
Normal file
99
sources_non_forked/syntastic/syntax_checkers/vim/vimlint.vim
Normal file
@ -0,0 +1,99 @@
|
||||
"============================================================================
|
||||
"File: vimlint.vim
|
||||
"Description: Syntax checking plugin for syntastic.vim
|
||||
"Maintainer: LCD 47 <lcd047 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.
|
||||
"
|
||||
"============================================================================
|
||||
|
||||
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 col ? '\%>' . (col - 1) . 'c\%<' . (col + strlen(term)) . 'c' : '\V' . escape(term, '\')
|
||||
endif
|
||||
|
||||
return ''
|
||||
endfunction
|
||||
|
||||
function! SyntaxCheckers_vim_vimlint_IsAvailable() dict
|
||||
return
|
||||
\ globpath(&runtimepath, 'autoload/vimlparser.vim') != '' &&
|
||||
\ globpath(&runtimepath, 'autoload/vimlint.vim') != ''
|
||||
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
|
||||
let param = {
|
||||
\ 'output': function('s:vimlintOutput'),
|
||||
\ 'quiet': 1,
|
||||
\ 'EVL102': 3,
|
||||
\ 'EVL103': 3,
|
||||
\ 'EVL104': 3,
|
||||
\ 'EVL105': 3,
|
||||
\ 'EVL106': 3,
|
||||
\ 'EVL201': 3,
|
||||
\ 'EVL204': 3,
|
||||
\ 'EVL205': 3 }
|
||||
|
||||
if exists('g:syntastic_vimlint_options')
|
||||
if type(g:syntastic_vimlint_options) == type({})
|
||||
let options = filter(copy(g:syntastic_vimlint_options), 'v:key =~# "\\m^EVL"')
|
||||
call extend(param, options, 'force')
|
||||
endif
|
||||
endif
|
||||
|
||||
return vimlint#vimlint(expand('%'), param)
|
||||
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',
|
||||
\ 'exec': 'vim' })
|
||||
|
||||
let &cpo = s:save_cpo
|
||||
unlet s:save_cpo
|
||||
|
||||
" vim: set et sts=4 sw=4:
|
Reference in New Issue
Block a user