mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
Use prompt expansion sequence to color red the output
This makes it clearer and possibly more portable for different platforms.
This commit is contained in:
parent
3976e04035
commit
6a8d406eaa
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ zstyle '*' single-ignored show
|
||||||
|
|
||||||
if [[ $COMPLETION_WAITING_DOTS = true ]]; then
|
if [[ $COMPLETION_WAITING_DOTS = true ]]; then
|
||||||
expand-or-complete-with-dots() {
|
expand-or-complete-with-dots() {
|
||||||
echo -n "\e[31m......\e[0m"
|
print -Pn "%{%F{red}......%f%}"
|
||||||
zle expand-or-complete
|
zle expand-or-complete
|
||||||
zle redisplay
|
zle redisplay
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue