2.home-manager/tests/modules/programs/fzf/default.nix
Austin Horstman 0396024ea5 fzf: warn on conflicting ctrl-r bindings
Detect active fzf and history-manager Ctrl-R bindings by their configured values, warn with the winning precedence, and let the normal binding options silence the warning.
2026-07-02 15:28:15 -05:00

19 lines
999 B
Nix

{
fzf-bash-widget-overrides = ./bash-widget-overrides.nix;
fzf-ctrl-r-conflict-atuin-disabled = ./ctrl-r-conflict-atuin-disabled.nix;
fzf-ctrl-r-conflict-fzf-disabled = ./ctrl-r-conflict-fzf-disabled.nix;
fzf-ctrl-r-conflict-per-shell-disabled = ./ctrl-r-conflict-per-shell-disabled.nix;
fzf-ctrl-r-conflict-warning = ./ctrl-r-conflict-warning.nix;
fzf-disabled = ./disabled.nix;
fzf-options = ./all-options.nix;
fzf-bash-integration = ./bash-integration.nix;
fzf-zsh-widget-overrides = ./zsh-widget-overrides.nix;
fzf-zsh-integration = ./zsh-integration.nix;
fzf-fish-widget-overrides = ./fish-widget-overrides.nix;
fzf-fish-integration = ./fish-integration.nix;
fzf-history-command-version-warning = ./history-command-version-warning.nix;
fzf-nushell-integration = ./nushell-integration.nix;
fzf-nushell-history-command = ./nushell-history-command.nix;
fzf-nushell-widget-overrides = ./nushell-widget-overrides.nix;
fzf-renamed-options = ./renamed-options.nix;
}