mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.2088
Problem: Keymap test fails with normal features.
Solution: Bail out if the keymap feature is not supported.
f36213597d
This commit is contained in:
parent
1861f12a5f
commit
c69bbc0964
@ -437,6 +437,9 @@ func! Test_digraphs_output()
|
||||
endfunc
|
||||
|
||||
func! Test_loadkeymap()
|
||||
if !has('keymap')
|
||||
return
|
||||
endif
|
||||
new
|
||||
set keymap=czech
|
||||
set iminsert=0
|
||||
|
@ -352,7 +352,7 @@ static int included_patches[] = {
|
||||
// 2091 NA
|
||||
// 2090,
|
||||
// 2089 NA
|
||||
// 2088,
|
||||
2088,
|
||||
2087,
|
||||
2086,
|
||||
2085,
|
||||
|
Loading…
Reference in New Issue
Block a user