X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/b484bab8b0951f1f1aa631b62fd486b685c6e0ff..e226ac038cb5616a177678c19023b639c3e9ef1c:/etc/zsh/.zlogout diff --git a/etc/zsh/.zlogout b/etc/zsh/.zlogout index 1b2b266..8ab31d1 100644 --- a/etc/zsh/.zlogout +++ b/etc/zsh/.zlogout @@ -15,7 +15,7 @@ if [[ -o interactive ]] { # send xterm scrollback clear extension just in case: # - TERM may not be set correctly # - terminfo/termcap database entry for reset may be buggy - echo -n '\e[3J' + echo -en '\e[3J' # use terminfo/termcap directly instead of relying on system clear/reset: # - often they are just wrappers for ncurses tput or other tools # - they may not even exist on lightweight systems @@ -35,7 +35,7 @@ if [[ -o interactive ]] { } if (( y == 0 )) { # fallback, send ECMA-48 clear - echo -n '\e[2J' + echo -en '\e[2J' } echo logout }