Refactor s:open_buffers()

This commit is contained in:
Marco Hinz 2013-08-22 19:39:27 +02:00
parent 26638b30d4
commit 5a14004635

View file

@ -393,29 +393,20 @@ function! s:open_buffers(cword) abort
for val in values(s:marked) for val in values(s:marked)
let [path, type] = val[1:2] let [path, type] = val[1:2]
" open in split if line2byte('$') == -1
if type == 'S' " open in current buffer
if line2byte('$') == -1 execute 'edit' path
execute 'edit' path elseif type == 'S'
else " open in split
execute 'split' path execute 'split' path
endif
" open in vsplit
elseif type == 'V' elseif type == 'V'
if line2byte('$') == -1 " open in vsplit
execute 'edit' path execute 'vsplit' path
else
execute 'vsplit' path
endif
" open in tab
elseif type == 'T' elseif type == 'T'
if line2byte('$') == -1 " open in tab
execute 'edit' path execute 'tabnew' path
else
execute 'tabnew' path
endif
" open in current window
else else
" open in current buffer
execute 'edit' path execute 'edit' path
endif endif