I'm writing a Vim plugin. I need to call a binary which should be in the PATH. But I want to display an error message if its not. Whats the best way to find out if the binary is in the PATH?

I'm hoping to find a solution that is portable across different operating systems. But that doesn't seem very easy and I'll settle for a solution that works on unix/linux/mac.

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

Check this: :help executable()

link|improve this answer
awesome. exactly what I was looking for. thanks! – Eric Johnson Mar 10 '11 at 9:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.