diff options
author | June McEnroe <programble@gmail.com> | 2012-03-30 17:21:11 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2012-03-30 17:21:11 -0400 |
commit | a2f8f3d252e11bbe52ca6eb5d899eb174d0d8262 (patch) | |
tree | f0c33b2cd10070225cc6ce04e162823971d9cc70 /.zshrc | |
parent | Remove ZSH gvim function and clean up .zshrc (diff) | |
download | src-a2f8f3d252e11bbe52ca6eb5d899eb174d0d8262.tar.gz src-a2f8f3d252e11bbe52ca6eb5d899eb174d0d8262.zip |
Add task count to prompt
Diffstat (limited to '')
-rw-r--r-- | .zshrc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.zshrc b/.zshrc index 62ee50b2..0b414afe 100644 --- a/.zshrc +++ b/.zshrc @@ -142,11 +142,14 @@ alias killlall='killall' alias irb='ripl' alias l='ls' -function prompt_char { - echo '%(!.#.$)' +setopt PROMPT_SUBST + +function prompt_task { + COUNT=$(task count -longterm) + [ "$COUNT" -gt 0 ] && echo "[%{$fg[red]%}$COUNT%{$fg[green]%}]" } -PROMPT="%{$terminfo[bold]$fg[green]%}[%{$fg[blue]%}%30<..<%~%{$fg[green]%}]%(!.#.$)%{$terminfo[sgr0]$reset_color%} " +PROMPT="%{$terminfo[bold]$fg[green]%}[%{$fg[blue]%}%30<..<%~%{$fg[green]%}]\$(prompt_task)%(!.#.$)%{$terminfo[sgr0]$reset_color%} " RPROMPT="%(?..%{$terminfo[bold]$fg[green]%}[%{$fg[red]%}%?%{$fg[green]%}]%{$terminfo[sgr0]%})" source ~/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh |