diff options
author | Alan Pearce | 2021-04-02 15:55:01 +0200 |
---|---|---|
committer | Alan Pearce | 2021-04-02 15:55:01 +0200 |
commit | c80002d50f2830d7cda34df311dd6f09649ded63 (patch) | |
tree | 4de5595fa5dcf3ff19f5330b1af31d5d939cdcc9 /user/zsh/zshrc | |
parent | 96684025aa667ac029c61eed47388a6cdfc16463 (diff) | |
download | nixfiles-c80002d50f2830d7cda34df311dd6f09649ded63.tar.lz nixfiles-c80002d50f2830d7cda34df311dd6f09649ded63.tar.zst nixfiles-c80002d50f2830d7cda34df311dd6f09649ded63.zip |
zsh: install up, interactive pipeline previewer
Diffstat (limited to 'user/zsh/zshrc')
-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] |