From 085a184d5de5f2b722b8e1a3791bfdaec32cebdc Mon Sep 17 00:00:00 2001 From: Justin Nel Date: Mon, 11 Apr 2022 23:32:13 +0200 Subject: [PATCH] Fix syntax error in `exists` function (#297) Fix syntax error in `exists` function In GH-296 a syntax errors has crept in where the `exists` function was missing the second `s` in two cases. Fixes GH-299 GH-297 Co-authored-by: Julien Voisin Co-authored-by: Sven Greb Co-authored-by: Arctic Ice Studio --- colors/nord.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/nord.vim b/colors/nord.vim index 35cf88c..8753989 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -726,7 +726,7 @@ endif "+--- Languages ---+ " Haskell " > neovimhaskell/haskell-vim -if exist('g:cabal_indent_section') +if exists('g:cabal_indent_section') call s:hi("haskellPreProc", s:nord10_gui, "", s:nord10_term, "", "", "") call s:hi("haskellType", s:nord7_gui, "", s:nord7_term, "", "", "") hi! link haskellPragma haskellPreProc @@ -859,7 +859,7 @@ hi! link mkdDelimiter Keyword " PHP " > StanAngeloff/php.vim -if exist('g:php_version_id') +if exists('g:php_version_id') call s:hi("phpClass", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("phpClassImplements", s:nord7_gui, "", s:nord7_term, "", s:bold, "") hi! link phpClassExtends phpClass