plugins/telescope/live-greps-args: fix to_fuzzy_refine example

Fix the `to_fuzzy_refine` key binding example.

The `to_fuzzy_refine` function in the example is part of Telescope,
not the `telescope-live-grep-args` extension.
This commit is contained in:
Tobias Koller 2024-10-14 15:08:46 +02:00 committed by Matt Sturgeon
parent b9ea7f88b6
commit 717e7060fa
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -50,7 +50,7 @@ telescopeHelpers.mkExtension {
i = { i = {
"<C-k>".__raw = ''require("telescope-live-grep-args.actions").quote_prompt()''; "<C-k>".__raw = ''require("telescope-live-grep-args.actions").quote_prompt()'';
"<C-i>".__raw = ''require("telescope-live-grep-args.actions").quote_prompt({ postfix = " --iglob " })''; "<C-i>".__raw = ''require("telescope-live-grep-args.actions").quote_prompt({ postfix = " --iglob " })'';
"<C-space>".__raw = ''require("telescope-live-grep-args.actions").actions.to_fuzzy_refine''; "<C-space>".__raw = ''require("telescope.actions").to_fuzzy_refine'';
}; };
}; };
theme = "dropdown"; theme = "dropdown";