aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorKenny Stuart <kstuart@arcadia-services.net>2011-06-24 02:23:48 +0200
committerPeter Odding <peter@peterodding.com>2011-06-24 02:24:06 +0200
commitd727ac0cb7b03747d0688d939210af07da4cad60 (patch)
tree9d697e8eaa7c567980968139104d4662353aacb2 /plugin
parente454233ca5289444deaf2f6525af76b995fd9717 (diff)
downloadvim-easytags-d727ac0cb7b03747d0688d939210af07da4cad60.tar.gz
Allow enabling both dynamic and file type tags files
When both options are enabled, project specific tags files take precedence if they exist and are writable, otherwise a file type tags file is used. (Stuart wrote this code, Peter added the check for supported file types)
Diffstat (limited to 'plugin')
-rw-r--r--plugin/easytags.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim
index d2c3740..7590dcd 100644
--- a/plugin/easytags.vim
+++ b/plugin/easytags.vim
@@ -1,6 +1,6 @@
" Vim plug-in
" Author: Peter Odding <peter@peterodding.com>
-" Last Change: June 18, 2011
+" Last Change: June 24, 2011
" URL: http://peterodding.com/code/vim/easytags/
" Requires: Exuberant Ctags (http://ctags.sf.net)
@@ -12,7 +12,7 @@ if &cp || exists('g:loaded_easytags')
finish
endif
-let g:easytags_version = '2.4.3'
+let g:easytags_version = '2.4.4'
" Configuration defaults and initialization. {{{1