Compare commits
No commits in common. "86e7b7990af79beffc4718425cc9c1bf8096dfe4" and "ca093dd4a8678cfb08ef0bcbe02c331ea6e786ee" have entirely different histories.
86e7b7990a
...
ca093dd4a8
|
@ -66,7 +66,7 @@ then
|
||||||
then
|
then
|
||||||
. ~/.zxtermcolors
|
. ~/.zxtermcolors
|
||||||
else
|
else
|
||||||
perl -e 'printf(qq{if whence xtermcontrol >/dev/null\nthen\nxtermcontrol --bg "#%02X%02X%02X" --fg "#000000"\nexport BG=light\nfi\n}, map { rand(128)+128 } qw(1 1 1))' > ~/.zxtermcolors
|
perl -e 'printf(qq{if whence xtermcontrol >/dev/null\nthen\nxtermcontrol --bg "#%02X%02X%02X"\nexport BG=light\nfi\n}, map { rand(128)+128 } qw(1 1 1))' > ~/.zxtermcolors
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
9
.zshrc
9
.zshrc
|
@ -121,16 +121,7 @@ fi
|
||||||
# don't want to recreate that mess manually.
|
# don't want to recreate that mess manually.
|
||||||
if [ -d ~/bin/func ]
|
if [ -d ~/bin/func ]
|
||||||
then
|
then
|
||||||
export FPATH
|
|
||||||
FPATH=`preppath -v FPATH ~/bin/func`
|
FPATH=`preppath -v FPATH ~/bin/func`
|
||||||
# We also have to mark all functions explicitely as undefined,
|
|
||||||
# or zsh won't look for them. (Is this new? I thought that zsh would
|
|
||||||
# automatically search for unknown commands in FPATH, too. Maybe
|
|
||||||
# there's an option for that.)
|
|
||||||
for f in ~/bin/func/*
|
|
||||||
do
|
|
||||||
typeset -fu $(basename $f)
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# for new style completion:
|
# for new style completion:
|
||||||
|
|
Loading…
Reference in New Issue