Use vim-devicons only when it's enabled

References c193556225 (commitcomment-21866826)
This commit is contained in:
Marco Hinz 2017-04-22 16:32:32 +02:00
parent f80b0cbe62
commit 664ed502ed
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -447,7 +447,8 @@ function! s:display_by_path(path_prefix, path_format, use_env) abort
\ [a:path_prefix, a:path_format, a:use_env])
let entry_format = "s:padding_left .'['. index .']'. repeat(' ', (3 - strlen(index)))"
if exists('*WebDevIconsGetFileTypeSymbol') " support for vim-devicons
if exists('*WebDevIconsGetFileTypeSymbol') && get(g:, 'webdevicons_enable')
" support for vim-devicons
let entry_format .= ". WebDevIconsGetFileTypeSymbol(entry_path) .' '. entry_path"
else
let entry_format .= '. entry_path'