如何在Windows Source Insight中使用vim编辑器
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据docs(搜索ShellExecute),您应该能够使用任意程序调用
ShellExecute
。如果 VIM 与某个文件作为编辑器关联,这应该可以工作:如果 VIM 由于某种奇怪的原因不是某个文件的默认编辑器,你应该尝试
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:If VIM is for some strange reason not the default editor for a certain file, you should try
Thay way, you should be able to call any external tool from Source Insight.
在Source Insight中添加客户命令并绑定新的快捷键。
add customer command in source insight and bind a new short key.