Want Windows #PowerShell to act like readline/bash/zsh?
ctrl-d Quit
ctrl-u Clear line
ctrl-_ undo
ctrl-a/ctrl-e Home/End
ctrl-k/ctrl-y Cut/Yank
ctrl-l Clear buffer
Try:
Set-PSReadlineOption -EditMode Emacs
Make it permanent by pasting to your profile:
notepad $PROFILE
#readline #themoreyouknow