mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
Hello Code
This commit is contained in:
@@ -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"
|
||||
}]
|
||||
@@ -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
Reference in New Issue
Block a user