summaryrefslogtreecommitdiff
path: root/zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zshrc')
-rwxr-xr-xzshrc13
1 files changed, 13 insertions, 0 deletions
diff --git a/zshrc b/zshrc
index a5570a2..8db2a50 100755
--- a/zshrc
+++ b/zshrc
@@ -59,3 +59,16 @@ export TZ='America/New_York'
autoload -U edit-command-line
zle -N edit-command-line
bindkey "^V" edit-command-line
+
+function get-parent-dir() {
+ words=(${(z)LBUFFER})
+ if [[ "${words[${#words}]}" = /* ]]; then
+ # There is already a path thing here.
+ words[${#words}]="${words[${#words}]:h}/" # Parent directory.
+ else
+ words=($words $PWD)
+ fi
+ LBUFFER="${words[@]}"
+}
+zle -N get-parent-dir
+bindkey "^[u" get-parent-dir