mirror of
https://git.adityakumar.xyz/config.git
synced 2025-02-05 18:10:01 +00:00
12 lines
196 B
Bash
12 lines
196 B
Bash
fancy-ctrl-z () {
|
|
if [[ $#BUFFER -eq 0 ]]; then
|
|
BUFFER="fg"
|
|
zle accept-line -w
|
|
else
|
|
zle push-input -w
|
|
zle clear-screen -w
|
|
fi
|
|
}
|
|
zle -N fancy-ctrl-z
|
|
bindkey '^Z' fancy-ctrl-z
|
|
|