Last active
January 7, 2025 06:42
-
-
Save jclosure/f92068e772596039ba3c552840596dfb to your computer and use it in GitHub Desktop.
On MacOS in VSCode terminal, make M-delete delete the word to the left of cursor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "alt+backspace", | |
"command": "workbench.action.terminal.sendSequence", | |
"args": { "text": "\u001b\u007f" }, // delete word left to first non-word character | |
// = escape+delete | |
"when": "terminalFocus && isMac" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Makes VSCodes's terminal behave like a normal terminal app on MacOS.