Make window sizes equal
This commit is contained in:
parent
7f76635fce
commit
6f886cdc48
|
@ -374,6 +374,8 @@ function! startify#open_buffers(...) abort
|
||||||
for entry in sort(values(marked), 's:sort_by_tick')
|
for entry in sort(values(marked), 's:sort_by_tick')
|
||||||
call s:open_buffer(entry)
|
call s:open_buffer(entry)
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
wincmd =
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Function: s:open_buffer {{{1
|
" Function: s:open_buffer {{{1
|
||||||
|
@ -386,6 +388,9 @@ function! s:open_buffer(entry)
|
||||||
if line2byte('$') == -1
|
if line2byte('$') == -1
|
||||||
execute 'edit' a:entry.path
|
execute 'edit' a:entry.path
|
||||||
else
|
else
|
||||||
|
if a:entry.cmd == 'tabnew'
|
||||||
|
wincmd =
|
||||||
|
endif
|
||||||
execute a:entry.cmd a:entry.path
|
execute a:entry.cmd a:entry.path
|
||||||
endif
|
endif
|
||||||
call s:check_user_options()
|
call s:check_user_options()
|
||||||
|
|
Loading…
Reference in a new issue