remove filereadable() check for bookmarks

People want to bookmark directories, too. And I don't want to test for 2
things (filereadable() || isdirectory()), because people should know
what they bookmark anyway.

Closes #16.
This commit is contained in:
Marco Hinz 2013-04-30 08:53:15 +02:00
parent 74a5d12785
commit 7ab3ca8565

View file

@ -84,9 +84,6 @@ function! s:insane_in_the_membrane() abort
if exists('g:startify_bookmarks') if exists('g:startify_bookmarks')
call append('$', '') call append('$', '')
for fname in g:startify_bookmarks for fname in g:startify_bookmarks
if !filereadable(expand(fname))
continue
endif
let cnt += 1 let cnt += 1
call append('$', ' ['. cnt .']'. repeat(' ', 3 - strlen(string(cnt))) . fname) call append('$', ' ['. cnt .']'. repeat(' ', 3 - strlen(string(cnt))) . fname)
execute 'nnoremap <buffer> '. cnt .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>' execute 'nnoremap <buffer> '. cnt .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>'