Hi, nice plugin!
When I first open the quickfix window after populating it with some items, the styling and the column alignments aren't there. But after I close it and re-open it, or if I add an item to the list, the style and lining up gets applied.
I'm using telescope's live grep to add items to quickfix btw.
This is my config using lazy.nvim
{
"arsham/listish.nvim",
dependencies = {
"arsham/arshlib.nvim",
},
ft = "qf",
config = true,
keys = {
{ "<leader>qq", desc = "Add current position to quicklist" },
{ "<leader>qn", desc = "Add current position with note to quicklist" },
{ "<leader>qo", desc = "Open quicklist" },
{ "<leader>ww", desc = "Add current position to location list" },
{ "<leader>wn", desc = "Add current position with note to location list" },
{ "<leader>wo", desc = "Open location list" },
{ "<leader>qd", desc = "Clear quicklist" },
{ "<leader>qc", desc = "Close quicklist" },
{ "<leader>wd", desc = "Clear location list" },
{ "<leader>wc", desc = "Close location list" },
{ "<leader>cc", desc = "Close both quicklist and location list" },
},
},
Hi, nice plugin!
When I first open the quickfix window after populating it with some items, the styling and the column alignments aren't there. But after I close it and re-open it, or if I add an item to the list, the style and lining up gets applied.
I'm using telescope's live grep to add items to quickfix btw.
This is my config using lazy.nvim
{ "arsham/listish.nvim", dependencies = { "arsham/arshlib.nvim", }, ft = "qf", config = true, keys = { { "<leader>qq", desc = "Add current position to quicklist" }, { "<leader>qn", desc = "Add current position with note to quicklist" }, { "<leader>qo", desc = "Open quicklist" }, { "<leader>ww", desc = "Add current position to location list" }, { "<leader>wn", desc = "Add current position with note to location list" }, { "<leader>wo", desc = "Open location list" }, { "<leader>qd", desc = "Clear quicklist" }, { "<leader>qc", desc = "Close quicklist" }, { "<leader>wd", desc = "Clear location list" }, { "<leader>wc", desc = "Close location list" }, { "<leader>cc", desc = "Close both quicklist and location list" }, }, },