mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
input: Escape utf8 sequences that contain CSI/K_SPECIAL
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
local helpers = require('test.functional.helpers')
|
||||
local clear, execute, nvim = helpers.clear, helpers.execute, helpers.nvim
|
||||
local feed, next_message, eq = helpers.feed, helpers.next_message, helpers.eq
|
||||
local expect = helpers.expect
|
||||
|
||||
describe('mappings', function()
|
||||
local cid
|
||||
@@ -38,3 +39,10 @@ describe('mappings', function()
|
||||
check_mapping('<a-s-c-up>', '<c-s-a-up>')
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('input utf sequences that contain CSI/K_SPECIAL', function()
|
||||
it('ok', function()
|
||||
feed('i…<esc>')
|
||||
expect('…')
|
||||
end)
|
||||
end)
|
||||
|
||||
Reference in New Issue
Block a user