在vim中查找可执行文件的路径
在某些机器上,我使用外部可执行文件来格式化文本(其名称为“par”)。 因此我想检测可执行文件是否已安装。
编辑:我只想检测可执行文件在我的 .vimrc 本身中是否可用。所以我更喜欢内部函数而不是像“which”这样的外部实用程序。古拉什王子的解决方案已经非常有帮助,我会继续使用它,尽管我更喜欢找到确切的路径。谢谢。
On some machines I'm using an external executable to format text (it's named 'par').
Therefore I'd like to detect if the executable is installed.
Edit: I just want to detect if the executable is available in my .vimrc itself. So I prefer internal functions over external utils like 'which'. Prince Goulash's solution is already very helpful and I'm going with it, despite I'd prefer finding the exact path. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 vimscript 函数
executable()
,如果其参数存在且可执行,则该函数返回 1,否则返回 0。但它不会返回文件的路径。有关详细信息,请参阅帮助可执行文件
。You can use the vimscript function
executable()
, which returns 1 if its argument exists and is executable, and 0 otherwise. It doesn't return the path of the file, though. Seehelp executable
for more info.在linux中,我会使用which:
如果你想把将其放入文件中,试试这个:
编辑:实际上,哈希可能是更好的工具。
In linux, I'd use which:
If you want to put it into the file, try this:
Edit: Actually, hash might be the better tool to use.
在 unix...
应该返回一个路径,如果当前用户可以执行该路径
in unix...
should return a path, if it is executable by the current user