From a4f450879119a2a000264bd5ac90b186e1147617 Mon Sep 17 00:00:00 2001 From: Matt Moriarity Date: Fri, 4 Aug 2023 03:19:57 -0600 Subject: [PATCH] jujutsu: fix zsh completion (#4305) --- modules/programs/jujutsu.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/jujutsu.nix b/modules/programs/jujutsu.nix index 32cb1e34..c511f2dc 100644 --- a/modules/programs/jujutsu.nix +++ b/modules/programs/jujutsu.nix @@ -65,7 +65,7 @@ in { ''; programs.zsh.initExtra = mkIf cfg.enableZshIntegration '' - source <(${pkgs.jujutsu}/bin/jj util completion --zsh | sed '$d') + source <(${pkgs.jujutsu}/bin/jj util completion --zsh) compdef _jj ${pkgs.jujutsu}/bin/jj '';