dotfiles/zsh-files/functions.zsh

9 lines
108 B
Bash
Raw Normal View History

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