Always use markers to open files
This commit is contained in:
parent
2ea22e2e7e
commit
f59d93d5f4
|
@ -344,13 +344,13 @@ endfunction
|
||||||
|
|
||||||
" Function: #open_buffers {{{1
|
" Function: #open_buffers {{{1
|
||||||
function! startify#open_buffers(...) abort
|
function! startify#open_buffers(...) abort
|
||||||
if exists('a:1')
|
if exists('a:1') " used in mappings
|
||||||
execute s:entries[a:1].cmd s:entries[a:1].path
|
call s:set_mark('B', a:1)
|
||||||
return
|
return startify#open_buffers()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let marked = filter(copy(s:entries), 'v:val.marked')
|
let marked = filter(copy(s:entries), 'v:val.marked')
|
||||||
if empty(marked)
|
if empty(marked) " open current entry
|
||||||
call s:set_mark('B')
|
call s:set_mark('B')
|
||||||
return startify#open_buffers()
|
return startify#open_buffers()
|
||||||
endif
|
endif
|
||||||
|
@ -358,6 +358,7 @@ function! startify#open_buffers(...) abort
|
||||||
enew
|
enew
|
||||||
setlocal nobuflisted
|
setlocal nobuflisted
|
||||||
|
|
||||||
|
" Open all marked entries.
|
||||||
for entry in sort(values(marked), 's:sort_by_tick')
|
for entry in sort(values(marked), 's:sort_by_tick')
|
||||||
if line2byte('$') == -1
|
if line2byte('$') == -1
|
||||||
execute 'edit' entry.path
|
execute 'edit' entry.path
|
||||||
|
@ -604,9 +605,10 @@ function! s:set_mappings() abort
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Function: s:set_mark {{{1
|
" Function: s:set_mark {{{1
|
||||||
function! s:set_mark(type) abort
|
function! s:set_mark(type, ...) abort
|
||||||
let index = expand('<cword>')
|
let index = expand('<cword>')
|
||||||
let entry = s:entries[line('.')]
|
let line = exists('a:1') ? a:1 : line('.')
|
||||||
|
let entry = s:entries[line]
|
||||||
|
|
||||||
if (index =~# '^[eq]$') || (entry.type == 'session')
|
if (index =~# '^[eq]$') || (entry.type == 'session')
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue