diff --git a/cli/.bashrc b/cli/.bashrc index 810c3a9..61c0ff5 100644 --- a/cli/.bashrc +++ b/cli/.bashrc @@ -18,7 +18,7 @@ PS1='\[\e[0m\][ \u@\h \[\e[34m\]\w\[\e[0m\] ]\n\$ ' unalias ls ld ll 2>/dev/null beep() { printf "\007"; } -fixterm() { printf "c"; } +fixterm() { printf "\u001bc"; } diff() { command diff --color "$@"; } tailf() { command less +F "$@"; } diff --git a/cli/.config/zsh/functions.zsh b/cli/.config/zsh/functions.zsh index 778b11d..60858cd 100644 --- a/cli/.config/zsh/functions.zsh +++ b/cli/.config/zsh/functions.zsh @@ -35,7 +35,7 @@ fsf() { } beep() { printf $'\007' } -fixterm() { printf $'c' } +fixterm() { printf $'\u001bc' } diff() { command diff --color $@ } tailf() { command less +F $@ }