From 44ba0184376c1bf017b8f2646a6040fb66d9c3e8 Mon Sep 17 00:00:00 2001 From: Masanori Ogino <167209+omasanori@users.noreply.github.com> Date: Thu, 20 Jul 2023 03:33:38 +0900 Subject: [PATCH] jujutsu: update for Jujutsu 0.8.0 (#4250) --- modules/programs/jujutsu.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/programs/jujutsu.nix b/modules/programs/jujutsu.nix index aca23550..32cb1e34 100644 --- a/modules/programs/jujutsu.nix +++ b/modules/programs/jujutsu.nix @@ -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 ''; }; }