Bug: Terminal actions like `deleteWordRight` are no longer available
Before You Begin
Before proceeding, please make sure to follow these steps:
- [x] I have checked for similar issues in the project's issue tracker.
- [x] I have searched closed issues to see if a similar problem was reported before.
Issue Details
VSCode team removed actions like workbench.action.terminal.deleteWordRight: https://github.com/microsoft/vscode/issues/95802
The recommended alternative is to use workbench.action.terminal.sendSequence with an escape sequence:
{
"key": "ctrl+delete",
"command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": { "text": "\u001bd" }
}
System Information
Please provide the following additional information about your system or environment:
- Operating System (OS): Linux
- OS Version: Fedora Linux Asahi Remix 39
- Browser (if applicable): -
- Browser Version (if applicable): -
- Project Version (if applicable): v1.40.1
Hi thanks for this. Hopefully this has been addressed by '1.92.1'. It seems that microsoft make pretty rapid changes which can be pretty hard to keep up with. Let me know if this has fixes things for you :)
I'll give it a try tomorrow and let you know how it goes!
Going to close this issue now. Please feel free to reopen if needed