I've got vim
(8.0.1150
) installed with syntastic
(re-installed today), and I'm using conda
to manage my environments, on a Mac running Sierra.
When I'm at the top-level of a repo I'm working on, if I open vim:
$ vim src/python/some/fun/file.py
then syntastic works as expected, highlighting errors.
However, if I move further down this chain, e.g.:
$ cd src/python/some
$ vim fun/file.py
all of a sudden, syntastic no longer displays any errors.
Since I haven't changed conda
environments, and since vim
is just /usr/local/bin/vim
, I can't figure out what's changing from one opening to the next that would cause this difference in output.
Happy to provide any further system details, I just don't know which ones are relevant.