1
0
mirror of https://github.com/amix/vimrc synced 2025-07-13 23:05:01 +08:00

renamed sources_non_forked folder to bundle

This commit is contained in:
Mirosław Pragłowski
2014-05-09 21:28:39 +02:00
parent 1b24133310
commit a1339baae9
1424 changed files with 5 additions and 33 deletions

View File

@ -0,0 +1,37 @@
"============================================================================
"File: language_check.vim
"Description: Grammar checker (https://github.com/myint/language-check)
"Authors: Steven Myint <git@stevenmyint.com>
"
"============================================================================
if exists("g:loaded_syntastic_text_language_check_checker")
finish
endif
let g:loaded_syntastic_text_language_check_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_text_language_check_GetLocList() dict
let makeprg = self.makeprgBuild({})
let errorformat =
\ '%f:%l:%c: %m'
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
\ 'subtype': 'Style',
\ 'returns': [0, 2] })
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'text',
\ 'name': 'language_check',
\ 'exec': 'language-check'})
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: set et sts=4 sw=4: