Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With this PR, now one could do: ```lua require("quicker").toggle({ open_cmd_mods = { split = "botright" } }) require("quicker").open({ open_cmd_mods = { split = "botright" } }) ``` An alternative to this PR is using the following autocmd. ```lua local init = function() vim.api.nvim_create_autocmd("FileType", { desc = "Open quickfix list globally", group = vim.api.nvim_create_augroup("quickfix_toggle", { clear = true }), pattern = "qf", command = "wincmd J", }) end ```
- Loading branch information