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 /src/option.h | |
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 'src/option.h')
-rw-r--r-- | src/option.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index 2985781e6..26e5fd04c 100644 --- a/src/option.h +++ b/src/option.h @@ -834,6 +834,9 @@ EXTERN char_u *p_tenc; /* 'termencoding' */ #ifdef FEAT_TERMGUICOLORS EXTERN int p_tgc; /* 'termguicolors' */ #endif +#if defined(WIN3264) && defined(FEAT_TERMINAL) +EXTERN char_u *p_twt; // 'termwintype' +#endif EXTERN int p_terse; /* 'terse' */ EXTERN int p_ta; /* 'textauto' */ EXTERN int p_to; /* 'tildeop' */ @@ -1112,7 +1115,6 @@ enum #ifdef FEAT_TERMINAL , WV_TWK , WV_TWS - , WV_TMOD #endif , WV_CRBIND #ifdef FEAT_LINEBREAK |