From 1821eb11f17d66e01122972cc3bb5e12b68923f3 Mon Sep 17 00:00:00 2001 From: rockerBOO Date: Sun, 4 Oct 2020 16:19:56 -0400 Subject: fix: Results height configurable. Properly collapse on border = false --- lua/telescope/pickers.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lua/telescope/pickers.lua') diff --git a/lua/telescope/pickers.lua b/lua/telescope/pickers.lua index 8f3483d..aa18db6 100644 --- a/lua/telescope/pickers.lua +++ b/lua/telescope/pickers.lua @@ -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), + 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 -- cgit v1.2.3