mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Hello Code
This commit is contained in:
24
extensions/powershell/powershell.configuration.json
Normal file
24
extensions/powershell/powershell.configuration.json
Normal file
@@ -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
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user