From 5a140046353f6f645b81a2961561b0d1d02f702a Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 22 Aug 2013 19:39:27 +0200 Subject: [PATCH] Refactor s:open_buffers() --- autoload/startify.vim | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index ed62b78..a44015e 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -393,29 +393,20 @@ function! s:open_buffers(cword) abort for val in values(s:marked) let [path, type] = val[1:2] - " open in split - if type == 'S' - if line2byte('$') == -1 - execute 'edit' path - else - execute 'split' path - endif - " open in vsplit + if line2byte('$') == -1 + " open in current buffer + execute 'edit' path + elseif type == 'S' + " open in split + execute 'split' path elseif type == 'V' - if line2byte('$') == -1 - execute 'edit' path - else - execute 'vsplit' path - endif - " open in tab + " open in vsplit + execute 'vsplit' path elseif type == 'T' - if line2byte('$') == -1 - execute 'edit' path - else - execute 'tabnew' path - endif - " open in current window + " open in tab + execute 'tabnew' path else + " open in current buffer execute 'edit' path endif