blob: b45cb088cb75bd03c58dfb94d25f0ce425975a89 [file] [log] [blame]
Bram Moolenaar98056532019-12-12 14:18:35 +01001*os_dos.txt* For Vim version 8.2. Last change: 2006 Mar 30
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7 *dos* *DOS*
8This file documents the common particularities of the MS-DOS and Win32
9versions of Vim. Also see |os_win32.txt| and |os_msdos.txt|.
10
111. File locations |dos-locations|
122. Using backslashes |dos-backslash|
133. Standard mappings |dos-standard-mappings|
144. Screen output and colors |dos-colors|
155. File formats |dos-file-formats|
166. :cd command |dos-:cd|
177. Interrupting |dos-CTRL-Break|
188. Temp files |dos-temp-files|
199. Shell option default |dos-shell|
Mike Williams12795022021-06-28 20:53:58 +02002010. PowerShell |dos-powershell|
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
22==============================================================================
231. File locations *dos-locations*
24
25If you keep the Vim executable in the directory that contains the help and
26syntax subdirectories, there is no need to do anything special for Vim to
27work. No registry entries or environment variables need to be set. Just make
28sure that the directory is in your search path, or use a shortcut on the
29desktop.
30
31Your vimrc files ("_vimrc" and "_gvimrc") are normally located one directory
32up from the runtime files. If you want to put them somewhere else, set the
33environment variable $VIM to the directory where you keep them. Example: >
34 set VIM=C:\user\piet
35Will find "c:\user\piet\_vimrc".
36Note: This would only be needed when the computer is used by several people.
37Otherwise it's simpler to keep your _vimrc file in the default place.
38
39If you move the executable to another location, you also need to set the $VIM
40environment variable. The runtime files will be found in "$VIM/vim{version}".
41Example: >
42 set VIM=E:\vim
Bram Moolenaar8024f932020-01-14 19:29:13 +010043Will find the version 8.2 runtime files in "e:\vim\vim82".
Bram Moolenaar071d4272004-06-13 20:20:40 +000044Note: This is _not_ recommended. The preferred way is to keep the executable
45in the runtime directory.
46
47If you move your executable AND want to put your "_vimrc" and "_gvimrc" files
48somewhere else, you must set $VIM to where you vimrc files are, and set
49$VIMRUNTIME to the runtime files. Example: >
50 set VIM=C:\usr\piet
Bram Moolenaar8024f932020-01-14 19:29:13 +010051 set VIMRUNTIME=E:\vim\vim82
52Will find "c:\user\piet\_vimrc" and the runtime files in "e:\vim\vim82".
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
54See |$VIM| and |$VIMRUNTIME| for more information.
55
Bram Moolenaarade0d392020-01-21 22:33:58 +010056You can set environment variables for each user separately through the
57System Properties dialog box. The steps to do that:
581. Type Windows Key + R to open the "Run" dialog box.
592. Enter "sysdm.cpl" and press the "OK" button. The "System Properties"
60 dialog box will open.
613. Select the "Advanced" tab and press the "Environment Variables..." button.
62 The "Environment Variables" dialog box will open.
634. Select an existing variable in the "User variables" list and press the
64 "Edit..." button to edit it. Or press the "New..." button to add a new
65 variable.
665. After you finished editing variables, press the "OK" button to save the
67 changes.
Bram Moolenaar071d4272004-06-13 20:20:40 +000068
69==============================================================================
702. Using backslashes *dos-backslash*
71
72Using backslashes in file names can be a problem. Vi halves the number of
73backslashes for some commands. Vim is a bit more tolerant and does not remove
74backslashes from a file name, so ":e c:\foo\bar" works as expected. But when
75a backslash occurs before a special character (space, comma, backslash, etc.),
76Vim removes the backslash. Use slashes to avoid problems: ":e c:/foo/bar"
77works fine. Vim replaces the slashes with backslashes internally to avoid
78problems with some MS-DOS programs and Win32 programs.
79
80When you prefer to use forward slashes, set the 'shellslash' option. Vim will
81then replace backslashes with forward slashes when expanding file names. This
82is especially useful when using a Unix-like 'shell'.
83
84==============================================================================
853. Standard mappings *dos-standard-mappings*
86
Bram Moolenaar910f66f2006-04-05 20:41:53 +000087The mappings for CTRL-PageUp and CTRL-PageDown have been removed, they now
88jump to the next or previous tab page |<C-PageUp>| |<C-PageDown>|
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
Bram Moolenaar910f66f2006-04-05 20:41:53 +000090If you want them to move to the first and last screen line you can use these
91mappings:
Bram Moolenaar071d4272004-06-13 20:20:40 +000092
93key key code Normal/Visual mode Insert mode ~
94CTRL-PageUp <M-N><M-C-D> H <C-O>H
95CTRL-PageDown <M-N>v L$ <C-O>L<C-O>$
96
97Additionally, these keys are available for copy/cut/paste. In the Win32
98and DJGPP versions, they also use the clipboard.
99
100Shift-Insert paste text (from clipboard) *<S-Insert>*
101CTRL-Insert copy Visual text (to clipboard) *<C-Insert>*
102CTRL-Del cut Visual text (to clipboard) *<C-Del>*
103Shift-Del cut Visual text (to clipboard) *<S-Del>*
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100104CTRL-X cut Visual text (to clipboard)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105
106These mappings accomplish this (Win32 and DJGPP versions of Vim):
107
108key key code Normal Visual Insert ~
109Shift-Insert <M-N><M-T> "*P "-d"*P <C-R><C-O>*
110CTRL-Insert <M-N><M-U> "*y
111Shift-Del <M-N><M-W> "*d
112CTRL-Del <M-N><M-X> "*d
Bram Moolenaare0fa3742016-02-20 15:47:01 +0100113CTRL-X <C-X> "*d
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114
115Or these mappings (non-Win32 version of Vim):
116
117key key code Normal Visual Insert ~
118Shift-Insert <M-N><M-T> P "-dP <C-R><C-O>"
119CTRL-Insert <M-N><M-U> y
120Shift-Del <M-N><M-W> d
121CTRL-Del <M-N><M-X> d
122
123When the clipboard is supported, the "* register is used.
124
125==============================================================================
1264. Screen output and colors *dos-colors*
127
128The default output method for the screen is to use bios calls. This works
129right away on most systems. You do not need ansi.sys. You can use ":mode" to
130set the current screen mode. See |:mode|.
131
132To change the screen colors that Vim uses, you can use the |:highlight|
133command. The Normal highlight group specifies the colors Vim uses for normal
134text. For example, to get grey text on a blue background: >
135 :hi Normal ctermbg=Blue ctermfg=grey
136See |highlight-groups| for other groups that are available.
137
138A DOS console does not support attributes like bold and underlining. You can
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000139set the color used in five modes with nine terminal options. Note that this
140is not necessary since you can set the color directly with the ":highlight"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141command; these options are for backward compatibility with older Vim versions.
142The |'highlight'| option specifies which of the five modes is used for which
143action. >
144
145 :set t_mr=^V^[\|xxm start of invert mode
146 :set t_md=^V^[\|xxm start of bold mode
147 :set t_me=^V^[\|xxm back to normal text
148
149 :set t_so=^V^[\|xxm start of standout mode
150 :set t_se=^V^[\|xxm back to normal text
151
152 :set t_us=^V^[\|xxm start of underline mode
153 :set t_ue=^V^[\|xxm back to normal text
154
155 :set t_ZH=^V^[\|xxm start of italics mode
156 :set t_ZR=^V^[\|xxm back to normal text
157
158^V is CTRL-V
159^[ is <Esc>
160You must replace xx with a decimal code, which is the foreground color number
161and background color number added together:
162
163COLOR FOREGROUND BACKGROUND ~
164Black 0 0
165DarkBlue 1 16
166DarkGreen 2 32
167DarkCyan 3 48
168DarkRed 4 64
169DarkMagenta 5 80
170Brown, DarkYellow 6 96
171LightGray 7 112
172DarkGray 8 128 *
173Blue, LightBlue 9 144 *
174Green, LightGreen 10 160 *
175Cyan, LightCyan 11 176 *
176Red, LightRed 12 192 *
177Magenta, LightMagenta 13 208 *
178Yellow, LightYellow 14 224 *
179White 15 240 *
180
181* Depending on the display mode, the color codes above 128 may not be
182 available, and code 128 will make the text blink.
183
184When you use 0, the color is reset to the one used when you started Vim
185(usually 7, lightgray on black, but you can override this. If you have
186overridden the default colors in a command prompt, you may need to adjust
187some of the highlight colors in your vimrc---see below).
188This is the default for t_me.
189
190The defaults for the various highlight modes are:
191 t_mr 112 reverse mode: Black text (0) on LightGray (112)
192 t_md 15 bold mode: White text (15) on Black (0)
193 t_me 0 normal mode (revert to default)
194
195 t_so 31 standout mode: White (15) text on DarkBlue (16)
196 t_se 0 standout mode end (revert to default)
197
198 t_czh 225 italic mode: DarkBlue text (1) on Yellow (224)
199 t_czr 0 italic mode end (revert to default)
200
201 t_us 67 underline mode: DarkCyan text (3) on DarkRed (64)
202 t_ue 0 underline mode end (revert to default)
203
204These colors were chosen because they also look good when using an inverted
205display, but you can change them to your liking.
206
207Example: >
208 :set t_mr=^V^[\|97m " start of invert mode: DarkBlue (1) on Brown (96)
209 :set t_md=^V^[\|67m " start of bold mode: DarkCyan (3) on DarkRed (64)
210 :set t_me=^V^[\|112m " back to normal mode: Black (0) on LightGray (112)
211
212 :set t_so=^V^[\|37m " start of standout mode: DarkMagenta (5) on DarkGreen
213 (32)
214 :set t_se=^V^[\|112m " back to normal mode: Black (0) on LightGray (112)
215
216==============================================================================
2175. File formats *dos-file-formats*
218
219If the 'fileformat' option is set to "dos" (which is the default), Vim accepts
220a single <NL> or a <CR><NL> pair for end-of-line (<EOL>). When writing a
221file, Vim uses <CR><NL>. Thus, if you edit a file and write it, Vim replaces
222<NL> with <CR><NL>.
223
224If the 'fileformat' option is set to "unix", Vim uses a single <NL> for <EOL>
225and shows <CR> as ^M.
226
227You can use Vim to replace <NL> with <CR><NL> by reading in any mode and
228writing in Dos mode (":se ff=dos").
229You can use Vim to replace <CR><NL> with <NL> by reading in Dos mode and
230writing in Unix mode (":se ff=unix").
231
232Vim sets 'fileformat' automatically when 'fileformats' is not empty (which is
233the default), so you don't really have to worry about what you are doing.
234 |'fileformat'| |'fileformats'|
235
236If you want to edit a script file or a binary file, you should set the
237'binary' option before loading the file. Script files and binary files may
238contain single <NL> characters which Vim would replace with <CR><NL>. You can
239set 'binary' automatically by starting Vim with the "-b" (binary) option.
240
241==============================================================================
2426. :cd command *dos-:cd*
243
244The ":cd" command recognizes the drive specifier and changes the current
245drive. Use ":cd c:" to make drive C the active drive. Use ":cd d:\foo" to go
246to the directory "foo" in the root of drive D. Vim also recognizes UNC names
247if the system supports them; e.g., ":cd \\server\share\dir". |:cd|
248
249==============================================================================
2507. Interrupting *dos-CTRL-Break*
251
252Use CTRL-Break instead of CTRL-C to interrupt searches. Vim does not detect
253the CTRL-C until it tries to read a key.
254
255==============================================================================
2568. Temp files *dos-temp-files*
257
258Only for the 16 bit and 32 bit DOS version:
259Vim puts temporary files (for filtering) in the first of these directories
260that exists and in which Vim can create a file:
261 $TMP
262 $TEMP
263 C:\TMP
264 C:\TEMP
265 current directory
266
267For the Win32 version (both console and GUI):
268Vim uses standard Windows functions to obtain a temporary file name (for
269filtering). The first of these directories that exists and in which Vim can
270create a file is used:
271 $TMP
272 $TEMP
273 current directory
274
275==============================================================================
2769. Shell option default *dos-shell*
277
278The default for the 'sh' ('shell') option is "command.com" on Windows 95 and
279"cmd.exe" on Windows NT. If SHELL is defined, Vim uses SHELL instead, and if
280SHELL is not defined but COMSPEC is, Vim uses COMSPEC. Vim starts external
281commands with "<shell> /c <command_name>". Typing CTRL-Z starts a new command
282subshell. Return to Vim with "exit". |'shell'| |CTRL-Z|
283
284If you are running a third-party shell, you may need to set the
285|'shellcmdflag'| ('shcf') and |'shellquote'| ('shq') or |'shellxquote'|
286('sxq') options. Unfortunately, this also depends on the version of Vim used.
287For example, with the MKS Korn shell or with bash, the values of the options
288should be:
289
290 DOS 16 bit DOS 32 bit Win32 ~
291'shellcmdflag' -c -c -c
292'shellquote' "
293'shellxquote' "
294
295For Dos 16 bit this starts the shell as:
296 <shell> -c "command name" >file
297For Win32 as:
298 <shell> -c "command name >file"
299For DOS 32 bit, DJGPP does this internally somehow.
300
Mike Williams12795022021-06-28 20:53:58 +0200301When starting up, if Vim does not recognise a standard Windows shell it checks
302for the presence of "sh" anywhere in the 'shell' option. If it is present,
303Vim sets the 'shellcmdflag' and 'shellquote' or 'shellxquote' options will be
304set as described above.
305
306==============================================================================
30710. PowerShell *dos-powershell*
308
309Vim also supports Windows PowerShell. If 'shell' has been set to
310"powershell.exe" at startup then VIM sets 'shellcmdflag', 'shellxquote',
311'shellpipe', and 'shellredir' options to the following values:
312
313'shellcmdflag' -Command
314'shellxquote' "
315'shellpipe' 2>&1 | Out-File -Encoding default
316'shellredir' 2>&1 | Out-File -Encoding default
317
318If you find that PowerShell commands are taking a long time to run then try
319setting 'shellcmdflag' to "-NoProfile -Command". Note this will prevent any
320PowerShell environment setup by the profile from taking place.
321
322If you have problems running PowerShell scripts through the 'shell' then try
323setting 'shellcmdflag' to "-ExecutionPolicy RemoteSigned -Command". See
324online Windows documentation for more information on PowerShell Execution
325Policy settings.
326
327The 'shellpipe' and 'shellredir' option values re-encode the UTF-16le output
328from Windows PowerShell to your currently configured console codepage. The
329output can be forced into a different encoding by changing "default" to one of
330the following:
331
332 unicode - UTF-16le (default output from PowerShell 5.1)
333 bigendianunicode - UTF-16
334 utf8 - UTF-8
335 utf7 - UTF-7 (no-BOM)
336 utf32 - UTF-32
337 ascii - 7-bit ASCII character set
338 default - System's active code page (typically ANSI)
339 oem - System's current OEM code page
340
341Note Multi-byte Unicode encodings include a leading BOM.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342
Bram Moolenaar91f84f62018-07-29 15:07:52 +0200343 vim:tw=78:ts=8:noet:ft=help:norl: