8 lines
108 B
Bash
8 lines
108 B
Bash
fancy-ctrl-z () {
|
|
if [[ $#BUFFER -eq 0 ]]; then
|
|
bg
|
|
zle redisplay
|
|
else
|
|
zle push-input
|
|
fi
|
|
}
|