-
In Bash on Linux, Ctrl+U and Ctrl+K delete everything before and after the cursor respectively. Are there equivalent shortcuts for Windows Terminal? Inputting those shortcuts just makes |
Beta Was this translation helpful? Give feedback.
Answered by
elsaco
Oct 17, 2023
Replies: 1 comment
-
@legate those are functions of the shell! If you're using powershell try running |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
legate
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@legate those are functions of the shell! If you're using powershell try running
Get-PSReadLineKeyHandler
and list the basic editing functions supported. There'sCtrl+Home
andCtrl+End
doing the sameCtrl-U
andCtrl-K
do in bash.