-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathtableextension.json
35 lines (35 loc) · 1005 Bytes
/
tableextension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"Snippet: Table Extension": {
"prefix": "ttableext",
"body": [
"tableextension ${1:Id} ${2:MyExtension} extends ${3:MyTargetTable}",
"{",
"\tfields",
"\t{",
"\t\t${4:// Add changes to table fields here}",
"\t}",
"\t",
"\tkeys",
"\t{",
"\t\t${5:// Add changes to keys here}",
"\t}",
"\t",
"\tfieldgroups",
"\t{",
"\t\t${6:// Add changes to field groups here}",
"\t}",
"\t",
"\tvar",
"\t\t${7:myInt}: ${0:Integer};",
"}"
],
"description": "Snippet: Table Extension"
},
"Snippet: Table Extesion FieldGroup AddLast": {
"prefix": "tfieldgroupaddlast",
"body": [
"addlast(${1|DropDown,Brick|}; ${0:MyField}){}"
],
"description": "Snippet: Table Extesion FieldGroup AddLast"
}
}