From 003a8453597d05c6a47b244ce15bfc6672ff2d6a Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 27 Jan 2009 18:01:27 +0100 Subject: [PATCH 1/1] Display expanded shortcut names in screen. --- zsh/rc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/zsh/rc b/zsh/rc index 9bedf87..2104c4e 100644 --- a/zsh/rc +++ b/zsh/rc @@ -110,6 +110,22 @@ if [[ $TERM == screen ]]; then # example and then some milliseconds later back to "zsh". [[ $program_name == (cd*|ls|la|ll|clear) ]] && return + # Change my shortcuts so the real name of the program is displayed. + case $program_name in + e) + program_name=elinks + ;; + g) + program_name=git + ;; + m) + program_name=mutt + ;; + v|vi) + program_name=vim + ;; + esac + # Set the window name to the currently running program. print -n "\ek$program_name\e\\" -- 2.44.2