add option: g:startify_unlisted_buffer
This commit is contained in:
parent
b76288d031
commit
250fe3ed12
2 changed files with 14 additions and 1 deletions
|
@ -26,10 +26,13 @@ command! -nargs=? -bar -complete=customlist,startify#get_session_names SLoad cal
|
|||
" Function: s:start {{{1
|
||||
function! s:start() abort
|
||||
setfiletype startify
|
||||
setlocal nonumber nobuflisted buftype=nofile
|
||||
setlocal nonumber buftype=nofile
|
||||
if v:version >= 703
|
||||
setlocal norelativenumber
|
||||
endif
|
||||
if get(g:, 'startify_unlisted_buffer', 1)
|
||||
setlocal nobuflisted
|
||||
endif
|
||||
|
||||
call append('$', [' startify>', '', ' [e] <empty buffer>'])
|
||||
let cnt = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue