1
0

zsh: globbing

This commit is contained in:
Konstantin Demin 2022-09-05 11:11:57 +03:00
parent 3220c72f6f
commit 2ef127fe7a
Signed by: krd
GPG Key ID: 1F33CB0BA4731BC6

View File

@ -13,13 +13,13 @@ dotfiles-git() { (
z-zwc-gen() {
local i
for i ( $(find "${ZSHU[d_conf]}/" -xdev -type f -name '*.zsh') ) ; do
for i ( "${ZSHU[d_conf]}"/**/*.zsh(N.r) ) ; do
zcompile -U "$i"
done
}
z-zwc-flush() {
find "${ZSHU[d_conf]}/" -xdev -type f -name '*.zwc' -delete
rm -f "${ZSHU[d_conf]}"/**/*.zwc(N.r)
}
z-update() {