Skip to content
Snippets Groups Projects
Unverified Commit a1049328 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[vim] Adjust split size when --header option is set

Close #622
parent 5c2b96bd
No related branches found
No related tags found
No related merge requests found
......@@ -282,6 +282,7 @@ function! s:calc_size(max, val, dict)
let opts = get(a:dict, 'options', '').$FZF_DEFAULT_OPTS
let margin = stridx(opts, '--inline-info') > stridx(opts, '--no-inline-info') ? 1 : 2
let margin += stridx(opts, '--header') > stridx(opts, '--no-header')
return srcsz >= 0 ? min([srcsz + margin, size]) : size
endfunction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment