X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=d283180ee40fa28812f241aaf1e55a25065e7cae;hb=8bc47e86683eaf0c8c91a2b9ccccd7bfbd1ede9a;hp=b28757eec6fffce0634f977e02decfd7d8ffe674;hpb=b4b3911d9f162de2a8632de90dfe3449cf58a4f2;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index b28757e..d283180 100644 --- a/zsh/rc +++ b/zsh/rc @@ -91,6 +91,48 @@ add-zsh-hook precmd prompt_precmd # Display the vcs information in the right prompt. RPROMPT='${vcs_info_msg_0_}' +# When screen is used set the name of the window to the currently running +# program. +# +# When a program is started preexec() sets the window's name to it; when it +# stops precmd() resets the windows' name to 'zsh'. +if [[ $TERM == screen ]]; then + # Set to a non empty value to reset the window name in the next precmd() + # call. + screen_name_reset=yes + + screen_preexec() { + # Get the application name excluding any arguments. + local program_name=${1%% *} + + # Ignore often used commands which are only running for a very short + # time. This prevents a "blinking" name when it's changed to "cd" for + # example and then some milliseconds later back to "zsh". + [[ $program_name == (cd*|ls|la|ll|clear) ]] && return + + # Set the window name to the currently running program. + print -n "\ek$program_name\e\\" + + # Tell precmd() to reset the window name when the program stops. + screen_name_reset=yes + } + + screen_precmd() { + # Abort if no window name reset is necessary. + [[ -z $screen_name_reset ]] && return + + # Reset the window name to 'zsh'. + print -n "\ekzsh\e\\" + + # Just reset the name, so no screen reset necessary for the moment. + screen_name_reset= + } + + # Add the preexec() and precmd() hooks. + add-zsh-hook preexec screen_preexec + add-zsh-hook precmd screen_precmd +fi + # COMPLETION SETTINGS @@ -123,8 +165,9 @@ zstyle ':completion:*' list-prompt '%p' # When unsetting variables make sure every variable name is only suggested # once. zstyle ':completion:*:unset:*' ignore-line yes -# When working with mercurial don't complete the same file multiple times. -zstyle ':completion:*:hg*:*' ignore-line yes +# When working with Mercurial and Git don't complete the same file multiple +# times. Very useful when completing file names. +zstyle ':completion:*:(hg|git)*:*' ignore-line yes # ALIAS AND FUNCTION SETTINGS