fix: Results height configurable. Properly collapse on border = false

This commit is contained in:
rockerBOO
2020-10-04 16:19:56 -04:00
parent a1cab377db
commit 1821eb11f1
4 changed files with 16 additions and 8 deletions

View File

@@ -87,10 +87,13 @@ function Picker:new(opts)
-- TODO: If it's a list, of length 2, then it's a range of min to max?
height = get_default(opts.height, 0.8),
width = get_default(opts.width, config.values.width),
get_preview_width = get_default(opts.preview_width, config.values.get_preview_width),
results_width = get_default(opts.results_width, 0.8),
winblend = get_default(opts.winblend, config.values.winblend),
get_preview_width = get_default(opts.preview_width, config.values.get_preview_width),
results_width = get_default(opts.results_width, 0.8),
results_height = get_default(opts.results_height, 1),
winblend = get_default(opts.winblend, config.values.winblend),
prompt_position = get_default(opts.prompt_position, config.values.prompt_position),
-- Border config