Merge pull request #760 from tebuevd/fix-telescope-pickers-config

telescope: correctly nest pickers under setupOpts
This commit is contained in:
tebuevd 2025-03-30 20:04:48 -07:00 committed by GitHub
parent d33286d549
commit fa7fb83315
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 5 deletions

View file

@ -283,3 +283,11 @@
[Sc3l3t0n](https://github.com/Sc3l3t0n): [Sc3l3t0n](https://github.com/Sc3l3t0n):
- Add F# support under `vim.languages.fsharp`. - Add F# support under `vim.languages.fsharp`.
[tebuevd](https://github.com/tebuevd):
- Fix `pickers` configuration for `telescope` by nesting it under `setupOpts`
- Fix `find_command` configuration for `telescope` by nesting it under
`setupOpts.pickers.find_files`
- Update default `telescope.setupOpts.pickers.find_files.find_command` to only
include files (and therefore exclude directories from results)

View file

@ -8,6 +8,12 @@
inherit (lib.nvim.binds) mkMappingOption; inherit (lib.nvim.binds) mkMappingOption;
inherit (lib.nvim.types) mkPluginSetupOption luaInline; inherit (lib.nvim.types) mkPluginSetupOption luaInline;
setupOptions = { setupOptions = {
pickers.find_files.find_command = mkOption {
description = "cmd to use for finding files";
type = either (listOf str) luaInline;
default = ["${pkgs.fd}/bin/fd" "--type=file"];
};
defaults = { defaults = {
vimgrep_arguments = mkOption { vimgrep_arguments = mkOption {
description = '' description = ''
@ -27,11 +33,6 @@
"--no-ignore" "--no-ignore"
]; ];
}; };
pickers.find_command = mkOption {
description = "cmd to use for finding files";
type = either (listOf str) luaInline;
default = ["${pkgs.fd}/bin/fd"];
};
prompt_prefix = mkOption { prompt_prefix = mkOption {
description = "Shown in front of Telescope's prompt"; description = "Shown in front of Telescope's prompt";
type = str; type = str;