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 /autoload | |
parent | f38bcf6e2deb821d94dac3609aaa3ffc79d01f8c (diff) | |
download | vim-easytags-0b47a3c9589ea8276732fa2d7913cffab356ae12.tar.gz |
Warn about unreasonable 'updatetime' values (issue #16)
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/xolox/easytags.vim | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index f077dbc..4069f28 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -3,7 +3,7 @@ " Last Change: September 4, 2011 " URL: http://peterodding.com/code/vim/easytags/ -let g:xolox#easytags#version = '2.5.1' +let g:xolox#easytags#version = '2.5.2' " Public interface through (automatic) commands. {{{1 @@ -34,8 +34,12 @@ function! xolox#easytags#register(global) " {{{2 endif endfunction -function! xolox#easytags#autoload() " {{{2 +function! xolox#easytags#autoload(event) " {{{2 try + " Check for unreasonable &updatetime values. + if a:event =~? 'cursorhold' && &updatetime < 4000 + call xolox#misc#msg#warn("easytags.vim %s: I'm being executed every %i milliseconds! Please set the 'updatetime' option to >= 4000 (4 seconds). To find where 'updatetime' was changed execute ':verbose set updatetime?'", g:xolox#easytags#version, &updatetime) + endif let do_update = xolox#misc#option#get('easytags_auto_update', 1) let do_highlight = xolox#misc#option#get('easytags_auto_highlight', 1) && &eventignore !~? '\<syntax\>' " Don't execute this function for unsupported file types (doesn't load |