aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/nvim_python.txt
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-09-14 10:12:33 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-09-15 08:21:31 -0300
commit037ca796a0782fc03409dd7f9500113937ed32b7 (patch)
treee4bdc56cb3dbbddbb8603e7239bd65ac97c3c5a9 /runtime/doc/nvim_python.txt
parent5d35484203cb950a7ba0ed0d9428cb58b37212ff (diff)
downloadrneovim-037ca796a0782fc03409dd7f9500113937ed32b7.tar.gz
rneovim-037ca796a0782fc03409dd7f9500113937ed32b7.tar.bz2
rneovim-037ca796a0782fc03409dd7f9500113937ed32b7.zip
eval.c: Rename has('neovim') feature to has('nvim')
To follow the convention of 'nvim' for technical references
Diffstat (limited to 'runtime/doc/nvim_python.txt')
-rw-r--r--runtime/doc/nvim_python.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/nvim_python.txt b/runtime/doc/nvim_python.txt
index bb644507f7..b618562900 100644
--- a/runtime/doc/nvim_python.txt
+++ b/runtime/doc/nvim_python.txt
@@ -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
<