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
vint cannot lint py/pycompiler.vim / js/jscompiler.vim properly, because they are using a hack to import the s: scope of another file (call extend(s:, vimlparser#import())).
I think this should somehow get supported / done automatically by vimlparser instead - probably based on the file's path, i.e. it should add foo to &rtp in case foo/autoload/bar/baz.vim is parsed.
The text was updated successfully, but these errors were encountered:
vint cannot lint py/pycompiler.vim / js/jscompiler.vim properly, because they are using a hack to import the
s:
scope of another file (call extend(s:, vimlparser#import())
).vimlint
is able to parse this, since it adds$PWD
to theruntimepath
(https://github.com/syngan/vim-vimlint/blob/c8b9cd9d8a0fb6dc69667d32819aeef503cff55c/bin/vimlint.sh#L33).I think this should somehow get supported / done automatically by vimlparser instead - probably based on the file's path, i.e. it should add
foo
to&rtp
in casefoo/autoload/bar/baz.vim
is parsed.The text was updated successfully, but these errors were encountered: