summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-28 18:07:59 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-28 18:07:59 +0100
commit3660a10c73a6d716ae9fca21f7c5a3282ddc7c85 (patch)
tree7fe07871a36ce65812c2549e01115570c1c04877
parent1ed2276fd50f34e824eeae93d5a5ebfdf118be26 (diff)
downloadvim-git-3660a10c73a6d716ae9fca21f7c5a3282ddc7c85.tar.gz
patch 8.0.1354: Shift-Insert doesn't always work in MS-Windows consolev8.0.1354
Problem: Shift-Insert doesn't always work in MS-Windows console. Solution: Handle K_NUL differently. (Yasuhiro Matsumoto, closes #2381)
-rw-r--r--src/os_win32.c15
-rw-r--r--src/version.c2
2 files changed, 14 insertions, 3 deletions
diff --git a/src/os_win32.c b/src/os_win32.c
index becbeeee2..c1c297a63 100644
--- a/src/os_win32.c
+++ b/src/os_win32.c
@@ -1817,9 +1817,18 @@ mch_inchar(
typeahead[typeaheadlen] = c;
if (ch2 != NUL)
{
- typeahead[typeaheadlen + n] = 3;
- typeahead[typeaheadlen + n + 1] = (char_u)ch2;
- n += 2;
+ if (c == K_NUL)
+ {
+ /* fAnsiKey */
+ typeahead[typeaheadlen + n] = (char_u)ch2;
+ n++;
+ }
+ else
+ {
+ typeahead[typeaheadlen + n] = 3;
+ typeahead[typeaheadlen + n + 1] = (char_u)ch2;
+ n += 2;
+ }
}
if (conv)
diff --git a/src/version.c b/src/version.c
index f29d449ad..4f9d0b190 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1354,
+/**/
1353,
/**/
1352,