diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-06-17 07:28:16 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-25 09:47:28 +0800 |
commit | eb77122823f35c2296cc332aec7f4380db6dafe7 (patch) | |
tree | eb7baf2dee159b46833499d0a49eadf8919f7a42 /test/functional/editor/meta_key_spec.lua | |
parent | 46e3e1c7280a409462cceb520fe12259b5ba9937 (diff) | |
download | rneovim-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.lua | 2 |
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>') |