devicons: remove parentheses around symbols

This commit is contained in:
Xandor Schiefer 2016-04-22 11:15:28 +02:00 committed by Marco Hinz
parent e74cc71b1b
commit b16c8353e5

View file

@ -440,7 +440,7 @@ function! s:display_by_path(path_prefix, path_format, use_env) abort
let entry_format = "' ['. index .']'. repeat(' ', (3 - strlen(index)))"
if exists('*WebDevIconsGetFileTypeSymbol') " support for vim-devicons
let entry_format .= ". '('. WebDevIconsGetFileTypeSymbol(entry_path) .') '. entry_path"
let entry_format .= ". WebDevIconsGetFileTypeSymbol(entry_path) .' '. entry_path"
else
let entry_format .= '. entry_path'
endif