在vim中查找可执行文件的路径

发布于 2024-12-05 01:16:32 字数 175 浏览 1 评论 0原文

在某些机器上,我使用外部可执行文件来格式化文本(其名称为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

疏忽 2024-12-12 01:16:32

您可以使用 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. See help executable for more info.

酒绊 2024-12-12 01:16:32

在linux中,我会使用which

:!which par

如果你想把将其放入文件中,试试这个:

:r !which par

编辑:实际上,哈希可能是更好的工具。

In linux, I'd use which:

:!which par

If you want to put it into the file, try this:

:r !which par

Edit: Actually, hash might be the better tool to use.

不离久伴 2024-12-12 01:16:32

在 unix...

whereis par

应该返回一个路径,如果当前用户可以执行该路径

in unix...

whereis par

should return a path, if it is executable by the current user

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文