aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-07-19 21:32:04 +0200
committerGitHub <noreply@github.com>2019-07-19 21:32:04 +0200
commitafef973262bea3fe1563dc0571bb4168ac0914aa (patch)
tree3fda5cd682a39ee34a8d1b4a2f8dbcb2b13c19c0 /runtime/autoload
parentd5f7099be23e217a1fe1f5443257f1b5d1eacfea (diff)
downloadrneovim-afef973262bea3fe1563dc0571bb4168ac0914aa.tar.gz
rneovim-afef973262bea3fe1563dc0571bb4168ac0914aa.tar.bz2
rneovim-afef973262bea3fe1563dc0571bb4168ac0914aa.zip
doc [ci skip] #10383
- test/README.md: document luassert `TableFormatLevel` - CONTRIBUTING.md: absorb parts of the old "Development tips" wiki page
Diffstat (limited to 'runtime/autoload')
-rw-r--r--runtime/autoload/python3complete.vim2
-rw-r--r--runtime/autoload/pythoncomplete.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/python3complete.vim b/runtime/autoload/python3complete.vim
index f0f3aaddb3..a3b057d4d0 100644
--- a/runtime/autoload/python3complete.vim
+++ b/runtime/autoload/python3complete.vim
@@ -44,7 +44,7 @@
"
if !has('python3')
- echo "Error: Required vim compiled with +python3"
+ echo 'Error: Requires python3 + pynvim. :help provider-python'
finish
endif
diff --git a/runtime/autoload/pythoncomplete.vim b/runtime/autoload/pythoncomplete.vim
index ecc36646d9..9cc0ae0d79 100644
--- a/runtime/autoload/pythoncomplete.vim
+++ b/runtime/autoload/pythoncomplete.vim
@@ -42,7 +42,7 @@
"
if !has('python')
- echo "Error: Required vim compiled with +python"
+ echo 'Error: Requires python + pynvim. :help provider-python'
finish
endif