]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Display the job count in zsh's prompt.
authorSimon Ruderich <simon@ruderich.org>
Fri, 3 Oct 2008 16:32:37 +0000 (18:32 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 16 Feb 2009 15:34:39 +0000 (16:34 +0100)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 52318bc88e50e3c2c72864c4042805bed1ca4a01..618e7d1d9d9a2c72a0bb44e7b1272ca261f5c35e 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -36,12 +36,13 @@ setopt correct
 autoload -U colors && colors
 
 # Set the default prompt. The current host and working directory is displayed,
-# the exit code of the last command if it wasn't 0 and a + if this shell is
-# running inside another shell.
+# the exit code of the last command if it wasn't 0, the number of running jobs
+# if not 0 and a + if this shell is running inside another shell.
 # The prompt is in green and blue to make easily detectable, the error exit
-# code in red and bold.
+# code in red and bold and the job count in yellow.
 PROMPT="%{${fg[green]}%}%B%m%b%{${fg[default]}%}:\
-%{${fg[blue]}%}%B%~%b%{${fg[default]}%} %(2L.+.)%# \
+%{${fg[blue]}%}%B%~%b%{${fg[default]}%} \
+%(1j.%{${fg[yellow]}%}%j%{${fg[default]}%}.)%(2L.+.)%# \
 %(?..(%{${fg[red]}%}%B%?%b%{${fg[default]}%}%) )"
 
 # Use new completion system.