Vim Tips Wiki
Vim Tips Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Tip 719 Printable Monobook Previous Next

created 2004 · complexity intermediate · author Jens Berlips · version 6.0


See also Integrate gvim with Visual Studio.

This tip's functionality is also provided by visual_studio.vim: script#864.

If you want to rebuild the entire project in Visual Studio 6++:

function! RebuildAllVC()
python << EOF
import win32com.client
obj = win32com.client.GetActiveObject('MSDev.Application')
obj.RebuildAll()
EOF
endfunction

There are a lot more things you can do, check out MSDN; the application in that link is the "obj" in the code.

Comments

Advertisement