-
Notifications
You must be signed in to change notification settings - Fork 430
feature: Respect 'winborder'
#1951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
enhancement
New feature or request
Comments
That looks similar to ibhagwan/fzf-lua#1907 (comment) |
Draft
6 tasks
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
This isn't stale and based on the reactions is highly desired |
To remove the border from the backdrop, you can use this small workaround until folke returns: vim.api.nvim_create_autocmd("FileType", {
desc = "User: fix backdrop for lazy window",
pattern = "lazy_backdrop",
group = vim.api.nvim_create_augroup("lazynvim-fix", { clear = true }),
callback = function(ctx)
local win = vim.fn.win_findbuf(ctx.buf)[1]
vim.api.nvim_win_set_config(win, { border = "none" })
end,
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you check the docs?
Is your feature request related to a problem? Please describe.
Neovim has just added a
'winborder'
option to set the default border style for floating windows: neovim/neovim@62d9fabDescribe the solution you'd like
It would be great if
'winborder'
was respected in the case where lazy'sui.border
setting is unset but'winborder'
is set!Describe alternatives you've considered
N/A
Additional context
No response
The text was updated successfully, but these errors were encountered: