We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85bedb7 commit 28d5c28Copy full SHA for 28d5c28
lua/trouble/view/window.lua
@@ -311,6 +311,7 @@ function M:mount_float(opts)
311
config.focusable = true
312
config.height = opts.size.height <= 1 and math.floor(parent_size.height * opts.size.height) or opts.size.height
313
config.width = opts.size.width <= 1 and math.floor(parent_size.width * opts.size.width) or opts.size.width
314
+ config.border = opts.border or "none"
315
316
config.row = math.abs(opts.position[1]) <= 1 and math.floor((parent_size.height - config.height) * opts.position[1])
317
or opts.position[1]
0 commit comments