Visual Studio Code
Ctrl + W
Not Working with Vim Mode
In Keyboard Shortcuts, disable the Vim shortcut that corresponds to this.
Terminal Using Wrong Python Version
For example, the default terminal program uses Anaconda, but the terminal in VS Code uses /usr/bin/python3
. Add
```
"terminal.integrated.env.osx": {
"PATH": ""
}
```
to settings.json
. See here.