parent
295fe7a09a
commit
96b5fdaa77
|
@ -23,6 +23,17 @@ augroup startify
|
||||||
autocmd QuickFixCmdPost *vimgrep* let g:startify_locked = 0
|
autocmd QuickFixCmdPost *vimgrep* let g:startify_locked = 0
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
function! s:update_oldfiles(file)
|
||||||
|
if g:startify_locked || !exists('v:oldfiles')
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
let idx = index(v:oldfiles, a:file)
|
||||||
|
if idx != -1
|
||||||
|
call remove(v:oldfiles, idx)
|
||||||
|
endif
|
||||||
|
call insert(v:oldfiles, a:file, 0)
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! s:genesis()
|
function! s:genesis()
|
||||||
if !argc() && (line2byte('$') == -1)
|
if !argc() && (line2byte('$') == -1)
|
||||||
if get(g:, 'startify_session_autoload') && filereadable('Session.vim')
|
if get(g:, 'startify_session_autoload') && filereadable('Session.vim')
|
||||||
|
@ -32,9 +43,7 @@ function! s:genesis()
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
autocmd startify BufNewFile,BufRead,BufFilePre *
|
autocmd startify BufNewFile,BufRead,BufFilePre *
|
||||||
\ if !g:startify_locked && exists('v:oldfiles') |
|
\ call s:update_oldfiles(expand('<afile>'))
|
||||||
\ call insert(v:oldfiles, expand('<afile>'), 0) |
|
|
||||||
\ endif
|
|
||||||
autocmd! startify VimEnter
|
autocmd! startify VimEnter
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue