fancy-ctrl-z.plugin.zsh 196 Bytes
Newer Older
Michele Bologna's avatar
Michele Bologna committed
1
2
3
fancy-ctrl-z () {
  if [[ $#BUFFER -eq 0 ]]; then
    BUFFER="fg"
4
    zle accept-line -w
Michele Bologna's avatar
Michele Bologna committed
5
  else
6
7
    zle push-input -w
    zle clear-screen -w
Michele Bologna's avatar
Michele Bologna committed
8
9
10
11
12
  fi
}
zle -N fancy-ctrl-z
bindkey '^Z' fancy-ctrl-z