diff options
author | Peter Odding <peter@peterodding.com> | 2011-09-04 13:50:35 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2011-09-04 13:50:35 +0200 |
commit | 0b47a3c9589ea8276732fa2d7913cffab356ae12 (patch) | |
tree | 898c4b6a9d908ecefad8a3d2e4d532372da236cd /plugin | |
parent | f38bcf6e2deb821d94dac3609aaa3ffc79d01f8c (diff) | |
download | vim-easytags-0b47a3c9589ea8276732fa2d7913cffab356ae12.tar.gz |
Warn about unreasonable 'updatetime' values (issue #16)
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/easytags.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index d95ce86..acc9fda 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -1,6 +1,6 @@ " Vim plug-in " Author: Peter Odding <peter@peterodding.com> -" Last Change: August 27, 2011 +" Last Change: September 4, 2011 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) @@ -141,7 +141,7 @@ augroup PluginEasyTags autocmd VimEnter * call xolox#easytags#register(1) " Define the automatic commands to perform updating/highlighting. for s:eventname in g:easytags_events - execute 'autocmd' s:eventname '* call xolox#easytags#autoload()' + execute 'autocmd' s:eventname '* call xolox#easytags#autoload(' string(s:eventname) ')' endfor " Define an automatic command to register file type specific tags files? if !empty(g:easytags_by_filetype) |