my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
196 B

3 years ago
  1. fancy-ctrl-z () {
  2. if [[ $#BUFFER -eq 0 ]]; then
  3. BUFFER="fg"
  4. zle accept-line -w
  5. else
  6. zle push-input -w
  7. zle clear-screen -w
  8. fi
  9. }
  10. zle -N fancy-ctrl-z
  11. bindkey '^Z' fancy-ctrl-z