如何在Windows Source Insight中使用vim编辑器

发布于 2024-10-17 10:12:23 字数 68 浏览 0 评论 0原文

我正在使用 Windows 源洞察。其中只有基本的文本编辑器可用。有没有任何vim插件可以在windwos源洞察中使用它?

I am using windows source insight. In this only the basic text editor is available. Is there any vim plugin available to use it in windwos source insight?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

南…巷孤猫 2024-10-24 10:12:23

根据docs(搜索ShellExecute),您应该能够使用任意程序调用ShellExecute。如果 VIM 与某个文件作为编辑器关联,这应该可以工作:

ShellExecute edit <yourfile>

如果 VIM 由于某种奇怪的原因不是某个文件的默认编辑器,你应该尝试

ShellExecute "" C:/Path/to/vim.exe <yourfile>

Thay 方式,你应该能够调用 any Source Insight 的外部工具。

According to the docs (search for ShellExecute), you should be able to invoke a ShellExecute with an arbitrary program. If VIM is associated with a certain file as editor, this should work:

ShellExecute edit <yourfile>

If VIM is for some strange reason not the default editor for a certain file, you should try

ShellExecute "" C:/Path/to/vim.exe <yourfile>

Thay way, you should be able to call any external tool from Source Insight.

梦境 2024-10-24 10:12:23

在Source Insight中添加客户命令并绑定新的快捷键。

"C:\Program Files (x86)\Vim\vim81\gvim.exe"  --remote-silent +%l %f

add customer command in source insight and bind a new short key.

"C:\Program Files (x86)\Vim\vim81\gvim.exe"  --remote-silent +%l %f
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文