2011-02-14 69 views

回答

0

根據docs(搜索ShellExecute),您應該可以使用任意程序調用ShellExecute。如果VIM與某種文件編輯器關聯,這應該工作:

ShellExecute edit <yourfile> 

如果VIM是一些奇怪的原因不是某個文件的默認編輯器,你應該嘗試

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

大公方式,您應該能夠從Source Insight中調用任意外部工具。

相關問題