diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/easytags.vim | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 433544d..0aa8ea0 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -4,7 +4,7 @@ " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.3.2 +" Version: 2.4 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip @@ -60,6 +60,14 @@ if !exists('g:easytags_include_members') let g:easytags_include_members = 0 endif +if !exists('g:easytags_python_enabled') + let g:easytags_python_enabled = 1 +endif + +if !exists('g:easytags_python_script') + let g:easytags_python_script = expand('<sfile>:p:h') . '/../misc/easytags/highlight.py' +endif + function! s:InitEasyTags(version) " Check that the location of Exuberant Ctags has been configured or that the " correct version of the program exists in one of its default locations. |