'Visual Studio Code - Ctrl+Backspace not working in Integrated Terminal
In the terminal (PowerShell) in Visual Studio Code
, I'm trying to hit Ctrl+Backspace
to delete last word, but it just adds ^W
to end of the line, any ideas how to fix this? It works fine outside Visual Studio Code in PowerShell.
Solution 1:[1]
ctrl+backspace
is somehow mapped to ctrl+w
in vscode integrated terminal (possibly a bug) and now we need to set ctrl+w
binding to delete the word explicitly. weird right?
Set-PSReadLineKeyHandler -Chord 'Ctrl+w' -Function BackwardKillWord
Note that this'll work for the current terminal session only.
To make this behaviour persistent, you can set it in profile Microsoft.PowerShell_profile.ps1
file. Create the file if it doesn't exist in your powershell version folder.
C:\Program Files\PowerShell\6\Microsoft.PowerShell_profile.ps1
write at the top
if ($env:TERM_PROGRAM -eq "vscode") {
Set-PSReadLineKeyHandler -Chord 'Ctrl+w' -Function BackwardKillWord
}
See more: Power up your PowerShell
Keybinding references:
https://docs.microsoft.com/en-gb/previous-versions/powershell/module/psreadline/Get-PSReadLineKeyHandler?view=powershell-5.0
Solution 2:[2]
Based on the latest comment https://github.com/microsoft/vscode/issues/68167 I have modified JerryGoyal's answer so we don't have to modify bindings:
Put the following at the top of your Microsoft.PowerShell_profile.ps1
config file (type $profile
in the terminal to find it, you might have to create one if it doesn't exist already)
if ($env:TERM_PROGRAM -eq "vscode") {
Set-PSReadLineOption -EditMode Emacs
}
This works for me (vscode 1.43)
Solution 3:[3]
It was showing ^W
when I pressed Ctrl+Backspace.
Just run this command in the vscode console
Set-PSReadLineOption -EditMode Emacs
NOW IT WORKS!
Solution 4:[4]
Looks like an issue that is being tracked: see workbench.action.terminal.deleteWordLeft Doesn't Work, Outputs ^W.
Works fine for me in git bash terminal but not powershell as of vscode 1.36.
vscode v1.45 made some changes to these terminal commands, like deleteWordLeft
. Does Ctrl+Backspace work better for you now?
Solution 5:[5]
VSCode 1.48 (July2020) might help.
Issue 98404 does allow ctrl+backspace to delete entire word in cmd.exe
, which could work for a powershell session too.
See PR 98494:
Before (when it was not working):
After (working):
Solution 6:[6]
Check you keybindings in your settings to be sure it is still set.
I have had some oddities with keybindings getting removed / changed when adding a new extension or an update. You may just need to add it back.
Key Bindings for Visual Studio Code
Of course VSCode and PowerShell are two different environments. If you split your terminal window (I do this all the time for my own work use case), you will end up with the VSChost and the standard consolehost and you'll see that though you are in VSCode, they behave differently.
If you have not done so, you may want to customize you VSCode profile which is what the integrated console will read, where as the consolehost will read your PowerShell console profile not you ISE profile.
Solution 7:[7]
To add to JerryGoyal answer:
If you have difficulties finding profile folder and/or making it works. Here's what helped me.
- I created folder c:\Users\YOUR_USER_NAME\Documents\WindowsPowerShell\
- Put Microsoft.PowerShell_profile.ps1 there
- Powershell than tells you about security problems. You have to allow this by running powershell as admin.
- Than type Set-ExecutionPolicy RemoteSigned.
- Answer Y(yes). This is obviously at your own risk!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | noipster |
Solution 3 | Abraham |
Solution 4 | |
Solution 5 | VonC |
Solution 6 | postanote |
Solution 7 | Val |