-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(debugging): add
quicker.nvim
(#1146)
- Loading branch information
Showing
6 changed files
with
72 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# nvim-bqf | ||
|
||
Better quickfix window in Neovim, polish old quickfix window. | ||
|
||
**Repository:** <https://github.com/kevinhwang91/nvim-bqf> | ||
**DEPRECATED** Use the new location: [`quickfix/nvim-bqf`](/lua/astrocommunity/quickfix/nvim-bqf) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
return { | ||
"kevinhwang91/nvim-bqf", | ||
ft = "qf", | ||
dependencies = { | ||
"AstroNvim/astrocore", | ||
---@param opts AstroCoreOpts | ||
opts = function(_, opts) | ||
if not opts.signs then opts.signs = {} end | ||
opts.signs.BqfSign = { text = " " .. require("astroui").get_icon "Selected", texthl = "BqfSign" } | ||
end, | ||
}, | ||
opts = {}, | ||
} | ||
vim.notify( | ||
"**DEPRECATED** astrocommunity.debugging.nvim-bqf\n\nPlease use new location:\n`astrocommunity.quickfix.nvim-bqf`", | ||
vim.log.levels.ERROR | ||
) | ||
return { import = "astrocommunity.quickfix.nvim-bqf" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# nvim-bqf | ||
|
||
Better quickfix window in Neovim, polish old quickfix window. | ||
|
||
**Repository:** <https://github.com/kevinhwang91/nvim-bqf> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
return { | ||
"kevinhwang91/nvim-bqf", | ||
ft = "qf", | ||
dependencies = { | ||
"AstroNvim/astrocore", | ||
---@param opts AstroCoreOpts | ||
opts = function(_, opts) | ||
if not opts.signs then opts.signs = {} end | ||
opts.signs.BqfSign = { text = " " .. require("astroui").get_icon "Selected", texthl = "BqfSign" } | ||
end, | ||
}, | ||
opts = {}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# quicker.nvim | ||
|
||
Improved UI and workflow for the Neovim quickfix | ||
|
||
**Repository:** <https://github.com/stevearc/quicker.nvim> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
return { | ||
"stevearc/quicker.nvim", | ||
ft = "qf", | ||
specs = { | ||
{ | ||
"AstroNvim/astrocore", | ||
---@type AstroCoreOpts | ||
opts = { | ||
options = { | ||
opt = { | ||
-- allow lazy loading on quickfix opening | ||
quickfixtextfunc = "v:lua.require'quicker.display'.quickfixtextfunc", | ||
}, | ||
}, | ||
mappings = { | ||
n = { | ||
["<Leader>xq"] = { function() require("quicker").toggle { focus = true } end, desc = "Toggle quickfix" }, | ||
["<Leader>xl"] = { | ||
function() require("quicker").toggle { focus = true, loclist = true } end, | ||
desc = "Toggle loclist", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
---@module "quicker" | ||
---@type quicker.SetupOptions | ||
opts = { | ||
keys = { | ||
{ | ||
">", | ||
function() require("quicker").expand { before = 2, after = 2, add_to_existing = true } end, | ||
desc = "Expand quickfix context", | ||
}, | ||
{ | ||
"<", | ||
function() require("quicker").collapse() end, | ||
desc = "Collapse quickfix context", | ||
}, | ||
}, | ||
}, | ||
} |