forked from zabel-xyz/plsql-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plsql.completion.json
28 lines (26 loc) · 1.03 KB
/
plsql.completion.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
{
/*
This is the default definition for your tables structure
This list is used for auto-completion.
You must create your own file and specify his location with the setting "plsql-language.completion.path"
(don't use this file, it'll be overwritten with the update of the extension !)
e.g.:
"myTableName1": {
"kind": "struct",
"documentation": "no comment",
"members": [
{"label": "myFieldName1", "kind": "field", "documentation": "no comment"},
{"label": "myFieldName2", "kind": "field"},
{"label": "myFieldName3", "kind": "field"}
]
},
"myTableNameN": {
"kind": "struct",
"members": [
{"label": "myFieldNameA", "kind": "field"},
{"label": "myFieldNameB", "kind": "field"},
{"label": "myFieldNameC", "kind": "field"}
]
}
*/
}