Skip to content

Commit

Permalink
patch 8.2.4828: fix for unmapping simplified key not fully tested
Browse files Browse the repository at this point in the history
Problem:    Fix for unmapping simplified key not fully tested.
Solution:   Add a test case. (closes #10292)
  • Loading branch information
zeertzjq authored and brammool committed Apr 26, 2022
1 parent 87f7410 commit abeb09b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/map.c
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,8 @@ do_map(
mpp = &(mp->m_next);
continue;
}
// In keyround for simplified keys, don't unmap
// a mapping without m_simplified flag.
if (keyround1_simplified && !mp->m_simplified)
break;
// We reset the indicated mode bits. If nothing
Expand Down
7 changes: 6 additions & 1 deletion src/testdir/test_mapping.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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>'))
Expand All @@ -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
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4828,
/**/
4827,
/**/
Expand Down

0 comments on commit abeb09b

Please sign in to comment.