quickfix + telescope = qfscope
Trigger qfscope.nvim
actions and refine telescope.nvim search results by fuzzy keywords or regex patterns in quickfix list.
qfscope.nvim
also provides a simple history navigations.
Typical use case is to refine search results of :Telescope live_grep
like below.
- Refinements by fuzzy finding filename, which cannot be done by
live_grep
. - Refinements by grepping
live_grep
-matched text, which may require if only usinglive_grep
.
Of course, you can use qfscope.nvim
with other telescope commands such as marks
, diagnostics
, lsp_reference
and so on.
The left pane shows the descriptions, and the right pane shows the demo.
2024-07-29.11-13-15.mp4
local qfs_actions = require("qfscope.actions")
require("telescope").setup({
defaults = {
mappings = {
i = {
["<C-G><C-G>"] = qfs_actions.qfscope_search_filename,
["<C-G><C-F>"] = qfs_actions.qfscope_grep_filename,
["<C-G><C-L>"] = qfs_actions.qfscope_grep_line,
["<C-G><C-T>"] = qfs_actions.qfscope_grep_text,
},
},
},
})