diff options
author | James McCoy <jamessan@jamessan.com> | 2017-04-19 23:15:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 23:15:45 -0400 |
commit | 462c53eb3ea256bb85eb3916400d984347f0626f (patch) | |
tree | e196f6fa8b9c03009f383349c86b5ca79acf7199 /src/nvim/os/input.c | |
parent | f0c12012d99b33474bd6bb5dcb0ee3a6c6808789 (diff) | |
parent | cb02137dfac7357650a2e9cc32acb66326e59058 (diff) | |
download | rneovim-462c53eb3ea256bb85eb3916400d984347f0626f.tar.gz rneovim-462c53eb3ea256bb85eb3916400d984347f0626f.tar.bz2 rneovim-462c53eb3ea256bb85eb3916400d984347f0626f.zip |
Merge pull request #6547 from jamessan/vim-7.4.2152
vim-patch:7.4.2152,7.4.2165,7.4.2173,7.4.2179,7.4.2209
Diffstat (limited to 'src/nvim/os/input.c')
-rw-r--r-- | src/nvim/os/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/os/input.c b/src/nvim/os/input.c index 5f0f2ec677..1fa1f52806 100644 --- a/src/nvim/os/input.c +++ b/src/nvim/os/input.c @@ -182,7 +182,8 @@ size_t input_enqueue(String keys) while (rbuffer_space(input_buffer) >= 6 && ptr < end) { uint8_t buf[6] = { 0 }; unsigned int new_size - = trans_special((const uint8_t **)&ptr, (size_t)(end - ptr), buf, true); + = trans_special((const uint8_t **)&ptr, (size_t)(end - ptr), buf, true, + true); if (new_size) { new_size = handle_mouse_event(&ptr, buf, new_size); |