ZSH: Updated config

This commit is contained in:
2026-02-12 22:19:51 +01:00
parent 1d663f2a60
commit c813e48c26
13 changed files with 31 additions and 36 deletions

View File

@@ -2,7 +2,7 @@
function zwcpurge() {
autoload -Uz zrecompile
for zsh_file in $(find ${ZDOTDIR} -maxdepth 3 -type f \( -name "*.zwc" -o -name "*.zwc.old" \)); do
rm -f ${zsh_file}
for zsh_file in $(find "${ZDOTDIR}" -maxdepth 3 -type f \( -name "*.zwc" -o -name "*.zwc.old" \)); do
rm -f "${zsh_file}"
done
}