diff options
author | 2025-03-01 02:14:51 +0100 | |
---|---|---|
committer | 2025-03-01 02:14:51 +0100 | |
commit | 704cd7fd6984546fa98a7e2405701e0e2b037b00 (patch) | |
tree | eb93568bac02109db6daf7085782423872939dd8 | |
parent | 396a5a7fb6274d61586a48272f977dab426b1a55 (diff) | |
download | zuwu-704cd7fd6984546fa98a7e2405701e0e2b037b00.tar.gz zuwu-704cd7fd6984546fa98a7e2405701e0e2b037b00.tar.bz2 zuwu-704cd7fd6984546fa98a7e2405701e0e2b037b00.tar.lz zuwu-704cd7fd6984546fa98a7e2405701e0e2b037b00.zip |
fix: use which
-rwxr-xr-x | zuwu.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ eval_append() { <<<"$2" >> "$1" eval "$2" } -if ! test compinit >/dev/null 2>/dev/null; then +if ! which compinit >/dev/null 2>/dev/null; then eval_append ~/.zshrc "$(<<EOF # The following lines were added by compinstall zstyle ':completion:*' completer _complete _ignored _approximate |