forked from ezequielgandolfi/openedge-zext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_todo.txt
89 lines (77 loc) · 2 KB
/
_todo.txt
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
helpfile
C:\DLC116\prohelp\lgrfeng.chm / https://documentation.progress.com/output/ua/OpenEdge_latest/index.html
Commands:
{
"command": "abl.outline.refresh",
"title": "Refresh code outline",
"icon": {
"dark": "resources/dark/icon-refresh.svg",
"light": "resources/light/icon-refresh.svg"
}
},
{
"command": "abl.outline.revealCurrentSymbol",
"title": "Show in code outline"
},
{
"command": "abl.test",
"title": "ABL: Test",
"description": "Run all UnitTest"
},
{
"command": "abl.test.currentFile",
"title": "ABL: Test current file",
"description": "Run current UnitTest file"
},
{
"command": "abl.propath",
"title": "ABL: Current PROPATH",
"description": "See the currently set PROPATH."
},
{
"command": "abl.dataDictionary",
"title": "ABL: Open DataDictionary",
"description": "Open the DataDictionary external tool"
},
{
"command": "abl.format",
"title": "ABL: Format File",
"description": "Apply default formatter to ABL file"
},
"menus": {
"editor/context": [
{
"when": "editorTextFocus && config.abl.editorContextMenuCommands.checkSyntax && resourceLangId == abl",
"command": "abl.currentFile.checkSyntax",
"group": "ABL group 1"
},
{
"command": "abl.outline.revealCurrentSymbol",
"group": "navigation"
}
],
"view/title": [
{
"command": "abl.outline.refresh",
"when": "view == abl.outline",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "outline",
"title": "Outline",
"icon": "resources/icon.svg"
}
]
},
"views": {
"outline": [
{
"id": "abl.outline",
"name": "Code Outline"
}
]
}