summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc10
1 files changed, 10 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
index 4ee9a08..5fcff79 100644
--- a/.zshrc
+++ b/.zshrc
@@ -126,6 +126,16 @@ device='desktop' # can be either "desktop" (default when empty), "server" or "an
alias cds="cdrepo source"
# }}}
+ # plumb.sh {{{
+
+ plumb-store-cwd () {
+ pwd > /tmp/plumb-cwd
+ }
+ zle -N plumb-store-cwd
+ bindkey "^[[5;7~" plumb-store-cwd
+
+ # }}}
+
# Run in the background
bgr () {
nohup sh -c "$@" 2>&1 &