]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Move window naming alias to alias section.
authorSimon Ruderich <simon@ruderich.org>
Mon, 3 Aug 2009 11:20:00 +0000 (13:20 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 3 Aug 2009 11:20:47 +0000 (13:20 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 4712a055f6a7c863c3c4b44e6fd9f94ec2412a07..62b4a58fe1a66d73b56c63480660ef58fb4ecaf5 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -270,15 +270,6 @@ if [[ $TERM == screen* || $TERM == xterm* || $TERM == rxvt* ]]; 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
 
@@ -401,6 +392,15 @@ function ll() {
     la -l $*
 }
 
+# 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
+
 # I sometimes confuse editor and shell, print a warning to prevent I exit the
 # shell.
 alias :q='echo "This is not Vim!" >&2'