We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 474947c + f5b47e5 commit 8d0857cCopy full SHA for 8d0857c
autoload/hdevtools.vim
@@ -530,7 +530,9 @@ function! hdevtools#type()
530
let l:types = []
531
for l:line in split(l:output, '\n')
532
let l:m = matchlist(l:line, '\(\d\+\) \(\d\+\) \(\d\+\) \(\d\+\) "\([^"]\+\)"')
533
- call add(l:types, [l:m[1 : 4], l:m[5]])
+ if len(l:m) != 0
534
+ call add(l:types, [l:m[1 : 4], l:m[5]])
535
+ endif
536
endfor
537
538
call hdevtools#clear_highlight()
0 commit comments