diff options
Diffstat (limited to 'user/zsh')
-rw-r--r-- | user/zsh/zshrc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/user/zsh/zshrc b/user/zsh/zshrc index b2c76e1a..f9f9c984 100644 --- a/user/zsh/zshrc +++ b/user/zsh/zshrc @@ -55,6 +55,19 @@ sort=${commands[gsort]:-$commands[sort]} ds () { du -hd1 "$@" | $sort -h } +zle-upify() { + buf="$(echo "$BUFFER" | sed 's/[ |]*$//')" + tmp="$(mktemp)" + eval "$buf |& up -o '$tmp' 2>/dev/null" + cmd="$(tail -n +2 "$tmp")" + rm -f "$tmp" + BUFFER="$BUFFER | $cmd" + zle end-of-line +} +zle -N zle-upify + +bindkey '\e^u' zle-upify +bindkey '\e^p' zle-upify # returns the first ghq root, whereas $GHQ_ROOT returns all hash -d p=$ghq_root[0] |