Skip to content

Commit a03a47c

Browse files
committed
Merge with b9fd522
2 parents 5aa8e64 + b9fd522 commit a03a47c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lua/plenary/popup/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ function popup.create(what, vim_options)
191191
local win_opts = {}
192192
win_opts.relative = "editor"
193193
win_opts.style = "minimal"
194+
win_opts.border = "none"
194195

195196
-- Add positional and sizing config to win_opts
196197
add_position_config(win_opts, vim_options, { width = 1, height = 1 })

lua/plenary/window/border.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ function Border:__align_calc_config(content_win_options, border_win_options)
231231
zindex = content_win_options.zindex or 50,
232232
noautocmd = content_win_options.noautocmd,
233233
focusable = vim.F.if_nil(border_win_options.focusable, false),
234+
border = "none",
234235
}
235236

236237
return nvim_win_config

0 commit comments

Comments
 (0)