Better symlink handling
This commit is contained in:
parent
a4dd91e175
commit
47a96067c4
|
@ -37,6 +37,16 @@ function! startify#is_in_skiplist(arg) abort
|
||||||
endfor
|
endfor
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
" Function: startify#is_bookmark {{{1
|
||||||
|
function! startify#is_bookmark(arg) abort
|
||||||
|
"for foo in filter(map(copy(g:startify_bookmarks), 'resolve(fnamemodify(v:val, ":p"))'), '!isdirectory(v:val)')
|
||||||
|
for foo in map(filter(copy(g:startify_bookmarks), '!isdirectory(v:val)'), 'resolve(fnamemodify(v:val, ":p"))')
|
||||||
|
if foo == a:arg
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
" Function: startify#delete_session {{{1
|
" Function: startify#delete_session {{{1
|
||||||
function! startify#delete_session(...) abort
|
function! startify#delete_session(...) abort
|
||||||
if !isdirectory(g:startify_session_dir)
|
if !isdirectory(g:startify_session_dir)
|
||||||
|
|
|
@ -12,15 +12,6 @@ let g:loaded_startify = 1
|
||||||
let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
|
let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
|
||||||
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
|
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
|
||||||
|
|
||||||
if exists('g:startify_bookmarks')
|
|
||||||
let exclude = map(copy(g:startify_bookmarks), 'expand(v:val)')
|
|
||||||
if exists('g:startify_skiplist')
|
|
||||||
call extend(g:startify_skiplist, exclude)
|
|
||||||
else
|
|
||||||
let g:startify_skiplist = exclude
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
augroup startify
|
augroup startify
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd VimEnter *
|
autocmd VimEnter *
|
||||||
|
@ -58,15 +49,21 @@ function! s:insane_in_the_membrane() abort
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get(g:, 'startify_show_files', 1) && !empty(v:oldfiles)
|
if get(g:, 'startify_show_files', 1) && !empty(v:oldfiles)
|
||||||
|
let entries = {}
|
||||||
let numfiles = get(g:, 'startify_show_files_number', 10)
|
let numfiles = get(g:, 'startify_show_files_number', 10)
|
||||||
if special
|
if special
|
||||||
call append('$', '')
|
call append('$', '')
|
||||||
endif
|
endif
|
||||||
for fname in v:oldfiles
|
for fname in v:oldfiles
|
||||||
let expfname = expand(fname)
|
let expfname = resolve(fnamemodify(fname, ':p'))
|
||||||
if !filereadable(expfname) || (exists('g:startify_skiplist') && startify#is_in_skiplist(expfname))
|
" filter duplicates, bookmarks and entries from the skiplist
|
||||||
|
if has_key(entries, expfname) ||
|
||||||
|
\ !filereadable(expfname) ||
|
||||||
|
\ (exists('g:startify_skiplist') && startify#is_in_skiplist(expfname)) ||
|
||||||
|
\ (exists('g:startify_bookmarks') && startify#is_bookmark(expfname))
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
let entries[expfname] = 1
|
||||||
let index = s:get_index_as_string(cnt)
|
let index = s:get_index_as_string(cnt)
|
||||||
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
||||||
execute 'nnoremap <buffer> '. index .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>'
|
execute 'nnoremap <buffer> '. index .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>'
|
||||||
|
|
Loading…
Reference in a new issue