Don't trigger autocmds on :enew

Fixes #257.
This commit is contained in:
Marco Hinz 2016-12-26 23:12:51 +01:00
parent 881246ed5c
commit 72f398ebe2
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -58,7 +58,7 @@ 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 -bang -complete=customlist,startify#session_list SDelete call startify#session_delete(<bang>0, <f-args>)
command! -nargs=0 -bar SClose call startify#session_close()
command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane()
command! -nargs=0 -bar Startify noautocmd enew | call startify#insane_in_the_membrane()
command! -nargs=0 -bar StartifyDebug call startify#debug()
nnoremap <silent><plug>(startify-open-buffers) :<c-u>call startify#open_buffers()<cr>