Skip to content

Instantly share code, notes, and snippets.

@jclosure
Last active January 7, 2025 06:42
Show Gist options
  • Save jclosure/f92068e772596039ba3c552840596dfb to your computer and use it in GitHub Desktop.
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
// 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"
}
]
@jclosure
Copy link
Author

jclosure commented Jan 7, 2025

Makes VSCodes's terminal behave like a normal terminal app on MacOS.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment