Merge pull request #9310 from DonJayamanne/pythonIndent

Auto indenting python code
This commit is contained in:
Martin Aeschlimann
2016-07-25 18:26:07 +02:00
committed by GitHub
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"
}
}