From 514947b7c76293a9340844b570243cb785a84b59 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Sun, 21 Apr 2013 22:39:09 +0200 Subject: [PATCH] Bug fix for E688: More targets than List items --- autoload/xolox/easytags.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index 8113942..fc3ac92 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -3,7 +3,7 @@ " Last Change: April 21, 2013 " URL: http://peterodding.com/code/vim/easytags/ -let g:xolox#easytags#version = '3.1.3' +let g:xolox#easytags#version = '3.1.4' call xolox#misc#compat#check('easytags', 1) @@ -256,7 +256,7 @@ function! s:run_ctags(starttime, cfile, tagsfile, firstrun, cmdline) " {{{3 else call xolox#misc#timer#stop("easytags.vim %s: Created tags in %s.", g:xolox#easytags#version, a:starttime) endif - return [] + return [[], 0] endif endif return [xolox#easytags#parse_entries(lines), has_updates]