You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The checker uses column numbers only when running into syntax errors.
If you're checking files containing tab characters, then Vim's tabstop
must match R's idea of tabstop, otherwise column numbers will be
shifted. At the time of this writing, R's tabstop is hardcoded to
8, so you should probably add something like this to your vimrc:
settabstop=8
The lint package will only show at most 5 messages of a kind. At
the time of this writing, this is not configurable.
Beware also that the checker is pretty slow when using the default style
setting of lint.style.
Note
This checker doesn't call the makeprgBuild() function, and thus it ignores
the usual g:syntastic_r_lint_<option> variables. The only exception is
g:syntastic_r_lint_exec, which can still be used to override the R
executable.