Refactor open_buffers() pt2

This commit is contained in:
Marco Hinz 2013-08-09 13:15:33 +02:00
parent a71514a97b
commit d9b44f32f7

View file

@ -368,42 +368,40 @@ endfunction
" Function: s:open_buffers {{{1 " Function: s:open_buffers {{{1
function! s:open_buffers(cword) abort function! s:open_buffers(cword) abort
" markers found; open one or more buffers
if exists('s:marked') && !empty(s:marked) if exists('s:marked') && !empty(s:marked)
enew enew
setlocal nobuflisted setlocal nobuflisted
" markers found; open one or more buffers for val in values(s:marked)
if exists('s:marked') && !empty(s:marked) let [path, type] = val[1:2]
for val in values(s:marked) " open in split
let [path, type] = val[1:2] if type == 'S'
" open in split if line2byte('$') == -1
if type == 'S'
if line2byte('$') == -1
execute 'edit' path
else
execute 'split' path
endif
" open in vsplit
elseif type == 'V'
if line2byte('$') == -1
execute 'edit' path
else
execute 'vsplit' path
endif
" open in current window
else
execute 'edit' path execute 'edit' path
else
execute 'split' path
endif endif
continue " open in vsplit
endfor elseif type == 'V'
" no markers found; open a single buffer if line2byte('$') == -1
else execute 'edit' path
execute 'normal' a:cword else
endif execute 'vsplit' path
endif endif
" open in current window
else
execute 'edit' path
endif
endfor
if exists('s:marked') " remove markers for next instance of :Startify
unlet s:marked if exists('s:marked')
unlet s:marked
endif
" no markers found; open a single buffer
else
execute 'normal' a:cword
endif endif
endfunction endfunction