Răsfoiți Sursa

Use vim-devicons only when it's enabled

References https://github.com/mhinz/vim-startify/commit/c193556225af93405cc87518781d48cf932efc2f#commitcomment-21866826
Marco Hinz 8 ani în urmă
părinte
comite
664ed502ed
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      autoload/startify.vim

+ 2 - 1
autoload/startify.vim

@@ -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'