]> Sergey Matveev's repositories - dotfiles.git/commitdiff
Show full path to currently changed directory
authorSergey Matveev <stargrave@stargrave.org>
Fri, 10 Jul 2020 15:40:08 +0000 (18:40 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Fri, 10 Jul 2020 15:40:08 +0000 (18:40 +0300)
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