diff options
author | 2025-05-26 20:46:35 +0200 | |
---|---|---|
committer | 2025-05-26 20:46:35 +0200 | |
commit | 9ba27b11f4f558729cb5e4bf97f4360ba73df852 (patch) | |
tree | 10c65824403d8e4b37de743706e450c60329bb49 | |
parent | 2103b4c4b524912dfc5e8b480062a6da184b4bb1 (diff) | |
download | zuwu-9ba27b11f4f558729cb5e4bf97f4360ba73df852.tar.gz zuwu-9ba27b11f4f558729cb5e4bf97f4360ba73df852.tar.bz2 zuwu-9ba27b11f4f558729cb5e4bf97f4360ba73df852.tar.lz zuwu-9ba27b11f4f558729cb5e4bf97f4360ba73df852.zip |
fix: if compinit is defined after us thats fine too
-rwxr-xr-x | zuwu.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ eval_append() { <<<"$2" >> "$1" eval "$2" } -if ! which compinit >/dev/null 2>/dev/null; then +if ! which compinit >/dev/null 2>/dev/null && ! grep compinit ~/.zshrc >/dev/null 2>/dev/null; then eval_append ~/.zshrc "$(<<EOF # The following lines were added by compinstall zstyle ':completion:*' completer _complete _ignored _approximate |