Skip to content

Commit 3434c80

Browse files
committed
setting attributes to json files
1 parent 964b5d3 commit 3434c80

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

language-configuration.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
11
{
22
"comments": {
3-
// symbol used for single line comment. Remove this entry if your language does not support line comments
4-
"lineComment": "//",
5-
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
63
"blockComment": [ "{", "}" ]
74
},
8-
// symbols used as brackets
95
"brackets": [
10-
["{", "}"],
116
["[", "]"],
127
["(", ")"]
138
],
149
// symbols that are auto closed when typing
1510
"autoClosingPairs": [
16-
["{", "}"],
1711
["[", "]"],
1812
["(", ")"],
19-
["\"", "\""],
2013
["'", "'"]
2114
],
2215
// symbols that that can be used to surround a selection
2316
"surroundingPairs": [
24-
["{", "}"],
2517
["[", "]"],
2618
["(", ")"],
27-
["\"", "\""],
2819
["'", "'"]
2920
]
3021
}

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
2-
"name": "dfm",
2+
"name": "dfm-vscode",
33
"displayName": "dfm",
44
"description": "Delphi Forms",
5+
"author": "Victor Molero",
56
"version": "0.0.1",
67
"publisher": "vmolero",
78
"engines": {
@@ -10,6 +11,7 @@
1011
"categories": [
1112
"Programming Languages"
1213
],
14+
"license": "MIT",
1315
"contributes": {
1416
"languages": [{
1517
"id": "dfm",

0 commit comments

Comments
 (0)