forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
area-debuggingfeature-requestRequest for new features or functionalityRequest for new features or functionality
Description
Hi there,
Would it be possible to get support for multiple env files when debugging?
// launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"program": "app.py",
"console": "integratedTerminal",
"envFile": [
"${workspaceFolder}/config/environment/base.env",
"${workspaceFolder}/config/environment/development.env"
]
}
]
}It looks like this was added to vscode-go:
Issue: microsoft/vscode-go#1746
PR: microsoft/vscode-go#2395
Thanks!
Metadata
Metadata
Assignees
Labels
area-debuggingfeature-requestRequest for new features or functionalityRequest for new features or functionality