diff src/testdir/test_mapping.vim @ 28608:9ae7ccd90041 v8.2.4828

patch 8.2.4828: fix for unmapping simplified key not fully tested Commit: https://github.com/vim/vim/commit/abeb09b2c53054513812d1e56716e2a5abe8f354 Author: zeertzjq <zeertzjq@outlook.com> Date: Tue Apr 26 12:29:43 2022 +0100 patch 8.2.4828: fix for unmapping simplified key not fully tested Problem: Fix for unmapping simplified key not fully tested. Solution: Add a test case. (closes https://github.com/vim/vim/issues/10292)
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Apr 2022 13:30:04 +0200
parents 86bf2dabc93a
children 53c608c7ea9e
line wrap: on
line diff
--- a/src/testdir/test_mapping.vim
+++ b/src/testdir/test_mapping.vim
@@ -1627,7 +1627,7 @@ func Test_mouse_drag_insert_map()
   set mouse&
 endfunc
 
-func Test_unmap_simplfied()
+func Test_unmap_simplifiable()
   map <C-I> foo
   map <Tab> bar
   call assert_equal('foo', maparg('<C-I>'))
@@ -1636,6 +1636,11 @@ func Test_unmap_simplfied()
   call assert_equal('', maparg('<C-I>'))
   call assert_equal('bar', maparg('<Tab>'))
   unmap <Tab>
+
+  map <C-I> foo
+  unmap <Tab>
+  " This should not error
+  unmap <C-I>
 endfunc
 
 " vim: shiftwidth=2 sts=2 expandtab