Skip to content

Commit f362135

Browse files
committed
patch 7.4.2088
Problem: Keymap test fails with normal features. Solution: Bail out if the keymap feature is not supported.
1 parent e25bc5a commit f362135

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

src/testdir/test_digraph.vim

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,9 @@ func! Test_digraphs_output()
437437
endfunc
438438

439439
func! Test_loadkeymap()
440+
if !has('keymap')
441+
return
442+
endif
440443
new
441444
set keymap=czech
442445
set iminsert=0

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,8 @@ static char *(features[]) =
758758

759759
static int included_patches[] =
760760
{ /* Add new patch number below this line */
761+
/**/
762+
2088,
761763
/**/
762764
2087,
763765
/**/

0 commit comments

Comments
 (0)