Clear the characters before the current cursor position in Zsh
Bash and zsh work slightly different here. In zsh, CTRL + U clears the entire line instead.
In your configuration .zsh put this lines:
bindkey -e
bindkey \^U backward-kill-line
You can use
$ bindkey
to list all of your keyboard shortcuts in zsh.
BTW: in bash you will print all bindkey with the following command:
bind -P
So no cheat sheets are necessary!