Jason
Jason

Reputation: 2671

Is there any way to access a Syntastic checker that is not in PATH?

I am trying to get tsqllint working with Syntastic in Vim. I am on a shared system with no root privileges. I was able to get tsqllint installed locally and working outside of the PATH. Is there a way to point Syntastic to its location?

Upvotes: 0

Views: 185

Answers (1)

Christian Gibbons
Christian Gibbons

Reputation: 4370

You can add things to your path in your .vimrc. For example, I have a locally installed flawfinder, so I put this in my .vimrc:

let $PATH.=':' . $HOME . '/flawfinder/bin'

Upvotes: 1

Related Questions