aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/input_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-02-03 13:43:48 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-02-03 13:43:48 +0800
commit74998b0449c4df0494c3bfe5d4034c575d972406 (patch)
tree17b7c5603cdb095a1b88f837a1d8bf91f3d5e6db /test/functional/ui/input_spec.lua
parent21cdecc8e0233d7a99d971327d21f701dbd65ba1 (diff)
downloadrneovim-74998b0449c4df0494c3bfe5d4034c575d972406.tar.gz
rneovim-74998b0449c4df0494c3bfe5d4034c575d972406.tar.bz2
rneovim-74998b0449c4df0494c3bfe5d4034c575d972406.zip
fix(event-loop): call vpeekc() directly first to check for character
Expand mappings first by calling `vpeekc()` directly.
Diffstat (limited to 'test/functional/ui/input_spec.lua')
-rw-r--r--test/functional/ui/input_spec.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/functional/ui/input_spec.lua b/test/functional/ui/input_spec.lua
index 11718a6e18..cf22757b91 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')