restructure some code
This commit is contained in:
parent
87c0c37817
commit
c91cfb29ae
|
@ -14,15 +14,15 @@ let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
|
||||||
|
|
||||||
augroup startify
|
augroup startify
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd VimEnter * if !argc() && (line2byte('$') == -1) | call s:start() | endif
|
autocmd VimEnter * if !argc() && (line2byte('$') == -1) | call s:insane_in_the_membrane() | endif
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
command! -nargs=? -bar -complete=customlist,startify#get_session_names SSave call startify#save_session(<f-args>)
|
command! -nargs=? -bar -complete=customlist,startify#get_session_names SSave call startify#save_session(<f-args>)
|
||||||
command! -nargs=? -bar -complete=customlist,startify#get_session_names SLoad call startify#load_session(<f-args>)
|
command! -nargs=? -bar -complete=customlist,startify#get_session_names SLoad call startify#load_session(<f-args>)
|
||||||
command! -nargs=0 -bar Startify enew | call s:start()
|
command! -nargs=0 -bar Startify enew | call s:insane_in_the_membrane()
|
||||||
|
|
||||||
" Function: s:start {{{1
|
" Function: s:insane_in_the_membrane {{{1
|
||||||
function! s:start() abort
|
function! s:insane_in_the_membrane() abort
|
||||||
setfiletype startify
|
setfiletype startify
|
||||||
setlocal nonumber buftype=nofile
|
setlocal nonumber buftype=nofile
|
||||||
if v:version >= 703
|
if v:version >= 703
|
||||||
|
@ -31,7 +31,11 @@ function! s:start() abort
|
||||||
if get(g:, 'startify_unlisted_buffer', 1)
|
if get(g:, 'startify_unlisted_buffer', 1)
|
||||||
setlocal nobuflisted
|
setlocal nobuflisted
|
||||||
endif
|
endif
|
||||||
|
call s:genesis()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
" Function: s:genesis {{{1
|
||||||
|
function! s:genesis() abort
|
||||||
call append('$', [' startify>', '', ' [e] <empty buffer>'])
|
call append('$', [' startify>', '', ' [e] <empty buffer>'])
|
||||||
let cnt = 0
|
let cnt = 0
|
||||||
let sep = startify#get_sep()
|
let sep = startify#get_sep()
|
||||||
|
|
Loading…
Reference in a new issue