aboutsummaryrefslogtreecommitdiff
path: root/test/functional/editor/meta_key_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-06-17 07:28:16 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-07-25 09:47:28 +0800
commiteb77122823f35c2296cc332aec7f4380db6dafe7 (patch)
treeeb7baf2dee159b46833499d0a49eadf8919f7a42 /test/functional/editor/meta_key_spec.lua
parent46e3e1c7280a409462cceb520fe12259b5ba9937 (diff)
downloadrneovim-eb77122823f35c2296cc332aec7f4380db6dafe7.tar.gz
rneovim-eb77122823f35c2296cc332aec7f4380db6dafe7.tar.bz2
rneovim-eb77122823f35c2296cc332aec7f4380db6dafe7.zip
fix(input): do no reinterpret mouse keys with ALT modifiers
Remove check for MOD_MASK_META as it is for <T- which never appears in TUI. Make small changes to docs.
Diffstat (limited to 'test/functional/editor/meta_key_spec.lua')
-rw-r--r--test/functional/editor/meta_key_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/editor/meta_key_spec.lua b/test/functional/editor/meta_key_spec.lua
index 23964ca10f..825b20138a 100644
--- a/test/functional/editor/meta_key_spec.lua
+++ b/test/functional/editor/meta_key_spec.lua
@@ -91,7 +91,7 @@ describe('meta-keys #8226 #13042', function()
command('tnoremap <A-j> alt-j')
feed('i<M-l> xxx <A-j>')
eq('meta-l xxx alt-j', exec_lua([[return _G.input_data]]))
- -- Unmapped ALT-chord is sent to terminal as-is. #16220
+ -- Unmapped ALT-chord is sent to terminal as-is. #16202 #16220
exec_lua([[_G.input_data = '']])
command('tunmap <M-l>')
feed('<M-l>')