aboutsummaryrefslogtreecommitdiffstats
path: root/easytags.vim
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2010-08-10 18:57:22 +0200
committerPeter Odding <peter@peterodding.com>2010-08-10 18:57:22 +0200
commit0d9567900f23e8ca243db16df80004aa7c658623 (patch)
tree1b92261a6f2ab1eb7d4313f412cf987af470d031 /easytags.vim
parent80847259b7c3dd5781384f31914a7d7465ed0069 (diff)
downloadvim-easytags-0d9567900f23e8ca243db16df80004aa7c658623.tar.gz
Support for automatic recursion using ctags -R
Diffstat (limited to 'easytags.vim')
-rw-r--r--easytags.vim8
1 files changed, 6 insertions, 2 deletions
diff --git a/easytags.vim b/easytags.vim
index 79f56e9..f04b7b7 100644
--- a/easytags.vim
+++ b/easytags.vim
@@ -1,10 +1,10 @@
" Vim plug-in
" Author: Peter Odding <peter@peterodding.com>
-" Last Change: August 9, 2010
+" Last Change: August 10, 2010
" URL: http://peterodding.com/code/vim/easytags/
" Requires: Exuberant Ctags (http://ctags.sf.net)
" License: MIT
-" Version: 2.0
+" Version: 2.1
" Support for automatic update using the GLVS plug-in.
" GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip
@@ -42,6 +42,10 @@ if !exists('g:easytags_ignored_filetypes')
let g:easytags_ignored_filetypes = '^tex$'
endif
+if !exists('g:easytags_autorecurse')
+ let g:easytags_autorecurse = 0
+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.