Added Ctrl-x,Ctrl-l to zsh to insert output of last command
This commit is contained in:
7
zsh/last-command.zsh
Normal file
7
zsh/last-command.zsh
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user