Guest User

Untitled

a guest
May 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. typeset -F SECONDS start
  2.  
  3. precmd () {
  4. start=$SECONDS
  5. }
  6.  
  7. zle-line-init () {
  8. PREDISPLAY="[$(( $SECONDS - $start ))] "
  9. }
  10. zle -N zle-line-init
Add Comment
Please, Sign In to add comment