comparison runtime/doc/os_win32.txt @ 1624:18ee39301b82 v7.2a

updated for version 7.2a
author vimboss
date Tue, 24 Jun 2008 22:58:06 +0000
parents 8e1a88055846
children 0b796e045c42
comparison
equal deleted inserted replaced
1623:53938adac247 1624:18ee39301b82
1 *os_win32.txt* For Vim version 7.1. Last change: 2007 Apr 22 1 *os_win32.txt* For Vim version 7.2a. Last change: 2008 May 02
2 2
3 3
4 VIM REFERENCE MANUAL by George Reilly 4 VIM REFERENCE MANUAL by George Reilly
5 5
6 6
304 Q. How can I run an external command or program asynchronously? 304 Q. How can I run an external command or program asynchronously?
305 A. When using :! to run an external command, you can run it with "start": > 305 A. When using :! to run an external command, you can run it with "start": >
306 :!start winfile.exe<CR> 306 :!start winfile.exe<CR>
307 < Using "start" stops Vim switching to another screen, opening a new console, 307 < Using "start" stops Vim switching to another screen, opening a new console,
308 or waiting for the program to complete; it indicates that you are running a 308 or waiting for the program to complete; it indicates that you are running a
309 program that does not effect the files you are editing. Programs begun 309 program that does not affect the files you are editing. Programs begun
310 with :!start do not get passed Vim's open file handles, which means they do 310 with :!start do not get passed Vim's open file handles, which means they do
311 not have to be closed before Vim. 311 not have to be closed before Vim.
312 To avoid this special treatment, use ":! start". 312 To avoid this special treatment, use ":! start".
313 313
314 Q. I'm using Win32s, and when I try to run an external command like "make", 314 Q. I'm using Win32s, and when I try to run an external command like "make",