zsh: install up, interactive pipeline previewer
Alan Pearce alan@alanpearce.eu
Fri, 02 Apr 2021 15:55:01 +0200
2 files changed, 14 insertions(+), 0 deletions(-)
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -27,6 +27,7 @@ ghq git git-lfs zsh-completions + up ]; home.activation.linkOldZshHistory =
M user/zsh/zshrc → user/zsh/zshrc
@@ -55,6 +55,19 @@ 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]