IntelliSense settings
Call Command Palette (Ctrl+Shift+P), write "workspace settings json" and press enter.
The new settings.json file will be added to .vscode folder inside your workspace. Copy and paste the code below:
{
// For IntelliSense to work, uncomment the line below and set the interpreter path to the E2 installation folder
//"python.defaultInterpreterPath": "E2InstallationPath\\python.exe",
"files.autoSave": "onFocusChange",
"python.linting.enabled": true,
"editor.tabSize": 3,
"editor.detectIndentation": false,
"editor.renderWhitespace": "boundary"
}
Uncomment the specified line and replace the local E2 installation path. The default interpreter path should point to the Python executable from the desired E2 release:
As a result, the IntelliSense should be active:
|