Skip to content

Commit 6fc8f35

Browse files
committed
fix: Enforce bottom positioning for quickfix and location lists
1 parent 4da7bdb commit 6fc8f35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/snacks/picker/actions.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,10 @@ local function setqflist(items, opts)
258258
end
259259
if opts and opts.win then
260260
vim.fn.setloclist(opts.win, qf)
261-
vim.cmd("lopen")
261+
vim.cmd("botright lopen")
262262
else
263263
vim.fn.setqflist(qf)
264-
vim.cmd("copen")
264+
vim.cmd("botright copen")
265265
end
266266
end
267267

0 commit comments

Comments
 (0)