Hello Code

This commit is contained in:
Erich Gamma
2015-11-13 14:39:38 +01:00
commit 8f35cc4768
1897 changed files with 704173 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
// ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS:
[{
"name": "SublimeText/PowerShell",
"version": "0.0.0",
"license": "MIT",
"repositoryURL": "https://github.com/SublimeText/PowerShell"
}]
+19
View File
@@ -0,0 +1,19 @@
{
"name": "powershell",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "powershell",
"extensions": [ ".ps1", ".psm1", ".psd1" ],
"aliases": [ "PowerShell", "powershell", "ps", "ps1" ],
"configuration": "./powershell.configuration.json"
}],
"grammars": [{
"language": "powershell",
"scopeName": "source.powershell",
"path": "./syntaxes/PowershellSyntax.tmLanguage"
}]
}
}
@@ -0,0 +1,24 @@
{
"comments": {
"lineComment": "#",
"blockComment": [ "<#", "#>" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
]
/*
enhancedBrackets: [
{ tokenType:'string', openTrigger: '"', open: /@"$/, closeComplete: '"@' },
{ tokenType:'string', openTrigger: '\'', open: /@'$/, closeComplete: '\'@' },
{ tokenType:'string', openTrigger: '"', open: /"$/, closeComplete: '"' },
{ tokenType: 'string', openTrigger: '\'', open: /'$/, closeComplete: '\'' }
],
autoClosingPairs: [['{', '}'], ['[', ']'], ['(', ')']], // Defined explicitly, to suppress the
// default auto-closing of ' and " which is
// override above by enhancedBrackets
*/
}
File diff suppressed because it is too large Load Diff