Skip to content

Commit 514947b

Browse files
committed
Bug fix for E688: More targets than List items
1 parent 3181ba4 commit 514947b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/xolox/easytags.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" Last Change: April 21, 2013
44
" URL: http://peterodding.com/code/vim/easytags/
55

6-
let g:xolox#easytags#version = '3.1.3'
6+
let g:xolox#easytags#version = '3.1.4'
77

88
call xolox#misc#compat#check('easytags', 1)
99

@@ -256,7 +256,7 @@ function! s:run_ctags(starttime, cfile, tagsfile, firstrun, cmdline) " {{{3
256256
else
257257
call xolox#misc#timer#stop("easytags.vim %s: Created tags in %s.", g:xolox#easytags#version, a:starttime)
258258
endif
259-
return []
259+
return [[], 0]
260260
endif
261261
endif
262262
return [xolox#easytags#parse_entries(lines), has_updates]

0 commit comments

Comments
 (0)