]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - zsh/rc
zsh: Reorder completion settings.
[config/dotfiles.git] / zsh / rc
diff --git a/zsh/rc b/zsh/rc
index ccd950faf603c341ad9dff4d766f25fef17acc62..f283279fe4d1fc01c3c28544f411522104739136 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -128,10 +128,19 @@ fi
 #
 # When a program is started preexec() sets the window's name to it; when it
 # stops precmd() resets the windows' name to 'zsh'.
+#
+# It works with screen and xterm. If screen is running in X11 (DISPLAY is set)
+# and stumpwm is used (it's tested if stumpish is available) then the window
+# title is also set in stumpwm using stumpish.
 if [[ $TERM == screen || $TERM == xterm* ]]; then
     # Set to a non empty value to reset the window name in the next precmd()
     # call.
     window_reset=yes
+    # Set to a non empty value when the stump window manager is available.
+    which stumpwm &> /dev/null
+    if [[ $? -eq 0 ]]; then
+        window_stumpwm=yes
+    fi
 
     window_preexec() {
         # Get the program name with its arguments.
@@ -187,6 +196,13 @@ if [[ $TERM == screen || $TERM == xterm* ]]; then
     window_title() {
         if [[ $TERM == screen ]]; then
             print -n "\ek$1\e\\"
+
+            # Update window name in stumpwm if running screen in X11 and when
+            # stumpwm is used.
+            if [[ -n $DISPLAY && -n $window_stumpwm ]]; then
+                echo "$1" | stumpish -e "title" > /dev/null
+            fi
+
         elif [[ $TERM == xterm* ]]; then
             print -n "\e]2;$1\e\\"
         fi
@@ -206,27 +222,32 @@ zmodload zsh/complist
 # Use new completion system, store dumpfile in ~/.zsh/cache to prevent
 # cluttering of ~/.
 autoload -U compinit && compinit -d ~/.zsh/cache/zcompdump
+
+# Use cache to speed up completions.
+zstyle ':completion:*' use-cache on
+zstyle ':completion:*' cache-path ~/.zsh/cache
+
 # Make sure the list of possible completions is displayed after pressing <TAB>
 # the first time.
 setopt nolistambiguous
 # Allow completions in the middle of a text, i.e. "/usr/bin/<TAB>whatever"
 # completes like "/usr/bin/<TAB>". Useful when adding new options to commands.
 bindkey "^I" expand-or-complete-prefix
-# Use cache to speed up completions.
-zstyle ':completion:*' use-cache on
-zstyle ':completion:*' cache-path ~/.zsh/cache
 # Try uppercase if the currently typed string doesn't match. This allows
 # typing in lowercase most of the time and completion fixes the case.
 zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}'
-# Ignore completion functions.
-zstyle ':completion:*:functions' ignored-patterns '_*'
-# Ignore parent directory.
-zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd
+
 # Use ls like colors for completions.
 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
+
 # Make completion lists scrollable so "do you wish to see all n possibilities"
 # is no longer displayed.
 zstyle ':completion:*' list-prompt '%p'
+
+# Ignore completion functions.
+zstyle ':completion:*:functions' ignored-patterns '_*'
+# Ignore parent directory.
+zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd
 # When unsetting variables make sure every variable name is only suggested
 # once.
 zstyle ':completion:*:unset:*' ignore-line yes
@@ -327,6 +348,11 @@ todo() {
     fi
 }
 
+# Colorize stderr. Very useful when looking for errors. Thanks to
+# http://gentoo-wiki.com/wiki/Zsh
+exec 2>>(while read line; do
+    print '\e[91m'${(q)line}'\e[0m' > /dev/tty; print -n $'\0'; done &)
+
 
 # RUN COMMANDS