[펌]
- 목차 -
1. VS .NET 에서 GVIM 띄우기
2. GVIM 에서 VS .NET 에 명령 내리기
- 본문 -
1. VS .NET 에서 GVIM 띄우기
GVIM을 외부 도구로 등록하는 방식인데, 그나마 좋은게 현재 열린 파일과 커서의 위치를
그대로 GVIM을 통해 재현할 수 있다.
뉴스 그룹에서 긁은 것.. ㅋㅋ
* In VisualStudio go to the 'Tools' menu and then to 'External Tools'
* Click 'Add' and enter the following information
Title = 'VIM'
Command = 'YOURPATHTOVIM\gvim.exe'
Arguments = '-c "exe $(CurLine)" $(ItemPath)'
Start Directory = ''
* Click 'OK'
You are now able to call VIM with the newly created menu entry in your
'Tools' menu. It'll call VIM with the current source file and the
current cursor position.
In addition I created a keyboard shortcut to this entry with
'Tools/Options/Environment/Keyboard'.
. GVIM 에서 VS .NET 에 명령 내리기
GVIM 에서 파이썬 스크립트를 통해서 VS.net 과 통신하는 방식이다.
기능을 간략히 설명해 보자면 이렇다.. ㅋㅋㅋ
NEW IN VERSION 1.1
- Compile the current file. For C/C++ (menu: VisualStudio -> Compile)
- Build the current project. For C/C++ or C# (menu: VisualStudio -> Build Solution). Thanks to Leif Wickland for contributing to this feature.
- Load the Visual Studio Output Window into the vim quickfix file (menu: VisualStudio -> Output)
PREVIOUS FEATURES
- Get the file from the Visual Studio IDE editor and load it into vim (menu: VisualStudio -> Get File)
- Load the current vim file into Visual Studio as the active document (menu: VisualStudio -> Put File)
- Load the Visual Studio Task List into the vim quickfix file. This is useful for easily jumping to compile errors from within vim (menu: VisualStudio -> Task List).
- Load the Visual Studio Find Results into the vim quickfix file. This way you can use the Visual Studio "Find in Files" feature and then navigate the results with vim. (menu: VisualStudio -> Find Results 1 or VisualStudio -> Find Results 2).
http://vim.sourceforge.net/scripts/script.php?script_id=864
이 주소에 가면 VIM 및 파이썬 스크립트를 다운 받을 수 있다. 물론 설치법도
잘 나온다. ( 파이썬도 깔아야 한다. )