1
0
mirror of https://github.com/akelge/zsh synced 2025-07-03 05:05:28 +00:00

Readd fancyTerm and add completion for stern

This commit is contained in:
Andrea Mistrali
2021-10-20 09:12:13 +02:00
parent e368970184
commit 66df77560a
2 changed files with 189 additions and 0 deletions

View File

@ -0,0 +1,11 @@
fancyterms=('xterm' 'rxvt' 'screen')
for t in $fancyterms; do
if [ "${TERM#${t}}" != "$TERM" ]; then
unset fancyterms
return 0
fi
done
unset fancyterms
return 1