diff --git a/lua/telescope/pickers.lua b/lua/telescope/pickers.lua index 7b879cb..618a6e1 100644 --- a/lua/telescope/pickers.lua +++ b/lua/telescope/pickers.lua @@ -291,6 +291,9 @@ function Picker:_create_window(bufnr, popup_opts, nowrap) a.nvim_win_set_option(win, "wrap", false) end local border_win = opts and opts.border and opts.border.win_id + if border_win then + a.nvim_win_set_option(border_win, "winblend", self.window.winblend) + end return win, opts, border_win end