aboutsummaryrefslogtreecommitdiffstats
path: root/autoload
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2013-05-20 00:22:36 +0200
committerPeter Odding <peter@peterodding.com>2013-05-20 00:22:36 +0200
commit37a9bf46a6ca2bb702c3cbaa7e6dad5cc1726409 (patch)
tree2bc7caf7ec6d85ee265d3b1963a4dc181bf88b89 /autoload
parented942d165f9e2b49666e5e621663cfbf45d3a5e0 (diff)
downloadvim-easytags-37a9bf46a6ca2bb702c3cbaa7e6dad5cc1726409.tar.gz
Improve the error message thrown by xolox#misc#compat#check()
Diffstat (limited to 'autoload')
-rw-r--r--autoload/xolox/misc/compat.vim25
1 files changed, 15 insertions, 10 deletions
diff --git a/autoload/xolox/misc/compat.vim b/autoload/xolox/misc/compat.vim
index 3cf1f1f..3f3a42c 100644
--- a/autoload/xolox/misc/compat.vim
+++ b/autoload/xolox/misc/compat.vim
@@ -1,7 +1,7 @@
" Compatibility checking.
"
" Author: Peter Odding <peter@peterodding.com>
-" Last Change: May 19, 2013
+" Last Change: May 20, 2013
" URL: http://peterodding.com/code/vim/misc/
"
" This Vim script defines a version number for the miscellaneous scripts. Each
@@ -12,20 +12,25 @@
" scripts breaks backwards compatibility. This enables my Vim plug-ins to fail
" early when they detect an incompatible version, instead of breaking at the
" worst possible moments :-).
-let g:xolox#misc#compat#version = 6
+let g:xolox#misc#compat#version = 7
" Remember the directory where the miscellaneous scripts are loaded from
" so the user knows which plug-in to update if incompatibilities arise.
-let s:misc_directory = fnamemodify(expand('<sfile>'), ':p:h')
+let s:misc_directory = fnamemodify(expand('<sfile>'), ':~:h')
-function! xolox#misc#compat#check(plugin_name, required_version)
- " Expects two arguments: The name of a Vim plug-in and the version of the
- " miscellaneous scripts expected by the plug-in. When the active version of
- " the miscellaneous scripts has a different version, this will raise an
- " error message that explains what went wrong.
+function! xolox#misc#compat#check(plugin_name, plugin_version, required_version)
+ " Expects three arguments:
+ "
+ " 1. The name of the Vim plug-in that is using the miscellaneous scripts
+ " 2. The version of the Vim plug-in that is using the miscellaneous scripts
+ " 3. The version of the miscellaneous scripts expected by the plug-in
+ "
+ " When the loaded version of the miscellaneous scripts is different from the
+ " version expected by the plug-in, this function will raise an error message
+ " that explains what went wrong.
if a:required_version != g:xolox#misc#compat#version
- let msg = "The %s plug-in requires version %i of the miscellaneous scripts, however version %i was loaded from %s!"
- throw printf(msg, a:plugin_name, a:required_version, g:xolox#misc#compat#version, s:misc_directory)
+ let msg = "The %s %s plug-in expects version %i of the miscellaneous scripts, however version %i was loaded from the directory %s! Please upgrade your plug-ins to the latest releases to resolve this problem."
+ throw printf(msg, a:plugin_name, a:plugin_version, a:required_version, g:xolox#misc#compat#version, s:misc_directory)
endif
endfunction