summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-26 14:35:26 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-26 14:35:26 +0100
commit5666fcd0bd794dd46813824cce63a38bcae63794 (patch)
treeff033ff9a8da79e0e8f18593c81c60bf793937c3 /runtime
parent767340574b5a0c697e650b3bbc3a4af10e51cb89 (diff)
Update runtime files.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/autocmd.txt2
-rw-r--r--runtime/doc/cmdline.txt2
-rw-r--r--runtime/doc/debugger.txt26
-rw-r--r--runtime/doc/editing.txt38
-rw-r--r--runtime/doc/eval.txt25
-rw-r--r--runtime/doc/filetype.txt3
-rw-r--r--runtime/doc/gui_w32.txt2
-rw-r--r--runtime/doc/insert.txt8
-rw-r--r--runtime/doc/options.txt91
-rw-r--r--runtime/doc/pattern.txt2
-rw-r--r--runtime/doc/quickref.txt9
-rw-r--r--runtime/doc/recover.txt6
-rw-r--r--runtime/doc/repeat.txt2
-rw-r--r--runtime/doc/starting.txt27
-rw-r--r--runtime/doc/syntax.txt16
-rw-r--r--runtime/doc/tags1
-rw-r--r--runtime/doc/term.txt43
-rw-r--r--runtime/doc/todo.txt9
-rw-r--r--runtime/doc/usr_02.txt9
-rw-r--r--runtime/doc/usr_05.txt11
-rw-r--r--runtime/doc/usr_23.txt4
-rw-r--r--runtime/doc/usr_24.txt4
-rw-r--r--runtime/doc/usr_27.txt2
-rw-r--r--runtime/doc/usr_90.txt4
-rw-r--r--runtime/doc/various.txt4
-rw-r--r--runtime/doc/version8.txt8
-rw-r--r--runtime/doc/vi_diff.txt25
-rw-r--r--runtime/syntax/html.vim20
28 files changed, 194 insertions, 209 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index e2e956777b..8ae0a4ec4c 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -639,7 +639,7 @@ CursorHold When the user doesn't press a key for the time
Hint: to force an update of the status lines
use: >
:let &ro = &ro
-< {only on Amiga, Unix, Win32, MSDOS and all GUI
+< {only on Amiga, Unix, Win32 and all GUI
versions}
*CursorHoldI*
CursorHoldI Just like CursorHold, but in Insert mode.
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index e909ba6a75..c4638b624b 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -943,7 +943,7 @@ These modifiers can be given, in this order:
separator is removed. Thus ":p:h" on a directory name results
on the directory name itself (without trailing slash).
When the file name is an absolute path (starts with "/" for
- Unix; "x:\" for WIN32; "drive:" for Amiga), that part is not
+ Unix; "x:\" for Win32; "drive:" for Amiga), that part is not
removed. When there is no head (path is relative to current
directory) the result is empty.
:t Tail of the file name (last component of the name). Must
diff --git a/runtime/doc/debugger.txt b/runtime/doc/debugger.txt
index ebaa946eb2..47c017db2c 100644
--- a/runtime/doc/debugger.txt
+++ b/runtime/doc/debugger.txt
@@ -1,4 +1,4 @@
-*debugger.txt* For Vim version 8.2. Last change: 2019 Jul 06
+*debugger.txt* For Vim version 8.2. Last change: 2019 Dec 21
VIM REFERENCE MANUAL by Gordon Prieur
@@ -12,8 +12,6 @@ For the debugger running in a Vim terminal window see |terminal-debugger|.
1. Debugger Features |debugger-features|
2. Vim Compile Options |debugger-compilation|
-3. Integrated Debuggers |debugger-integration|
-
==============================================================================
1. Debugger Features *debugger-features*
@@ -114,10 +112,10 @@ other settings apply.
==============================================================================
2. Vim Compile Options *debugger-compilation*
-The debugger features were added explicitly for use with Sun's Visual
-WorkShop Integrated Programming Environment (ipe). However, they were done
-in as generic a manner as possible so that integration with other debuggers
-could also use some or all of the tools used with Sun's ipe.
+The debugger features were added for use with Sun's Visual WorkShop Integrated
+Programming Environment (ipe). However, they were done in as generic a manner
+as possible so that integration with other debuggers could also these
+features.
The following compile time preprocessor variables control the features:
@@ -127,18 +125,10 @@ The following compile time preprocessor variables control the features:
Message Footer FEAT_FOOTER
Balloon Evaluation FEAT_BEVAL
-The first integration with a full IPE/IDE was with Sun Visual WorkShop. To
-compile a gvim which interfaces with VWS set the following flag, which sets
-all the above flags:
-
- Sun Visual WorkShop FEAT_SUN_WORKSHOP
-
-==============================================================================
-3. Integrated Debuggers *debugger-integration*
-
-One fully integrated debugger/IPE/IDE is Sun's Visual WorkShop Integrated
-Programming Environment.
+The support specifically for Sun Visual WorkShop has been removed, since the
+product no longer exists.
For Sun NetBeans support see |netbeans|.
+
vim:tw=78:sw=4:ts=8:noet:ft=help:norl:
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index 4fe8134383..96bcb9340d 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1,4 +1,4 @@
-*editing.txt* For Vim version 8.2. Last change: 2019 Dec 07
+*editing.txt* For Vim version 8.2. Last change: 2019 Dec 22
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -131,7 +131,7 @@ You can use this file if you discover that you need the original file. See
also the 'patchmode' option. The name of the backup file is normally the same
as the original file with 'backupext' appended. The default "~" is a bit
strange to avoid accidentally overwriting existing files. If you prefer ".bak"
-change the 'backupext' option. Extra dots are replaced with '_' on MS-DOS
+change the 'backupext' option. Extra dots are replaced with '_' on MS-Windows
machines, when Vim has detected that an MS-DOS-like filesystem is being used
(e.g., messydos or crossdos) or when the 'shortname' option is on. The
backup file can be placed in another directory by setting 'backupdir'.
@@ -331,10 +331,13 @@ CTRL-^ Edit the alternate file. Mostly the alternate file is
*gF*
[count]gF Same as "gf", except if a number follows the file
name, then the cursor is positioned on that line in
- the file. The file name and the number must be
- separated by a non-filename (see 'isfname') and
- non-numeric character. White space between the
- filename, the separator and the number are ignored.
+ the file.
+ The file name and the number must be separated by a
+ non-filename (see 'isfname') and non-numeric
+ character. " line " is also recognized, like it is
+ used in the output of `:verbose command UserCmd`
+ White space between the filename, the separator and
+ the number are ignored.
Examples:
eval.c:10 ~
eval.c @ 20 ~
@@ -542,15 +545,16 @@ If you start editing a new file and the 'fileformats' option is not empty
(which is the default), Vim will try to detect whether the lines in the file
are separated by the specified formats. When set to "unix,dos", Vim will
check for lines with a single <NL> (as used on Unix and Amiga) or by a <CR>
-<NL> pair (MS-DOS). Only when ALL lines end in <CR><NL>, 'fileformat' is set
-to "dos", otherwise it is set to "unix". When 'fileformats' includes "mac",
-and no <NL> characters are found in the file, 'fileformat' is set to "mac".
+<NL> pair (MS-Windows). Only when ALL lines end in <CR><NL>, 'fileformat' is
+set to "dos", otherwise it is set to "unix". When 'fileformats' includes
+"mac", and no <NL> characters are found in the file, 'fileformat' is set to
+"mac".
-If the 'fileformat' option is set to "dos" on non-MS-DOS systems the message
-"[dos format]" is shown to remind you that something unusual is happening. On
-MS-DOS systems you get the message "[unix format]" if 'fileformat' is set to
-"unix". On all systems but the Macintosh you get the message "[mac format]"
-if 'fileformat' is set to "mac".
+If the 'fileformat' option is set to "dos" on non-MS-Windows systems the
+message "[dos format]" is shown to remind you that something unusual is
+happening. On MS-Windows systems you get the message "[unix format]" if
+'fileformat' is set to "unix". On all systems but the Macintosh you get the
+message "[mac format]" if 'fileformat' is set to "mac".
If the 'fileformats' option is empty and DOS format is used, but while reading
a file some lines did not end in <CR><NL>, "[CR missing]" will be included in
@@ -1056,11 +1060,11 @@ When the file name is actually a device name, Vim will not make a backup (that
would be impossible). You need to use "!", since the device already exists.
Example for Unix: >
:w! /dev/lpt0
-and for MS-DOS or MS-Windows: >
+and for MS-Windows: >
:w! lpt0
For Unix a device is detected when the name doesn't refer to a normal file or
a directory. A fifo or named pipe also looks like a device to Vim.
-For MS-DOS and MS-Windows the device is detected by its name:
+For MS-Windows the device is detected by its name:
AUX
CON
CLOCK$
@@ -1294,7 +1298,7 @@ present in 'cpoptions' and "!" is not used in the command.
Does not change the meaning of an already opened file,
because its full path name is remembered. Files from
the |arglist| may change though!
- On MS-DOS this also changes the active drive.
+ On MS-Windows this also changes the active drive.
To change to the directory of the current file: >
:cd %:h
<
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 71ecf22c5b..a20f562706 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -3993,16 +3993,15 @@ executable({expr}) *executable()*
arguments.
executable() uses the value of $PATH and/or the normal
searchpath for programs. *PATHEXT*
- On MS-DOS and MS-Windows the ".exe", ".bat", etc. can
- optionally be included. Then the extensions in $PATHEXT are
- tried. Thus if "foo.exe" does not exist, "foo.exe.bat" can be
- found. If $PATHEXT is not set then ".exe;.com;.bat;.cmd" is
- used. A dot by itself can be used in $PATHEXT to try using
- the name without an extension. When 'shell' looks like a
- Unix shell, then the name is also tried without adding an
- extension.
- On MS-DOS and MS-Windows it only checks if the file exists and
- is not a directory, not if it's really executable.
+ On MS-Windows the ".exe", ".bat", etc. can optionally be
+ included. Then the extensions in $PATHEXT are tried. Thus if
+ "foo.exe" does not exist, "foo.exe.bat" can be found. If
+ $PATHEXT is not set then ".exe;.com;.bat;.cmd" is used. A dot
+ by itself can be used in $PATHEXT to try using the name
+ without an extension. When 'shell' looks like a Unix shell,
+ then the name is also tried without adding an extension.
+ On MS-Windows it only checks if the file exists and is not a
+ directory, not if it's really executable.
On MS-Windows an executable in the same directory as Vim is
always found. Since this directory is added to $PATH it
should also work to execute it |win32-PATH|.
@@ -5371,7 +5370,7 @@ getmousepos() *getmousepos()*
*getpid()*
getpid() Return a Number which is the process ID of the Vim process.
On Unix and MS-Windows this is a unique number, until Vim
- exits. On MS-DOS it's always zero.
+ exits.
*getpos()*
getpos({expr}) Get the position for {expr}. For possible values of {expr}
@@ -10685,8 +10684,8 @@ filterpipe When 'shelltemp' is off pipes are used for shell
find_in_path Compiled with support for include file searches
|+find_in_path|.
float Compiled with support for |Float|.
-fname_case Case in file names matters (for Amiga, MS-DOS, and
- Windows this is not present).
+fname_case Case in file names matters (for Amiga and MS-Windows
+ this is not present).
folding Compiled with |folding| support.
footer Compiled with GUI footer support. |gui-footer|
fork Compiled to use fork()/exec() instead of system().
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
index 148f6edd05..75ee0b5918 100644
--- a/runtime/doc/filetype.txt
+++ b/runtime/doc/filetype.txt
@@ -34,8 +34,7 @@ if you didn't do that already.
Detail: The ":filetype on" command will load one of these files:
Amiga $VIMRUNTIME/filetype.vim
Mac $VIMRUNTIME:filetype.vim
- MS-DOS $VIMRUNTIME\filetype.vim
- RiscOS Vim:Filetype
+ MS-Windows $VIMRUNTIME\filetype.vim
Unix $VIMRUNTIME/filetype.vim
VMS $VIMRUNTIME/filetype.vim
This file is a Vim script that defines autocommands for the
diff --git a/runtime/doc/gui_w32.txt b/runtime/doc/gui_w32.txt
index 5fc00eb8ae..f223cf59ad 100644
--- a/runtime/doc/gui_w32.txt
+++ b/runtime/doc/gui_w32.txt
@@ -114,7 +114,7 @@ You can also install Vim in the "Send To" menu:
4. Follow the shortcut wizard, using the full path to VIM/GVIM.
When you 'send a file to Vim', Vim changes to that file's directory. Note,
-however, that any long directory names will appear in their short (MS-DOS)
+however, that any long directory names will appear in their short (MS-Windows)
form. This is a limitation of the Windows "Send To" mechanism.
*notepad*
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 51a919d24a..419213dba5 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -2008,10 +2008,10 @@ If the 'fileformats' option is not empty Vim tries to recognize the type of
changed, the detected format is only used while reading the file.
A similar thing happens with 'fileencodings'.
-On non-MS-DOS and Win32 systems the message "[dos format]" is shown if a file
-is read in DOS format, to remind you that something unusual is done. On
-Macintosh and Win32 the message "[unix format]" is shown if a file is read in
-Unix format.
+The message "[dos format]" is shown if a file is read in DOS format, to remind
+you that something unusual is done.
+On Macintosh and Win32 the message "[unix format]" is shown if a file is read
+in Unix format.
On non-Macintosh systems, the message "[Mac format]" is shown if a file is
read in Mac format.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 8598713bc4..7d8e032cd3 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -196,11 +196,11 @@ the option value, use '\"' instead. This example sets the 'titlestring'
option to 'hi "there"': >
:set titlestring=hi\ \"there\"
-For MS-DOS and WIN32 backslashes in file names are mostly not removed. More
-precise: For options that expect a file name (those where environment
-variables are expanded) a backslash before a normal file name character is not
-removed. But a backslash before a special character (space, backslash, comma,
-etc.) is used like explained above.
+For Win32 backslashes in file names are mostly not removed. More precise: For
+options that expect a file name (those where environment variables are
+expanded) a backslash before a normal file name character is not removed. But
+a backslash before a special character (space, backslash, comma, etc.) is used
+like explained above.
There is one special situation, when the value starts with "\\": >
:set dir=\\machine\path results in "\\machine\path"
:set dir=\\\\machine\\path results in "\\machine\path"
@@ -652,7 +652,7 @@ supported use something like this: >
A jump table for the options with a short description can be found at |Q_op|.
*'aleph'* *'al'* *aleph* *Aleph*
-'aleph' 'al' number (default 128 for MS-DOS, 224 otherwise)
+'aleph' 'al' number (default 128 for MS-Windows, 224 otherwise)
global
{only available when compiled with the |+rightleft|
feature}
@@ -1007,7 +1007,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'backupdir'* *'bdir'*
'backupdir' 'bdir' string (default for Amiga: ".,t:",
- for MS-DOS and Win32: ".,$TEMP,c:/tmp,c:/temp"
+ for Win32: ".,$TEMP,c:/tmp,c:/temp"
for Unix: ".,~/tmp,~/")
global
List of directories for the backup file, separated with commas.
@@ -1018,8 +1018,8 @@ A jump table for the options with a short description can be found at |Q_op|.
impossible!). Writing may fail because of this.
- A directory "." means to put the backup file in the same directory
as the edited file.
- - A directory starting with "./" (or ".\" for MS-DOS et al.) means to
- put the backup file relative to where the edited file is. The
+ - A directory starting with "./" (or ".\" for MS-Windows et al.) means
+ to put the backup file relative to where the edited file is. The
leading "." is replaced with the path name of the edited file.
("." inside a directory name has no special meaning).
- Spaces after the comma are ignored, other spaces are considered part
@@ -2700,7 +2700,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'directory'* *'dir'*
'directory' 'dir' string (default for Amiga: ".,t:",
- for MS-DOS and Win32: ".,$TEMP,c:\tmp,c:\temp"
+ for Win32: ".,$TEMP,c:\tmp,c:\temp"
for Unix: ".,~/tmp,/var/tmp,/tmp")
global
List of directory names for the swap file, separated with commas.
@@ -2712,9 +2712,9 @@ A jump table for the options with a short description can be found at |Q_op|.
the edited file. On Unix, a dot is prepended to the file name, so
it doesn't show in a directory listing. On MS-Windows the "hidden"
attribute is set and a dot prepended if possible.
- - A directory starting with "./" (or ".\" for MS-DOS et al.) means to
- put the swap file relative to where the edited file is. The leading
- "." is replaced with the path name of the edited file.
+ - A directory starting with "./" (or ".\" for MS-Windows et al.) means
+ to put the swap file relative to where the edited file is. The
+ leading "." is replaced with the path name of the edited file.
- For Unix and Win32, if a directory ends in two path separators "//",
the swap file name will be built from the complete path to the file
with all path separators substituted to percent '%' signs. This will
@@ -3586,17 +3586,16 @@ A jump table for the options with a short description can be found at |Q_op|.
r-cr:hor20-Cursor/lCursor,
sm:block-Cursor
-blinkwait175-blinkoff150-blinkon175",
- for MS-DOS and Win32 console:
+ for Win32 console:
"n-v-c:block,o:hor50,i-ci:hor15,
r-cr:hor30,sm:block")
global
{only available when compiled with GUI enabled, and
- for MS-DOS and Win32 console}
+ for Win32 console}
This option tells Vim what the cursor should look like in different
- modes. It fully works in the GUI. In an MSDOS or Win32 console, only
- the height of the cursor can be changed. This can be done by
- specifying a block cursor, or a percentage for a vertical or
- horizontal cursor.
+ modes. It fully works in the GUI. In an Win32 console, only the
+ height of the cursor can be changed. This can be done by specifying a
+ block cursor, or a percentage for a vertical or horizontal cursor.
For a console the 't_SI', 't_SR', and 't_EI' escape sequences are
used.
@@ -3873,7 +3872,7 @@ A jump table for the options with a short description can be found at |Q_op|.
<
*'helpfile'* *'hf'*
-'helpfile' 'hf' string (default (MSDOS) "$VIMRUNTIME\doc\help.txt"
+'helpfile' 'hf' string (default (MS-Windows) "$VIMRUNTIME\doc\help.txt"
(others) "$VIMRUNTIME/doc/help.txt")
global
Name of the main help file. All distributed help files should be
@@ -5205,13 +5204,13 @@ A jump table for the options with a short description can be found at |Q_op|.
set and to the Vim default value when 'compatible' is reset.
*'mouse'* *E538*
-'mouse' string (default "", "a" for GUI, MS-DOS and Win32,
+'mouse' string (default "", "a" for GUI and Win32,
set to "a" or "nvi" in |defaults.vim|)
global
- Enable the use of the mouse. Works for most terminals (xterm, MS-DOS,
- Win32 |win32-mouse|, QNX pterm, *BSD console with sysmouse and Linux
- console with gpm). For using the mouse in the GUI, see |gui-mouse|.
- The mouse can be enabled for different modes:
+ Enable the use of the mouse. Works for most terminals (xterm, Win32
+ |win32-mouse|, QNX pterm, *BSD console with sysmouse and Linux console
+ with gpm). For using the mouse in the GUI, see |gui-mouse|. The
+ mouse can be enabled for different modes:
n Normal mode and Terminal modes
v Visual mode
i Insert mode
@@ -5259,7 +5258,7 @@ A jump table for the options with a short description can be found at |Q_op|.
The mouse pointer is restored when the mouse is moved.
*'mousemodel'* *'mousem'*
-'mousemodel' 'mousem' string (default "extend", "popup" for MS-DOS and Win32)
+'mousemodel' 'mousem' string (default "extend", "popup" for Win32)
global
Sets the model to use for the mouse. The name mostly specifies what
the right mouse button is used for:
@@ -5362,7 +5361,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'mousetime'* *'mouset'*
'mousetime' 'mouset' number (default 500)
global
- Only for GUI, MS-DOS, Win32 and Unix with xterm. Defines the maximum
+ Only for GUI, Win32 and Unix with xterm. Defines the maximum
time in msec between two mouse clicks for the second click to be
recognized as a multi click.
@@ -6202,9 +6201,6 @@ A jump table for the options with a short description can be found at |Q_op|.
Macintosh: "$VIM:vimfiles,
$VIMRUNTIME,
$VIM:vimfiles:after"
- RISC-OS: "Choices:vimfiles,
- $VIMRUNTIME,
- Choices:vimfiles/after"
VMS: "sys$login:vimfiles,
$VIM/vimfiles,
$VIMRUNTIME,
@@ -6497,17 +6493,17 @@ A jump table for the options with a short description can be found at |Q_op|.
*'shellcmdflag'* *'shcf'*
'shellcmdflag' 'shcf' string (default: "-c";
- MS-DOS and Win32, when 'shell' does not
- contain "sh" somewhere: "/c")
+ Win32, when 'shell' does not contain "sh"
+ somewhere: "/c")
global
Flag passed to the shell to execute "!" and ":!" commands; e.g.,
- "bash.exe -c ls" or "command.com /c dir". For the MS-DOS-like
+ "bash.exe -c ls" or "command.com /c dir". For the MS-Windows-like
systems, the default is set according to the value of 'shell', to
reduce the need to set this option by the user.
On Unix it can have more than one flag. Each white space separated
part is passed as an argument to the shell command.
See |option-backslash| about including spaces and backslashes.
- Also see |dos-shell| for MS-DOS and MS-Windows.
+ Also see |dos-shell| for MS-Windows.
This option cannot be set from a |modeline| or in the |sandbox|, for
security reasons.
@@ -6522,8 +6518,8 @@ A jump table for the options with a short description can be found at |Q_op|.
The name of the temporary file can be represented by "%s" if necessary
(the file name is appended automatically if no %s appears in the value
of this option).
- For the Amiga and MS-DOS the default is ">". The output is directly
- saved in a file and not echoed to the screen.
+ For the Amiga the default is ">". The output is directly saved in a
+ file and not echoed to the screen.
For Unix the default it "| tee". The stdout of the compiler is saved
in a file and echoed to the screen. If the 'shell' option is "csh" or
"tcsh" after initializations, the default becomes "|& tee". If the
@@ -6546,7 +6542,7 @@ A jump table for the options with a short description can be found at |Q_op|.
security reasons.
*'shellquote'* *'shq'*
-'shellquote' 'shq' string (default: ""; MS-DOS and Win32, when 'shell'
+'shellquote' 'shq' string (default: ""; Win32, when 'shell'
contains "sh" somewhere: "\"")
global
Quoting character(s), put around the command passed to the shell, for
@@ -6554,10 +6550,10 @@ A jump table for the options with a short description can be found at |Q_op|.
quoting. See 'shellxquote' to include the redirection. It's
probably not useful to set both options.
This is an empty string by default. Only known to be useful for
- third-party shells on MS-DOS-like systems, such as the MKS Korn Shell
- or bash, where it should be "\"". The default is adjusted according
- the value of 'shell', to reduce the need to set this option by the
- user. See |dos-shell|.
+ third-party shells on MS-Windows-like systems, such as the MKS Korn
+ Shell or bash, where it should be "\"". The default is adjusted
+ according the value of 'shell', to reduce the need to set this option
+ by the user. See |dos-shell|.
This option cannot be set from a |modeline| or in the |sandbox|, for
security reasons.
@@ -6638,7 +6634,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'shellxescape'* *'sxe'*
'shellxescape' 'sxe' string (default: "";
- for MS-DOS and MS-Windows: "\"&|<>()@^")
+ for MS-Windows: "\"&|<>()@^")
global
When 'shellxquote' is set to "(" then the characters listed in this
option will be escaped with a '^' character. This makes it possible
@@ -6748,8 +6744,7 @@ A jump table for the options with a short description can be found at |Q_op|.
Filenames are assumed to be 8 characters plus one extension of 3
characters. Multiple dots in file names are not allowed. When this
option is on, dots in file names are replaced with underscores when
- adding an extension (".~" or ".swp"). This option is not available
- for MS-DOS, because then it would always be on. This option is useful
+ adding an extension (".~" or ".swp"). This option is useful
when editing files on an MS-DOS compatible filesystem, e.g., messydos
or crossdos. When running the Win32 GUI version under Win32s, this
option is always on by default.
@@ -7664,7 +7659,6 @@ A jump table for the options with a short description can be found at |Q_op|.
on BeOS: "beos-ansi"
on Mac: "mac-ansi"
on MiNT: "vt52"
- on MS-DOS: "pcterm"
on Unix: "ansi"
on VMS: "ansi"
on Win 32: "win32")
@@ -8342,8 +8336,7 @@ A jump table for the options with a short description can be found at |Q_op|.
"$VIM/vimfiles/view",
for Unix: "~/.vim/view",
for Macintosh: "$VIM:vimfiles:view"
- for VMS: "sys$login:vimfiles/view"
- for RiscOS: "Choices:vimfiles/view")
+ for VMS: "sys$login:vimfiles/view")
global
{not available when compiled without the |+mksession|
feature}
@@ -8459,7 +8452,7 @@ A jump table for the options with a short description can be found at |Q_op|.
r Removable media. The argument is a string (up to the next
','). This parameter can be given several times. Each
specifies the start of a path for which no marks will be
- stored. This is to avoid removable media. For MS-DOS you
+ stored. This is to avoid removable media. For MS-Windows you
could use "ra:,rb:", for Amiga "rdf0:,rdf1:,rdf2:". You can
also use it for temp files, e.g., for Unix: "r/tmp". Case is
ignored. Maximum length of each 'r' argument is 50
@@ -8956,6 +8949,6 @@ A jump table for the options with a short description can be found at |Q_op|.
global
The number of milliseconds to wait for each character sent to the
screen. When non-zero, characters are sent to the terminal one by
- one. For MS-DOS pcterm this does not work. For debugging purposes.
+ one. For debugging purposes.
vim:tw=78:ts=8:noet:ft=help:norl:
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt
index 7ba46e2e09..35c8c446df 100644
--- a/runtime/doc/pattern.txt
+++ b/runtime/doc/pattern.txt
@@ -131,7 +131,7 @@ gD Goto global Declaration. When the cursor is on a
*CTRL-C*
CTRL-C Interrupt current (search) command. Use CTRL-Break on
- MS-DOS |dos-CTRL-Break|.
+ MS-Windows |dos-CTRL-Break|.
In Normal mode, any pending command is aborted.
*:noh* *:nohlsearch*
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index e55d5e1316..14c0e05b43 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -891,7 +891,7 @@ Short explanation of each option: *option-list*
'shiftround' 'sr' round indent to multiple of shiftwidth
'shiftwidth' 'sw' number of spaces to use for (auto)indent step
'shortmess' 'shm' list of flags, reduce length of messages
-'shortname' 'sn' non-MS-DOS: Filenames assumed to be 8.3 chars
+'shortname' 'sn' Filenames assumed to be 8.3 chars
'showbreak' 'sbr' string to use at the start of wrapped lines
'showcmd' 'sc' show (partial) command in status line
'showfulltag' 'sft' show full tag pattern when completing tag
@@ -1053,11 +1053,12 @@ Short explanation of each option: *option-list*
|g_CTRL-G| g CTRL-G show cursor column, line, and character
position
|CTRL-C| CTRL-C during searches: Interrupt the search
-|dos-CTRL-Break| CTRL-Break MS-DOS: during searches: Interrupt the search
+|dos-CTRL-Break| CTRL-Break MS-Windows: during searches: Interrupt the
+ search
|<Del>| <Del> while entering a count: delete last character
|:version| :ve[rsion] show version information
-|:mode| :mode N MS-DOS: set screen mode to N (number, C80,
- C4350, etc.)
+|:mode| :mode N MS-Windows: set screen mode to N (number, C80,
+ C4350, etc.)
|:normal| :norm[al][!] {commands}
execute Normal mode commands
|Q| Q switch to "Ex" mode
diff --git a/runtime/doc/recover.txt b/runtime/doc/recover.txt
index 70196cd30d..af0673636f 100644
--- a/runtime/doc/recover.txt
+++ b/runtime/doc/recover.txt
@@ -36,7 +36,7 @@ with the extension ".swp".
- On Unix, a '.' is prepended to swap file names in the same directory as the
edited file. This avoids that the swap file shows up in a directory
listing.
-- On MS-DOS machines and when the 'shortname' option is on, any '.' in the
+- On MS-Windows machines and when the 'shortname' option is on, any '.' in the
original file name is replaced with '_'.
- If this file already exists (e.g., when you are recovering from a crash) a
warning is given and another extension is used, ".swo", ".swn", etc.
@@ -75,7 +75,7 @@ If you want to put swap files in a fixed place, put a command resembling the
following ones in your .vimrc:
:set dir=dh2:tmp (for Amiga)
:set dir=~/tmp (for Unix)
- :set dir=c:\\tmp (for MS-DOS and Win32)
+ :set dir=c:\\tmp (for Win32)
This is also very handy when editing files on floppy. Of course you will have
to create that "tmp" directory for this to work!
@@ -110,7 +110,7 @@ the time with the 'updatetime' option. The time is given in milliseconds.
After writing to the swap file Vim syncs the file to disk. This takes some
time, especially on busy Unix systems. If you don't want this you can set the
'swapsync' option to an empty string. The risk of losing work becomes bigger
-though. On some non-Unix systems (MS-DOS, Amiga) the swap file won't be
+though. On some non-Unix systems (MS-Windows, Amiga) the swap file won't be
written at all.
If the writing to the swap file is not wanted, it can be switched off by
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 91c4502a81..04e09d3f52 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -430,7 +430,7 @@ linebreaks which has a <CR> in first line.
On other systems, Vim expects ":source"ed files to end in a <NL>. These
always work. If you are using a file with <CR><NL> <EOL>s (for example, a
-file made on MS-DOS), all lines will have a trailing <CR>. This may cause
+file made on MS-Windows), all lines will have a trailing <CR>. This may cause
problems for some commands (e.g., mappings). There is no automatic <EOL>
detection, because it's common to start with a line that defines a mapping
that ends in a <CR>, which will confuse the automaton.
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index 9c972fd257..203276f644 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -760,7 +760,7 @@ accordingly. Vim proceeds in this order:
1. Set the 'shell' and 'term' option *SHELL* *COMSPEC* *TERM*
The environment variable SHELL, if it exists, is used to set the
- 'shell' option. On MS-DOS and Win32, the COMSPEC variable is used
+ 'shell' option. On Win32, the COMSPEC variable is used
if SHELL is not set.
The environment variable TERM, if it exists, is used to set the 'term'
option. However, 'term' will change later when starting the GUI (step
@@ -809,13 +809,12 @@ accordingly. Vim proceeds in this order:
a. If vim was started as |evim| or |eview| or with the |-y| argument, the
script $VIMRUNTIME/evim.vim will be loaded.
*system-vimrc*
- b. For Unix, MS-Windows, VMS, Macintosh, RISC-OS and Amiga
- the system vimrc file is read for initializations. The path of this
- file is shown with the ":version" c