Don't start at 'vim -y'

References #111.
This commit is contained in:
Marco Hinz 2014-09-29 11:38:01 +02:00
parent b2af0d5764
commit 6a933d2c24

View file

@ -38,6 +38,10 @@ endfunction
" Function: #insane_in_the_membrane {{{1
function! startify#insane_in_the_membrane(callingbuffer) abort
if &insertmode
return
endif
if !empty(v:servername) && exists('g:startify_skiplist_server')
for servname in g:startify_skiplist_server
if servname == v:servername
@ -52,8 +56,16 @@ function! startify#insane_in_the_membrane(callingbuffer) abort
enew
set filetype=startify
setlocal noswapfile nobuflisted buftype=nofile bufhidden=wipe
setlocal nonumber nocursorline nocursorcolumn nolist statusline=\ startify
setlocal
\ bufhidden=wipe
\ buftype=nofile
\ nobuflisted
\ nocursorcolumn
\ nocursorline
\ nolist
\ nonumber
\ noswapfile
\ statusline=\ startify
if v:version >= 703
setlocal norelativenumber
endif