comparison runtime/doc/if_ole.txt @ 856:8cd729851562 v7.0g

updated for version 7.0g
author vimboss
date Sun, 30 Apr 2006 18:54:39 +0000
parents a209672376fd
children 4bac29d27e2f
comparison
equal deleted inserted replaced
855:d2a4f08396fe 856:8cd729851562
1 *if_ole.txt* For Vim version 7.0f. Last change: 2006 Mar 06 1 *if_ole.txt* For Vim version 7.0g. Last change: 2006 Apr 30
2 2
3 3
4 VIM REFERENCE MANUAL by Paul Moore 4 VIM REFERENCE MANUAL by Paul Moore
5 5
6 6
167 167
168 In .Net Studio choose from the menu Tools->External Tools... 168 In .Net Studio choose from the menu Tools->External Tools...
169 Add 169 Add
170 Title - Vim 170 Title - Vim
171 Command - c:\vim\vim63\gvim.exe 171 Command - c:\vim\vim63\gvim.exe
172 Arguments - --servername VS_NET --remote-silent "+call cursor($(CurLine), $(CurCol))" $(ItemPath) 172 Arguments - --servername VS_NET --remote-silent "+call cursor($(CurLine), $(CurCol))" $(ItemPath)
173 Init Dir - Empty 173 Init Dir - Empty
174 174
175 Now, when you open a file in .Net, you can choose from the .Net menu: 175 Now, when you open a file in .Net, you can choose from the .Net menu:
176 Tools->Vim 176 Tools->Vim
177 177
180 like. You might also be able to set this as your default editor. 180 like. You might also be able to set this as your default editor.
181 181
182 If you refine this further, please post back to the Vim maillist so we have a 182 If you refine this further, please post back to the Vim maillist so we have a
183 record of it. 183 record of it.
184 184
185 --servername VS_NET 185 --servername VS_NET
186 This will create a new instance of vim called VS_NET. So if you open multiple 186 This will create a new instance of vim called VS_NET. So if you open multiple
187 files from VS, they will use the same instance of Vim. This allows you to 187 files from VS, they will use the same instance of Vim. This allows you to
188 have multiple copies of Vim running, but you can control which one has VS 188 have multiple copies of Vim running, but you can control which one has VS
189 files in it. 189 files in it.
190 190
191 --remote-silent "+call cursor(10, 27)" 191 --remote-silent "+call cursor(10, 27)"
192 - Places the cursor on line 10 column 27 192 - Places the cursor on line 10 column 27
193 In Vim > 193 In Vim >
194 :h --remote-silent for mor details 194 :h --remote-silent for mor details
195 195
196 [.Net remarks provided by Dave Fishburn and Brian Sturk] 196 [.Net remarks provided by Dave Fishburn and Brian Sturk]
197 197