keymap: allow modifiers to multibyte chars, like <m-ä>

This commit is contained in:
Björn Linse
2019-08-16 12:03:33 +02:00
parent 1f5eac1115
commit 6fe2d24cef
3 changed files with 9 additions and 1 deletions

View File

@@ -103,6 +103,11 @@ describe('mappings', function()
check_mapping('<kequal>','<kequal>')
check_mapping('<KPEquals>','<kequal>')
end)
it('support meta + multibyte char mapping', function()
add_mapping('<m-ä>', '<m-ä>')
check_mapping('<m-ä>', '<m-ä>')
end)
end)
describe('feeding large chunks of input with <Paste>', function()