From 50d0315835047c35a1f6f6edf214e612d6eae3dd Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Thu, 24 Sep 2015 20:45:13 +0300 Subject: [PATCH] Vimlint checker: add logging. --- plugin/syntastic.vim | 2 +- syntax_checkers/vim/vimlint.vim | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index d0d19d7c..72028e69 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.6.0-175' +let g:_SYNTASTIC_VERSION = '3.6.0-176' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 diff --git a/syntax_checkers/vim/vimlint.vim b/syntax_checkers/vim/vimlint.vim index 8569a829..67be033d 100644 --- a/syntax_checkers/vim/vimlint.vim +++ b/syntax_checkers/vim/vimlint.vim @@ -74,6 +74,8 @@ function! SyntaxCheckers_vim_vimlint_GetLocList() dict " {{{1 endif endif + call self.log('options =', param) + return vimlint#vimlint(expand('%', 1), param) endfunction " }}}1