diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-08 12:47:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-08 12:47:03 +0100 |
commit | c6ddce3f2cf6daa3a545405373b661f8a9bccad9 (patch) | |
tree | 080830ec75202e61d48d27e4e951dc849fe4cbfc /runtime/doc/eval.txt | |
parent | 0036201a1a096913840d3df8ff08eb58eaae90a6 (diff) | |
download | vim-git-c6ddce3f2cf6daa3a545405373b661f8a9bccad9.tar.gz |
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conptyv8.1.0880
Problem: MS-Windows: inconsistent selection of winpty/conpty.
Solution: Name option 'termwintype', use ++type argument and "term_pty" for
term_start(). (Hirohito Higashi, closes #3915)
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 50ca3769b..0fc249c8b 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5750,6 +5750,11 @@ job_info([{job}]) *job_info()* (See |job_stop()| for the values) only valid when "status" is "dead" + Only in MS-Windows: + "tty_type" Type of virtual console in use. + Values are "winpty" or "conpty". + See 'termwintype'. + Without any arguments, returns a List with all Job objects. job_setoptions({job}, {options}) *job_setoptions()* @@ -9469,10 +9474,8 @@ term_start({cmd}, {options}) *term_start()* "ansi_colors" A list of 16 color names or hex codes defining the ANSI palette used in GUI color modes. See |g:terminal_ansi_colors|. - "term_mode" (MS-Windows only): Specify which pty to - use: - "winpty": Use winpty - "conpty": Use ConPTY (if available) + "tty_type" (MS-Windows only): Specify which pty to + use. See 'termwintype' for the values. {only available when compiled with the |+terminal| feature} |