]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Show full path to currently changed directory
[dotfiles.git] / zsh / .zshrc
index ef56e6820fea2b010cb2bd77258d1f5fa1a296a3..42dbbb4121d75b67a0d530b3837dcb97b4737d45 100644 (file)
@@ -97,13 +97,14 @@ alias sshnm="ssh -S none"
 # Faster movement {{{
 cddotdot() {
     cd ..
+    pwd
     zle reset-prompt
 }
 zle -N cddotdot
 bindkey "\eOQ" cddotdot # F2
 
 pushdquiet() {
-    popd >/dev/null
+    popd
     zle reset-prompt
 }
 zle -N pushdquiet