# HG changeset patch # User Augie Fackler # Date 1741206596 18000 # Node ID 97e017743fd42274c48e2b17e446b702bf33fc5d # Parent e69d3e15b1b74956f3f733b217a98d70d0c556d6 zsh: add jj completions diff --git a/.shell.d/99.jj.zsh b/.shell.d/99.jj.zsh new file mode 100644 --- /dev/null +++ b/.shell.d/99.jj.zsh @@ -0,0 +1,5 @@ +if which jj 2> /dev/null > /dev/null; then + autoload -U compinit + compinit + source <(jj util completion zsh) +fi