summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2017-07-06 08:49:24 +0200
committerLucas Hoffmann <l-m-h@web.de>2017-07-06 08:49:24 +0200
commit951c1ec67f8c8b48c38092290fb4be0510b438ab (patch)
tree26db1ed771d1b6d8468463e6db632a84041c0d71 /plugin
parentb62bcbe08b967f10753828363239b596a10f3add (diff)
downloadvdebug-951c1ec67f8c8b48c38092290fb4be0510b438ab.zip
Warn the user if :python is not available
Diffstat (limited to 'plugin')
-rw-r--r--plugin/vdebug.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/vdebug.vim b/plugin/vdebug.vim
index 44be6d1..8367288 100644
--- a/plugin/vdebug.vim
+++ b/plugin/vdebug.vim
@@ -20,6 +20,7 @@
" Do not source this script when python is not compiled in.
if !has("python")
+ echomsg ":python is not available, vdebug will not be loaded."
finish
endif