Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(open_cmd): add
open_cmd
option to toggle()
and open()
APIs
With this PR, now one could do: ```lua require("quicker").toggle({ open_cmd = "botright copen" }) require("quicker").open({ open_cmd = "botright copen" }) ``` 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