1
0
mirror of https://github.com/akelge/vim synced 2025-07-06 14:59:07 +00:00

Add actual fancyTerm functiond definition :/

This commit is contained in:
2014-03-03 11:27:15 +00:00
parent b45d13450a
commit 221bea3542

View File

@ -0,0 +1,13 @@
fancyterms=('xterm' 'rxvt' 'screen')
for t in $fancyterms; do
if [ "${TERM#${t}}" != "$TERM" ]; then
unset fancyterms
return 0
fi
done
unset fancyterms
return 1
# vim: set ts=4 sw=4 tw=0 ft=zsh :