Fix enew handling

Closes #33.
This commit is contained in:
Marco Hinz 2013-08-04 18:06:05 +02:00
parent a576a6370a
commit 0d132390dd
2 changed files with 1 additions and 2 deletions

View file

@ -25,7 +25,6 @@ function! startify#insane_in_the_membrane() abort
endfor
endif
enew
setlocal noswapfile nobuflisted buftype=nofile bufhidden=wipe
setlocal nonumber nolist statusline=\ startify
setfiletype startify

View file

@ -19,6 +19,6 @@ augroup END
command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save(<f-args>)
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 Startify call startify#insane_in_the_membrane()
command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane()
" vim: et sw=2 sts=2