mirror of
https://github.com/nix-community/home-manager
synced 2024-12-25 03:09:47 +01:00
fzf: remove non-working historyWidgetCommand option (#1818)
The environment variable FZF_CTRL_R_COMMAND has never existed and been support by fzf according to `git grep FZF_CTRL_R_COMMAND $(git rev-list --all)` and `git log -G FZF_CTRL_R_COMMAND`.
This commit is contained in:
parent
029767ca63
commit
21952f1cab
1 changed files with 5 additions and 10 deletions
|
@ -7,6 +7,11 @@ let
|
||||||
cfg = config.programs.fzf;
|
cfg = config.programs.fzf;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
|
imports = [
|
||||||
|
(mkRemovedOptionModule [ "programs" "fzf" "historyWidgetCommand" ]
|
||||||
|
"This option is no longer supported by fzf.")
|
||||||
|
];
|
||||||
|
|
||||||
options.programs.fzf = {
|
options.programs.fzf = {
|
||||||
enable = mkEnableOption "fzf - a command-line fuzzy finder";
|
enable = mkEnableOption "fzf - a command-line fuzzy finder";
|
||||||
|
|
||||||
|
@ -74,15 +79,6 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
historyWidgetCommand = mkOption {
|
|
||||||
type = types.nullOr types.str;
|
|
||||||
default = null;
|
|
||||||
description = ''
|
|
||||||
The command that gets executed as the source for fzf for the
|
|
||||||
CTRL-R keybinding.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
historyWidgetOptions = mkOption {
|
historyWidgetOptions = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
default = [ ];
|
default = [ ];
|
||||||
|
@ -124,7 +120,6 @@ in {
|
||||||
(filterAttrs (n: v: v != [ ] && v != null) {
|
(filterAttrs (n: v: v != [ ] && v != null) {
|
||||||
FZF_ALT_C_COMMAND = cfg.changeDirWidgetCommand;
|
FZF_ALT_C_COMMAND = cfg.changeDirWidgetCommand;
|
||||||
FZF_ALT_C_OPTS = cfg.changeDirWidgetOptions;
|
FZF_ALT_C_OPTS = cfg.changeDirWidgetOptions;
|
||||||
FZF_CTRL_R_COMMAND = cfg.historyWidgetCommand;
|
|
||||||
FZF_CTRL_R_OPTS = cfg.historyWidgetOptions;
|
FZF_CTRL_R_OPTS = cfg.historyWidgetOptions;
|
||||||
FZF_CTRL_T_COMMAND = cfg.fileWidgetCommand;
|
FZF_CTRL_T_COMMAND = cfg.fileWidgetCommand;
|
||||||
FZF_CTRL_T_OPTS = cfg.fileWidgetOptions;
|
FZF_CTRL_T_OPTS = cfg.fileWidgetOptions;
|
||||||
|
|
Loading…
Reference in a new issue