Revert "Skip compiled wordcode files (ie. zwc extensions)"

This reverts commit 5178a8a1a8.
This commit is contained in:
Geoff Harcourt 2017-05-25 13:10:02 -04:00
parent 88618e5858
commit 0078865a67

3
zshrc
View file

@ -10,7 +10,6 @@ _load_settings() {
if [ -d "$_dir" ]; then
if [ -d "$_dir/pre" ]; then
for config in "$_dir"/pre/**/*(N-.); do
if [ ${config:e} = "zwc" ] ; then continue ; done
. $config
done
fi
@ -25,7 +24,6 @@ _load_settings() {
;;
*)
if [ -f $config ]; then
if [ ${config:e} = "zwc" ] ; then continue ; done
. $config
fi
;;
@ -34,7 +32,6 @@ _load_settings() {
if [ -d "$_dir/post" ]; then
for config in "$_dir"/post/**/*(N-.); do
if [ ${config:e} = "zwc" ] ; then continue ; done
. $config
done
fi