]> git.sev.monster Git - dotfiles.git/blobdiff - base/.zshrc
.zshrc changes
[dotfiles.git] / base / .zshrc
index e68c85bf66dcd734552dc3c2617685644dffd04b..228588972499dff50d3d926b5f517afb4787fe5e 100644 (file)
@@ -85,20 +85,24 @@ zstyle ':vcs_info:git*' check-for-staged-changes true
 zstyle ':vcs_info:git*' stagedstr   "%F{blue}+"
 zstyle ':vcs_info:git*' unstagedstr "%F{red}*"
 
 zstyle ':vcs_info:git*' stagedstr   "%F{blue}+"
 zstyle ':vcs_info:git*' unstagedstr "%F{red}*"
 
+# hooks
 function precmd {
 function precmd {
+    # change terminal title
     print -Pn "\e]0;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\a"
     print -Pn "\e]0;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\a"
+    # update vcs
     vcs_info
     vcs_info
-    if ((SECONDS - _exectime >= 5)) {
-        # bell if exec takes 5s
-        print "\a"
-    }
+    # bell if exec takes 5s
+    if ((SECONDS - _exectime >= 5)) print "\a"
 }
 function preexec {
 }
 function preexec {
-    # change Xorg title
+    # change terminal title to show command
     print -Pnf "\e]0;%s\a" "%#${SSH_CLIENT+$USER@$HOST:}$1"
     print -Pnf "\e]0;%s\a" "%#${SSH_CLIENT+$USER@$HOST:}$1"
-    # save last exec time
+    # save last exec time for bell
     _exectime=$SECONDS
 }
     _exectime=$SECONDS
 }
+function chpwd {
+    l
+}
 
 # The following lines were added by compinstall
 zstyle ':completion:*' auto-description 'specify: %d'
 
 # The following lines were added by compinstall
 zstyle ':completion:*' auto-description 'specify: %d'
This page took 0.028535 seconds and 4 git commands to generate.