From 96b5fdaa779d5394fd948d72fc76667b0dfc863a Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 25 Dec 2015 16:19:10 +0100 Subject: [PATCH] Remove duplicate entries when adding to v:oldfiles References #192. --- plugin/startify.vim | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/plugin/startify.vim b/plugin/startify.vim index b62cded..c834166 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -23,6 +23,17 @@ augroup startify autocmd QuickFixCmdPost *vimgrep* let g:startify_locked = 0 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() if !argc() && (line2byte('$') == -1) if get(g:, 'startify_session_autoload') && filereadable('Session.vim') @@ -32,9 +43,7 @@ function! s:genesis() endif endif autocmd startify BufNewFile,BufRead,BufFilePre * - \ if !g:startify_locked && exists('v:oldfiles') | - \ call insert(v:oldfiles, expand(''), 0) | - \ endif + \ call s:update_oldfiles(expand('')) autocmd! startify VimEnter endfunction