aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.before/last-command.zsh
blob: 9f7486bf6750f8d3d3366f278f91812535ffc941 (plain)
1
2
3
4
5
6
7
# Use Ctrl-x,Ctrl-l to get the output of the last command
zmodload -i zsh/parameter
insert-last-command-output() {
LBUFFER+="$(eval $history[$((HISTCMD-1))])"
}
zle -N insert-last-command-output
bindkey "^X^L" insert-last-command-output