Fix :enew handling (again)

fugitive is run at VimEnter and for new buffers that are associated with
files.

Now fugitive commands will be available after start (in the Startify screen),
but it won't work after calling :Startify, since fugitive is designed that
way.

References #33.
This commit is contained in:
Marco Hinz 2015-03-25 16:05:26 +01:00
parent 08c0164a1b
commit 36ff6db44a
2 changed files with 1 additions and 2 deletions

View file

@ -50,7 +50,6 @@ function! startify#insane_in_the_membrane() abort
endfor
endif
enew
setlocal
\ bufhidden=wipe
\ buftype=nofile

View file

@ -49,6 +49,6 @@ command! -nargs=? -bar -complete=customlist,startify#session_list SSave call s
command! -nargs=? -bar -complete=customlist,startify#session_list SLoad call startify#session_load(<f-args>)
command! -nargs=? -bar -complete=customlist,startify#session_list SDelete call startify#session_delete(<f-args>)
command! -nargs=0 -bar SClose call startify#session_close()
command! -nargs=0 -bar Startify call startify#insane_in_the_membrane()
command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane()
nnoremap <silent><plug>(startify-open-buffers) :<c-u>call startify#open_buffers()<cr>