diff --git a/autoload/vimlint/builtin_arg.vim b/autoload/vimlint/builtin_arg.vim index 53dcae1..7dbd4e3 100644 --- a/autoload/vimlint/builtin_arg.vim +++ b/autoload/vimlint/builtin_arg.vim @@ -205,6 +205,7 @@ function! s:funcs.has(vl, fname, node) " {{{ let str = vimlint#util#str_value(rlist[0]) if str !~# 'patch[0-9]\+' && \ str !~# 'patch-[0-9]\+\.[0-9]\+\.[0-9]\+' && + \ str !~# 'nvim-[0-9]\+\.[0-9]\+\.[0-9]\+' && \ !has_key(s:feature_list, tolower(str)) call s:EVL108(a:vl, a:node, 1, a:fname, 'a feature. see :h feature-list') endif diff --git a/test/has1.vim b/test/has1.vim index badc146..efc3ee8 100644 --- a/test/has1.vim +++ b/test/has1.vim @@ -147,4 +147,4 @@ call has('win64unix') call has('win95') call has('xim') call has('xterm_clipboard') - +call has('nvim-0.2.0')