mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
jujutsu: update for Jujutsu 0.8.0 (#4250)
This commit is contained in:
parent
0841242b94
commit
44ba018437
1 changed files with 3 additions and 3 deletions
|
@ -61,16 +61,16 @@ in {
|
|||
};
|
||||
|
||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
||||
source <(${pkgs.jujutsu}/bin/jj debug completion)
|
||||
source <(${pkgs.jujutsu}/bin/jj util completion)
|
||||
'';
|
||||
|
||||
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
||||
source <(${pkgs.jujutsu}/bin/jj debug completion --zsh | sed '$d')
|
||||
source <(${pkgs.jujutsu}/bin/jj util completion --zsh | sed '$d')
|
||||
compdef _jj ${pkgs.jujutsu}/bin/jj
|
||||
'';
|
||||
|
||||
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
||||
${pkgs.jujutsu}/bin/jj debug completion --fish | source
|
||||
${pkgs.jujutsu}/bin/jj util completion --fish | source
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue