From 87fecbea95e0d82030933227f72475cd41fecc63 Mon Sep 17 00:00:00 2001 From: Ben Smith <37027883+smithbm2316@users.noreply.github.com> Date: Sun, 18 Jul 2021 00:42:23 -0700 Subject: [PATCH] fix for #847 (#1022) --- lua/telescope/pickers/layout_strategies.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lua/telescope/pickers/layout_strategies.lua b/lua/telescope/pickers/layout_strategies.lua index 3cc1496..43f9060 100644 --- a/lua/telescope/pickers/layout_strategies.lua +++ b/lua/telescope/pickers/layout_strategies.lua @@ -650,13 +650,6 @@ layout_strategies.current_buffer = make_documented_layout('current_buffer', { } end) -layout_strategies.bottom_pane = function(self, max_columns, max_lines) - local layout_config = validate_layout_config(self.layout_config or {}, { - height = "The height of the layout", - mirror = "Flip the default locations of preview/results windows (requires use of previewer)", - }) -end - --- Bottom pane can be used to create layouts similar to "ivy". --- --- For an easy ivy configuration, see |themes.get_ivy()|