:StartifyDebug should never fail

This commit is contained in:
Marco Hinz 2015-06-02 09:18:05 +02:00
parent 06b117451a
commit f98dba25f2

View file

@ -340,9 +340,11 @@ endfunction
" Function: startify#debug {{{1
function! startify#debug()
for k in sort(keys(s:entries))
echomsg '['. k .'] = '. string(s:entries[k])
endfor
if exists('s:entries')
for k in sort(keys(s:entries))
echomsg '['. k .'] = '. string(s:entries[k])
endfor
endif
endfunction
" Function: #open_buffers {{{1