abl-tmlanguage 1.3.13 → 1.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +3 -0
- package/abl.tmLanguage.json +309 -72
- package/index.mjs +22 -8
- package/package.json +1 -1
- package/spec/db-table-and-field/buffer-copy.spec.js +239 -0
- package/spec/db-table-and-field/new-record.spec.js +96 -0
- package/spec/define/define-rectangle.spec.js +47 -0
- package/spec/define-frame/issue#173.spec.js +526 -0
- package/spec/define-temp-table/define-temp-table.spec.js +89 -0
- package/spec/define-variable/var-statement.spec.js +26 -0
- package/spec/include/include-file-name.spec.js +14 -0
- package/spec/procedure-definition/trigger-procedure.spec.js +126 -0
- package/spec/run-statement/run-statement.spec.js +46 -6
- package/spec/type-name/define-variable.spec.js +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
1.3.15
|
|
2
|
+
======
|
|
3
|
+
|
|
4
|
+
- 🐛 Fix include paths with more than one \. (vscode-abl/vscode-abl#362)
|
|
5
|
+
|
|
6
|
+
1.3.14
|
|
7
|
+
======
|
|
8
|
+
|
|
9
|
+
- ✨ Improve DEFINE FRAME scoping
|
|
10
|
+
- ✨ Do not end DEFINE statements on decimal point
|
|
11
|
+
- ✨ Support comments in index definition
|
|
12
|
+
- ✨ Scope of RUN procedure names
|
|
13
|
+
- 🐛 Improve scopes for NEW record statement (vscode-abl/vscode-abl#361)
|
|
14
|
+
- 🐛 Fix TRIGGER PROCEDURE highlighting (vscode-abl/vscode-abl#361)
|
|
15
|
+
|
|
1
16
|
1.3.13
|
|
2
17
|
======
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -140,5 +140,8 @@ There are also a number of 'meta' scopes that usually cover multiple other scope
|
|
|
140
140
|
|meta.statements.abl | All ABL statmements |
|
|
141
141
|
|meta.using.abl | A `using` definition |
|
|
142
142
|
|
|
143
|
+
## Checking scopes
|
|
144
|
+
The standard VS Code install includes a command (available via F1 or SHIFT-CTRL-P) named `Developer: Inspect Editor Tokens and Scopes` . This will pop a tooltip showing the scopes at the cursor location. It contains a group called _textmate scopes_ , which shows the current scope. The topmost scope should be in the table above.
|
|
145
|
+
|
|
143
146
|
# License
|
|
144
147
|
MIT
|