From c685879eea5afae752766b29fbab13b3085d2bb8 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sun, 20 Nov 2016 13:06:04 -0500 Subject: [PATCH] vim-patch:8.0.0057 Problem: Tests fail without the 'keymap' features. Solution: Check for feature in test. https://github.com/vim/vim/commit/9376f5f482a4d579436bf364778c2d8ab8e2f22d --- src/nvim/testdir/test_options.vim | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index 93657f8fed..5ee0919e18 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -40,6 +40,9 @@ function! Test_path_keep_commas() endfunction func Test_filetype_valid() + if !has('autocmd') + return + endif set ft=valid_name call assert_equal("valid_name", &filetype) set ft=valid-name @@ -57,6 +60,9 @@ func Test_filetype_valid() endfunc func Test_syntax_valid() + if !has('syntax') + return + endif set syn=valid_name call assert_equal("valid_name", &syntax) set syn=valid-name @@ -74,6 +80,9 @@ func Test_syntax_valid() endfunc func Test_keymap_valid() + if !has('keymap') + return + endif call assert_fails(":set kmp=valid_name", "E544:") call assert_fails(":set kmp=valid_name", "valid_name") call assert_fails(":set kmp=valid-name", "E544:")