eval.c: Rename has('neovim') feature to has('nvim')

To follow the convention of 'nvim' for technical references
This commit is contained in:
Thiago de Arruda
2014-09-14 10:12:33 -03:00
parent 5d35484203
commit 037ca796a0
4 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ simple step-by-step:
- Add the following snippet to your `vimrc`, before any python plugins are
loaded:
>
if has('neovim')
if has('nvim')
runtime! plugin/python_setup.vim
endif
<