install.fairie/dotfiles/.vim/plugged/syntastic/syntax_checkers/text/language_check.vim
Git E2E Dev Test Username fe1ac6d7e9 git subrepo clone https://github.com/vim-syntastic/syntastic.git ./dotfiles/.vim/plugged/syntastic
subrepo:
  subdir:   "dotfiles/.vim/plugged/syntastic"
  merged:   "8d5e37c29"
upstream:
  origin:   "https://github.com/vim-syntastic/syntastic.git"
  branch:   "master"
  commit:   "8d5e37c29"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-10-18 10:37:27 -04:00

37 lines
1,023 B
VimL

"============================================================================
"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 sw=4 sts=4 et fdm=marker: