aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/change.txt8
-rw-r--r--runtime/doc/eval.txt3
-rw-r--r--runtime/doc/options.txt14
-rw-r--r--runtime/doc/os_vms.txt1
-rw-r--r--runtime/doc/term.txt18
-rw-r--r--runtime/doc/todo.txt1
6 files changed, 13 insertions, 32 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index de340ec8b5..66e69d4ffc 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -566,11 +566,9 @@ attack or other people reading your file). When Vim exits the directory and
all files in it are deleted. When Vim has the setuid bit set this may cause
problems, the temp file is owned by the setuid user but the filter command
probably runs as the original user.
-On MS-DOS and OS/2 the first of these directories that works is used: $TMP,
-$TEMP, c:\TMP, c:\TEMP.
-For Unix the list of directories is: $TMPDIR, /tmp, current-dir, $HOME.
-For MS-Windows the GetTempFileName() system function is used.
-For other systems the tmpnam() library function is used.
+Directory for temporary files is created in the first suitable directory of:
+For Unix: $TMPDIR, /tmp, current-dir, $HOME.
+For MS-Windows: $TMP, $TEMP, $USERPROFILE, current-dir.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index cbd995da3d..cdad6a9d7e 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -6212,8 +6212,7 @@ taglist({expr}) *taglist()*
tempname() *tempname()* *temp-file-name*
The result is a String, which is the name of a file that
- doesn't exist. It can be used for a temporary file. The name
- is different for at least 26 consecutive calls. Example: >
+ doesn't exist. It can be used for a temporary file. Example: >
:let tmpfile = tempname()
:exe "redir > " . tmpfile
< For Unix, the file will be in a private directory |tempfile|.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 2af731e790..d38fb84f10 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -3988,9 +3988,8 @@ A jump table for the options with a short description can be found at |Q_op|.
currently being edited. Only the last part of the name is used.
Overridden by the 'iconstring' option.
Only works if the terminal supports setting window icons (currently
- only X11 GUI and terminals with a non-empty 't_IS' option - these are
- Unix xterm and iris-ansi by default, where 't_IS' is taken from the
- builtin termcap).
+ only X11 GUI and terminals with a non-empty 't_IS' option - this is
+ Unix xterm by default, where 't_IS' is taken from the builtin termcap).
When Vim was compiled with HAVE_X11 defined, the original icon will be
restored if possible |X11|. See |X11-icon| for changing the icon on
X11.
@@ -7359,8 +7358,8 @@ A jump table for the options with a short description can be found at |Q_op|.
- VIM the server name |v:servername| or "VIM"
Only works if the terminal supports setting window titles
(currently Amiga console, Win32 console, all GUI versions and
- terminals with a non- empty 't_ts' option - these are Unix xterm and
- iris-ansi by default, where 't_ts' is taken from the builtin termcap).
+ terminals with a non- empty 't_ts' option - this is Unix xterm
+ by default, where 't_ts' is taken from the builtin termcap).
*X11*
When Vim was compiled with HAVE_X11 defined, the original title will
be restored if possible. The output of ":version" will include "+X11"
@@ -7491,10 +7490,7 @@ A jump table for the options with a short description can be found at |Q_op|.
xterm entries...).
*'ttyfast'* *'tf'* *'nottyfast'* *'notf'*
-'ttyfast' 'tf' boolean (default off, on when 'term' is xterm, hpterm,
- sun-cmd, screen, rxvt, dtterm or
- iris-ansi; also on when running Vim in
- a DOS console)
+'ttyfast' 'tf' boolean (default on)
global
{not in Vi}
Indicates a fast terminal connection. More characters will be sent to
diff --git a/runtime/doc/os_vms.txt b/runtime/doc/os_vms.txt
index 03b11ba87e..82f8ae8b5b 100644
--- a/runtime/doc/os_vms.txt
+++ b/runtime/doc/os_vms.txt
@@ -437,7 +437,6 @@ Terminal entry not found in termcap
builtin_pcansi
builtin_win32
builtin_xterm
- builtin_iris-ansi
builtin_debug
builtin_dumb
defaulting to 'vt320'
diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt
index d2dd547061..f81a530499 100644
--- a/runtime/doc/term.txt
+++ b/runtime/doc/term.txt
@@ -453,8 +453,7 @@ allows title setting via sending strings. They are sent before and after the
title string, respectively. Similar 't_IS' and 't_IE' are used to set the
icon text. These are Vim-internal extensions of the Unix termcap, so they
cannot be obtained from an external termcap. However, the builtin termcap
-contains suitable entries for xterm and iris-ansi, so you don't need to set
-them here.
+contains suitable entries for xterm, so you don't need to set them here.
*hpterm*
If inversion or other highlighting does not work correctly, try setting the
't_xs' option to a non-empty string. This makes the 't_ce' code be used to
@@ -533,18 +532,9 @@ correct values.
One command can be used to set the screen size:
*:mod* *:mode* *E359* *E362*
-:mod[e] [mode]
-
-Without argument this only detects the screen size and redraws the screen.
-With MS-DOS it is possible to switch screen mode. [mode] can be one of these
-values:
- "bw40" 40 columns black&white
- "c40" 40 columns color
- "bw80" 80 columns black&white
- "c80" 80 columns color (most people use this)
- "mono" 80 columns monochrome
- "c4350" 43 or 50 lines EGA/VGA mode
- number mode number to use, depends on your video card
+:mod[e]
+
+Detects the screen size and redraws the screen.
==============================================================================
4. Slow and fast terminals *slow-fast-terminal*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 21f24a7d33..59578cb3d9 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -2593,7 +2593,6 @@ Macintosh:
":noremap". Add "mapcmd({string}, {mode})? Use code from ":mkexrc".
9 incsearch is incorrect for "/that/<Return>/this/;//" (last search pattern
isn't updated).
-9 term_console is used before it is set (msdos, Amiga).
9 Get out-of-memory for ":g/^/,$s//@/" on 1000 lines, this is not handled
correctly. Get many error messages while redrawing the screen, which
cause another redraw, etc.