소스 검색

Prevent duplicates in v:oldfiles

References #192.
Marco Hinz 9 년 전
부모
커밋
2eaa25ba57
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      plugin/startify.vim

+ 2 - 1
plugin/startify.vim

@@ -42,8 +42,9 @@ function! s:genesis()
       call startify#insane_in_the_membrane()
     endif
   endif
+  call map(v:oldfiles, 'fnamemodify(v:val, ":p")')
   autocmd startify BufNewFile,BufRead,BufFilePre *
-        \ call s:update_oldfiles(expand('<afile>'))
+        \ call s:update_oldfiles(expand('<afile>:p'))
   autocmd! startify VimEnter
 endfunction