comparison runtime/doc/options.txt @ 2965:f2de38a019a2

Updated runtime files. Add missing test82 files.
author Bram Moolenaar <bram@vim.org>
date Mon, 18 Jul 2011 19:40:27 +0200
parents 441d364773dc
children 3502a7f991fc
comparison
equal deleted inserted replaced
2964:39cb812cf477 2965:f2de38a019a2
1 *options.txt* For Vim version 7.3. Last change: 2011 Jun 12 1 *options.txt* For Vim version 7.3. Last change: 2011 Jul 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
6000 'shelltemp' 'stmp' boolean (Vi default off, Vim default on) 6000 'shelltemp' 'stmp' boolean (Vi default off, Vim default on)
6001 global 6001 global
6002 {not in Vi} 6002 {not in Vi}
6003 When on, use temp files for shell commands. When off use a pipe. 6003 When on, use temp files for shell commands. When off use a pipe.
6004 When using a pipe is not possible temp files are used anyway. 6004 When using a pipe is not possible temp files are used anyway.
6005 Currently a pipe is only supported on Unix. You can check it with: > 6005 Currently a pipe is only supported on Unix and MS-Windows 2K and
6006 later. You can check it with: >
6006 :if has("filterpipe") 6007 :if has("filterpipe")
6007 < The advantage of using a pipe is that nobody can read the temp file 6008 < The advantage of using a pipe is that nobody can read the temp file
6008 and the 'shell' command does not need to support redirection. 6009 and the 'shell' command does not need to support redirection.
6009 The advantage of using a temp file is that the file type and encoding 6010 The advantage of using a temp file is that the file type and encoding
6010 can be detected. 6011 can be detected.