summaryrefslogtreecommitdiff
path: root/lua/telescope
diff options
context:
space:
mode:
authorBen Smith <37027883+smithbm2316@users.noreply.github.com>2021-02-28 10:16:47 +0000
committerGitHub <noreply@github.com>2021-02-28 11:16:47 +0100
commited2764a1bda029911e357a18f0797729e7771b81 (patch)
tree22fce86dff6f7beee49dce011b1bb991917eb4ef /lua/telescope
parente1c8ad5d7815b1986edbdb01958155d21c20e5d8 (diff)
feat: layout horizontal and vertical can now be mirrored (#548)
See documentation for more info
Diffstat (limited to 'lua/telescope')
-rw-r--r--lua/telescope/pickers/layout_strategies.lua56
1 files changed, 47 insertions, 9 deletions
diff --git a/lua/telescope/pickers/layout_strategies.lua b/lua/telescope/pickers/layout_strategies.lua
index 382d9a6..16919de 100644
--- a/lua/telescope/pickers/layout_strategies.lua
+++ b/lua/telescope/pickers/layout_strategies.lua
@@ -21,7 +21,8 @@
--- - columns : number Columns in the vim window
--- - lines : number Lines in the vim window
---
---- TODO: I would like to make these link to `telescope.layout_strategies.*`, but it's not yet possible.
+--- TODO: I would like to make these link to `telescope.layout_strategies.*`,
+--- but it's not yet possible.
---
--- Available layout strategies include:
--- horizontal:
@@ -33,6 +34,24 @@
--- flex:
--- - See |layout_strategies.flex|
---
+--- Available tweaks to the settings in layout defaults include
+--- (can be applied to horizontal and vertical layouts):
+--- mirror (default is `false`):
+--- - Flip the view of the current layout:
+--- - If using horizontal: if `true`, swaps the location of the
+--- results/prompt window and preview window
+--- - If using vertical: if `true`, swaps the location of the results and
+--- prompt windows
+---
+--- width_padding:
+--- - How many cells to pad the width of Telescope's layout window
+---
+--- height_padding:
+--- - How many cells to pad the height of Telescope's layout window
+---
+--- preview_width:
+--- - Change the width of Telescope's preview window
+---
---@brief ]]
local config = require('telescope.config')
@@ -76,6 +95,7 @@ layout_strategies.horizontal = function(self, max_columns, max_lines)
width_padding = "How many cells to pad the width",
height_padding = "How many cells to pad the height",
preview_width = "(Resolvable): Determine preview width",
+ mirror = "Flip the location of the results/prompt and preview windows",
})
local initial_options = self:_get_initial_window_options()
@@ -133,9 +153,16 @@ layout_strategies.horizontal = function(self, max_columns, max_lines)
preview.height = 0
end
- results.col = width_padding
- prompt.col = width_padding
- preview.col = results.col + results.width + 2
+ -- Default value is false, to use the normal horizontal layout
+ if not layout_config.mirror then
+ results.col = width_padding
+ prompt.col = width_padding
+ preview.col = results.col + results.width + 2
+ else
+ preview.col = width_padding
+ prompt.col = preview.col + preview.width + 2
+ results.col = preview.col + preview.width + 2
+ end
preview.line = height_padding
if self.window.prompt_position == "top" then
@@ -229,9 +256,14 @@ end
--- +-----------------+
---
layout_strategies.vertical = function(self, max_columns, max_lines)
- local layout_config = self.layout_config or {}
- local initial_options = self:_get_initial_window_options()
+ local layout_config = validate_layout_config(self.layout_config or {}, {
+ width_padding = "How many cells to pad the width",
+ height_padding = "How many cells to pad the height",
+ preview_height = "(Resolvable): Determine preview height",
+ mirror = "Flip the locations of the results and prompt windows",
+ })
+ local initial_options = self:_get_initial_window_options()
local preview = initial_options.preview
local results = initial_options.results
local prompt = initial_options.prompt
@@ -272,9 +304,15 @@ layout_strategies.vertical = function(self, max_columns, max_lines)
results.col, preview.col, prompt.col = width_padding, width_padding, width_padding
if self.previewer then
- preview.line = height_padding
- results.line = preview.line + preview.height + 2
- prompt.line = results.line + results.height + 2
+ if not layout_config.mirror then
+ preview.line = height_padding
+ results.line = preview.line + preview.height + 2
+ prompt.line = results.line + results.height + 2
+ else
+ prompt.line = height_padding
+ results.line = prompt.line + prompt.height + 2
+ preview.line = results.line + results.height + 2
+ end
else
results.line = height_padding
prompt.line = results.line + results.height + 2