aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_mapping.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-27 20:21:04 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-04-29 15:51:04 +0800
commitc14d89f306e8ca49758f49f0e48aa3ce88130ac4 (patch)
treeb7b8bd4d42ff73bfc61a48936d977f57b7a9d325 /src/nvim/testdir/test_mapping.vim
parent04a437b280b13bd33c37e99c46403198126d5343 (diff)
downloadrneovim-c14d89f306e8ca49758f49f0e48aa3ce88130ac4.tar.gz
rneovim-c14d89f306e8ca49758f49f0e48aa3ce88130ac4.tar.bz2
rneovim-c14d89f306e8ca49758f49f0e48aa3ce88130ac4.zip
vim-patch:8.2.4819: unmapping simplified keys also deletes other mapping
Problem: Unmapping simplified keys also deletes other mapping. Solution: Only unmap a mapping with m_simplified set. (closes vim/vim#10270) https://github.com/vim/vim/commit/a4e3332650021921068ef12923b4501c5b9918cb
Diffstat (limited to 'src/nvim/testdir/test_mapping.vim')
-rw-r--r--src/nvim/testdir/test_mapping.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_mapping.vim b/src/nvim/testdir/test_mapping.vim
index 8c399ff3b1..88735a34b8 100644
--- a/src/nvim/testdir/test_mapping.vim
+++ b/src/nvim/testdir/test_mapping.vim
@@ -761,4 +761,15 @@ func Test_mouse_drag_insert_map()
set mouse&
endfunc
+func Test_unmap_simplfied()
+ map <C-I> foo
+ map <Tab> bar
+ call assert_equal('foo', maparg('<C-I>'))
+ call assert_equal('bar', maparg('<Tab>'))
+ unmap <C-I>
+ call assert_equal('', maparg('<C-I>'))
+ call assert_equal('bar', maparg('<Tab>'))
+ unmap <Tab>
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab