Skip to content

Commit

Permalink
plugins/telescope/live-greps-args: fix to_fuzzy_refine example
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
TKone7 authored and MattSturgeon committed Oct 16, 2024
1 parent b9ea7f8 commit 717e706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/by-name/telescope/extensions/live-greps-args.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ telescopeHelpers.mkExtension {
i = {
"<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-space>".__raw = ''require("telescope-live-grep-args.actions").actions.to_fuzzy_refine'';
"<C-space>".__raw = ''require("telescope.actions").to_fuzzy_refine'';
};
};
theme = "dropdown";
Expand Down

0 comments on commit 717e706

Please sign in to comment.