1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 21:00:03 +08:00

Fix fileicon

This commit is contained in:
wsdjeg 2018-02-08 00:22:05 +08:00
parent ecdf5fe47b
commit c349dd049c

View File

@ -63,8 +63,8 @@ endif
call SpaceVim#mapping#space#def('nnoremap', ['a','s'], 'Startify | doautocmd WinEnter', 'fancy start screen',1)
function! FileIcon(path)
echom a:path
return s:FILE.fticon(a:path)
let icon = s:FILE.fticon(a:path)
return empty(icon) ? ' ' : icon
endfunction
function! StartifyEntryFormat()