support auto indentation in python #3754

This commit is contained in:
Don Jayamanne
2016-07-15 12:24:31 +10:00
parent 8e02408ffc
commit 57fa648285
7 changed files with 93 additions and 0 deletions

18
extensions/python/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out",
"preLaunchTask": "npm"
}
]
}