diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-02-06 19:22:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 19:22:02 +0100 |
commit | f0699f43566cd3e5f7fbc4d1e2802c610b5bfa5c (patch) | |
tree | 4a418cd1bbd545e1a106fb122ea2d8c050da2fbe /test/functional/ui/input_spec.lua | |
parent | c7df847c07c3b3cc6c47e3f33be9b66eb69ce448 (diff) | |
parent | 74998b0449c4df0494c3bfe5d4034c575d972406 (diff) | |
download | rneovim-f0699f43566cd3e5f7fbc4d1e2802c610b5bfa5c.tar.gz rneovim-f0699f43566cd3e5f7fbc4d1e2802c610b5bfa5c.tar.bz2 rneovim-f0699f43566cd3e5f7fbc4d1e2802c610b5bfa5c.zip |
Merge pull request #17279 from zeertzjq/state-enter-vpeekc
fix(event-loop): call vpeekc() directly first to check for character
Diffstat (limited to 'test/functional/ui/input_spec.lua')
-rw-r--r-- | test/functional/ui/input_spec.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/functional/ui/input_spec.lua b/test/functional/ui/input_spec.lua index 78f4c6ddd3..7000505909 100644 --- a/test/functional/ui/input_spec.lua +++ b/test/functional/ui/input_spec.lua @@ -140,6 +140,25 @@ describe('input utf sequences that contain CSI (0x9B)', function() end) end) +describe('input split utf sequences', function() + it('ok', function() + local str = '►' + feed('i' .. str:sub(1, 1)) + helpers.sleep(10) + feed(str:sub(2, 3)) + expect('►') + end) + + it('can be mapped', function() + command('inoremap ► E296BA') + local str = '►' + feed('i' .. str:sub(1, 1)) + helpers.sleep(10) + feed(str:sub(2, 3)) + expect('E296BA') + end) +end) + describe('input non-printable chars', function() after_each(function() os.remove('Xtest-overwrite') |