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

View File

@@ -3,6 +3,8 @@
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"activationEvents": ["onLanguage:python"],
"main": "./out/pythonMain",
"contributes": {
"languages": [{
"id": "python",
@@ -19,5 +21,9 @@
"scopeName": "source.regexp.python",
"path": "./syntaxes/Regular Expressions (Python).tmLanguage"
}]
},
"scripts": {
"compile": "gulp compile-extension:python",
"watch": "gulp watch-extension:python"
}
}