1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-18 03:50:26 +01:00

Echo message if ctags output is empty

This commit is contained in:
Jan Larres
2013-08-24 17:40:12 +12:00
parent 7ef2dd0ef1
commit a566f7141f

View File

@@ -1092,6 +1092,8 @@ function! s:CtagsErrMsg(errmsg, infomsg, silent, ...) abort
for line in split(ctags_output, '\n')
echomsg line
endfor
else
echomsg 'Command output is empty.'
endif
endif
endfunction