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