We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to_fuzzy_refine
Hi,
Current built-in rg has to_fuzzy_refine which allow us to narrow down our search. It'd be great if we could use it for this extension.
rg
Related: nvim-telescope/telescope.nvim#2034
The text was updated successfully, but these errors were encountered:
I tested this and it worked with the current version
Sorry, something went wrong.
Yeah it works in the setup of Telescope you can write
extensions = { live_grep_args = { auto_quoting = true, -- enable/disable auto-quoting mappings = { -- extend mappings i = { ["<C-space>"] = actions.to_fuzzy_refine, ["<C-k>"] = lga_actions.quote_prompt(), ["<C-i>"] = lga_actions.quote_prompt({ postfix = " --iglob " }), }, }, }, },
It should be part of the read as C-space is already the default in Telescope live_grep
Support is given if you create a shortcut.
Closed by #80 , that documents it in the README
No branches or pull requests
Hi,
Current built-in
rg
hasto_fuzzy_refine
which allow us to narrow down our search. It'd be great if we could use it for this extension.Related: nvim-telescope/telescope.nvim#2034
The text was updated successfully, but these errors were encountered: