From 9abe34873b1ea7c5fcc0bad20b311d85b04fc648 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Tue, 14 Jun 2011 06:43:24 +0200 Subject: 2x faster syntax highlighting using Python Interface to Vim :-) --- plugin/easytags.vim | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'plugin/easytags.vim') 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(':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. -- cgit v1.2.3