comparison runtime/doc/options.txt @ 18489:1cd44535be32

Update runtime files. Commit: https://github.com/vim/vim/commit/1ff14ba24c4d85c008d7abe5e140dbb497ffea8d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 2 14:09:23 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Nov 2019 14:15:04 +0100
parents b9cf60801963
children 334b1f897f3a
comparison
equal deleted inserted replaced
18488:1d7e6b677119 18489:1cd44535be32
1 *options.txt* For Vim version 8.1. Last change: 2019 Oct 26 1 *options.txt* For Vim version 8.1. Last change: 2019 Nov 01
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
6451 'shellredir', 'shellquote', 'shellxquote' and 'shellcmdflag'. 6451 'shellredir', 'shellquote', 'shellxquote' and 'shellcmdflag'.
6452 It is allowed to give an argument to the command, e.g. "csh -f". 6452 It is allowed to give an argument to the command, e.g. "csh -f".
6453 See |option-backslash| about including spaces and backslashes. 6453 See |option-backslash| about including spaces and backslashes.
6454 Environment variables are expanded |:set_env|. 6454 Environment variables are expanded |:set_env|.
6455 6455
6456 If the name of the shell contains a space, you might need to enclose 6456 If the name of the shell contains a space, you need to enclose it in
6457 it in quotes or escape the space. Example with quotes: > 6457 quotes and escape the space. Example: >
6458 :set shell=\"c:\program\ files\unix\sh.exe\"\ -f 6458 :set shell=\"c:\program\ files\unix\sh.exe\"\ -f
6459 < Note the backslash before each quote (to avoid starting a comment) and 6459 < Note the backslash before each quote (to avoid starting a comment) and
6460 each space (to avoid ending the option value). Also note that the 6460 each space (to avoid ending the option value). Also note that the
6461 "-f" is not inside the quotes, because it is not part of the command 6461 "-f" is not inside the quotes, because it is not part of the command
6462 name. Vim automagically recognizes the backslashes that are path 6462 name. Vim automagically recognizes the backslashes that are path