Mercurial > dotfiles
annotate .shell.d/99.prompt.zsh @ 380:0ceb8554801e
zsh: make vcs info in prompt async
Roughly cribbed from [0], but I'm hoping to rework this soon to use
the zsh async library that shouldn't require a tempfile.
0: http://www.anishathalye.com/2015/02/07/an-asynchronous-shell-prompt/
| author | Augie Fackler <raf@durin42.com> |
|---|---|
| date | Thu, 10 Mar 2016 18:56:28 -0500 |
| parents | 02b635053e8f |
| children | 491cd0cedeee |
| rev | line source |
|---|---|
| 0 | 1 # Magic prompt with colors |
| 2 # username in blue if not root | |
| 3 # username in red if root - time in pink w/ | |
| 4 # DANGER replacing the date | |
| 5 # failed jobs print exit status in the RPS1 with yellow text | |
| 6 setopt prompt_subst | |
| 7 | |
| 8 preexec () { | |
| 179 | 9 currJob="`echo $3 | cut -d ' ' -f 1 | head -n 1`" |
| 10 if [[ "$TERM" == "screen" ]]; then | |
| 11 hostUser="%10<...<%~%<<" | |
| 12 print -Pn "\ek[$hostUser $currJob]\e\\" | |
| 13 else | |
| 14 if [[ "$FANCYTYPE" == "YES" ]]; then | |
| 15 hostUser="%n@%m: %2~" | |
| 16 print -Pn "\e]0;$hostUser [$currJob]\a" | |
| 17 fi | |
| 18 fi | |
| 0 | 19 } |
| 20 | |
|
380
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
21 PROMPT_TMP="${HOME}/.augie-zsh-tmp-prompt" |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
22 |
| 0 | 23 function right_side_prompt() { |
| 24 branch=`vcs_current_branch` | |
| 25 if [ $? = 0 ] ; then | |
|
380
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
26 echo -n $branch > "$PROMPT_TMP" |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
27 kill -s USR1 $$ |
| 0 | 28 fi |
| 29 } | |
| 30 | |
|
380
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
31 function TRAPUSR1() { |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
32 rps_branch=$(cat "$PROMPT_TMP") |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
33 zle && zle reset-prompt |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
34 } |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
35 |
| 0 | 36 function precmd () { |
|
380
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
37 rps_branch="$(date '+%D %H:%M')" |
|
0ceb8554801e
zsh: make vcs info in prompt async
Augie Fackler <raf@durin42.com>
parents:
272
diff
changeset
|
38 right_side_prompt &! |
| 0 | 39 } |
| 40 | |
| 41 if [ "x`whoami`" = "xroot" ] ; then | |
| 179 | 42 PS1=$'%{\e];%n@%m: %2~ [zsh]\a%}[%m:%3~] %{\e[31m%}%n%{\e[0m%}%# ' |
| 43 if [[ "$TERM" == "screen" ]] ; then | |
| 44 PS1=$'%{\ek[%2~ zsh]\e\\%}[%m:%3~] %{\e[31m%}%n%{\e[0m%}%# ' | |
| 45 fi | |
| 46 RPS1=$'%{\e[1;35m%}[DANGER %t]%{\e[0m%}%(?..%{\e[1;33m%} %?%{\e[1;0m%})' | |
| 0 | 47 else |
| 179 | 48 PS1=$'%{\e];%n@%m: %2~ [zsh]\a%}[%m:%3~] %{\e[34m%}%n%{\e[0m%}%# ' |
| 49 if [[ "$TERM" == "screen" ]]; then | |
| 50 PS1=$'%{\ek[%2~ zsh]\e\\%}[%m:%3~] %{\e[34m%}%n%{\e[0m%}%# ' | |
| 51 fi | |
| 0 | 52 RPS1=$'[$rps_branch]%(?..%{\e[1;33m%} %?%{\e[0m%})' |
| 53 fi | |
| 54 | |
|
178
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
55 |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
56 export FANCYTYPE="NO" |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
57 |
|
272
02b635053e8f
zsh prompt: allow fancy prompt mode on xterm-256color as well
Augie Fackler <durin42@gmail.com>
parents:
182
diff
changeset
|
58 for ok in rxvt rxvt-unicode xterm xterm-256color xterm-color screen ; do |
|
178
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
59 if [ "$TERM" = "$ok" ] ; then |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
60 export FANCYTYPE="YES" |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
61 fi |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
62 done |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
63 |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
64 if [ $FANCYTYPE = "NO" ] ; then |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
65 prompt='[%m:%3~] %n%# ' |
|
da329720ff18
zsh prompt: add urxvt to whitelisted terms, use a loop instead of many ifs
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
66 RPS1=$'[%W %t]' |
| 0 | 67 fi |
| 68 | |
|
182
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
69 if [[ $TERM == "dumb" ]]; then # in emacs |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
70 # for tramp to not hang, need the following. cf: |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
71 # http://www.emacswiki.org/emacs/TrampMode |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
72 unsetopt zle |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
73 unsetopt prompt_cr |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
74 unsetopt prompt_subst |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
75 unfunction precmd |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
76 unfunction preexec |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
77 fi |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
78 |
|
e189dfb33bfa
zsh prompt: unset basically everything if in tramp
Augie Fackler <durin42@gmail.com>
parents:
179
diff
changeset
|
79 |
| 0 | 80 #nonfancy no-frills prompt - disabled (same as the "non-fancy" one above) |
| 81 #prompt='[%m:%3~] %n%# ' | |
| 82 #RPS1=$'[%W %t]' |
