-
Hi, I was wondering if it is possible to achieve something similar to the preview in Telescope's Here is a video for clarification: CleanShot.2024-07-30.at.14.41.52.mp4My current settings are these one: opts = function()
return {
winopts = {
preview = {
vertical = "up:50%",
layout = "vertical",
scrollbar = false,
},
},
winopts_fn = function()
local max_width = 120 / vim.o.columns
local max_height = 20 / vim.o.lines
return {
backdrop = 100,
width = math.min(max_width, 0.8),
height = math.min(max_height, 0.8),
}
end,
fzf_opts = {
-- ["--layout"] = "default",
["--layout"] = "reverse",
["--info"] = "inline-right",
-- ["--layout"] = "reverse-list",
},
} Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is possible with require("fzf-lua").setup({
previewers = { builtin = { toggle_behavior = "extend" } },
}) |
Beta Was this translation helpful? Give feedback.
This is possible with
previewers.builtin.toggle_behavior = 'extend'
, see #721 for more info and how to configure: