]> git.sev.monster Git - dotfiles.git/blobdiff - etc/zsh/.zlogout
gitconfig: add git search alias
[dotfiles.git] / etc / zsh / .zlogout
index 1b2b26679a760b26ab5e450b94cda3546d5a28c6..8ab31d138c2edad82ff9c6578d58bd722a844e57 100644 (file)
@@ -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
     # 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
     # 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
     }
     if (( y == 0 )) {
         # fallback, send ECMA-48 clear
-        echo -n '\e[2J'
+        echo -en '\e[2J'
     }
     echo logout
 }
     }
     echo logout
 }
This page took 0.034845 seconds and 4 git commands to generate.