Blame view
repos/robbyrussell/oh-my-zsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh
187 Bytes
|
ed37aae5b
|
1 2 3 4 5 6 7 8 9 10 11 |
fancy-ctrl-z () {
if [[ $#BUFFER -eq 0 ]]; then
BUFFER="fg"
zle accept-line
else
zle push-input
zle clear-screen
fi
}
zle -N fancy-ctrl-z
bindkey '^Z' fancy-ctrl-z
|