Explorar el Código

Skip all files below .git and fugitiveblame files

Tsuyoshi CHO hace 6 años
padre
commit
2486ab67bc
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      autoload/startify.vim

+ 2 - 1
autoload/startify.vim

@@ -1094,10 +1094,11 @@ let s:tf = exists('g:startify_transformations')
 let s:session_dir = s:get_session_path()
 
 let s:skiplist = get(g:, 'startify_skiplist', [
-      \ 'COMMIT_EDITMSG',
       \ 'runtime/doc/.*\.txt',
       \ 'bundle/.*/doc/.*\.txt',
       \ 'plugged/.*/doc/.*\.txt',
+      \ '/.git/',
+      \ 'fugitiveblame$',
       \ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc/.*\.txt',
       \ ])