]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: clear sets window title to ".zsh".
authorSimon Ruderich <simon@ruderich.org>
Sun, 7 Jun 2009 17:44:38 +0000 (19:44 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 7 Jun 2009 17:44:38 +0000 (19:44 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index d101a3c22723da62d890215d1a61d86677873141..3e3be66c705cc1791e4961ffdb8442f8b434f2fd 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -270,6 +270,15 @@ if [[ $TERM == screen* || $TERM == xterm* ]]; then
     add-zsh-hook precmd window_precmd
 fi
 
+# If the window naming feature is used (see above) then use ".zsh" (leading
+# dot) as title name after running clear so it's clear to me that the window
+# is empty. I open so much windows that I don't know in which I have something
+# important. This helps me to remember which windows are empty (I run clear
+# after I finished my work in a window).
+if [[ -n $window_reset ]]; then
+    alias clear='clear; window_title .zsh'
+fi
+
 
 # COMPLETION SETTINGS