From b16c8353e5ddcb98761404bc129c54207acc41b3 Mon Sep 17 00:00:00 2001 From: Xandor Schiefer Date: Fri, 22 Apr 2016 11:15:28 +0200 Subject: [PATCH] devicons: remove parentheses around symbols --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 990d0df..13e46de 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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