Skip to content

atusy/qfscope.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

qfscope.nvim

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 using live_grep.

Of course, you can use qfscope.nvim with other telescope commands such as marks, diagnostics, lsp_reference and so on.

Demo

The left pane shows the descriptions, and the right pane shows the demo.

2024-07-29.11-13-15.mp4

Example setup

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,
			},
		},
	},
})

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages