abl-tmlanguage 1.3.11 → 1.3.13
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 +18 -0
- package/abl.tmLanguage.json +152 -116
- package/{index.js → index.mjs} +26 -33
- package/package.json +7 -3
- package/spec/blocks/block-labels.spec.js +23 -0
- package/spec/comments/comment-in-for-each.spec.js +102 -0
- package/spec/comments/comment-in-function-args.spec.js +45 -1
- package/spec/db-table-and-field/create-record.spec.js +32 -0
- package/spec/db-table-and-field/find-record.spec.js +2 -2
- package/spec/define-buffer/simple-single-line.spec.js +17 -0
- package/spec/define-variable/extent.spec.js +55 -0
- package/spec/define-variable/initial.spec.js +126 -0
- package/spec/for-each/for-each.spec.js +111 -0
- package/spec/for-each/issue#321.spec.js +116 -0
- package/spec/function-call/can-find.spec.js +1 -1
- package/spec/function-call/set-size.spec.js +39 -2
- package/spec/function-call/udf-calls.spec.js +51 -0
- package/spec/misc-statements/do-in-name.spec.js +3 -3
- package/spec/misc-statements/if-then.spec.js +91 -0
- package/spec/misc-statements/record-buffer-functions.spec.js +3 -3
- package/spec/procedure-definition/empty-proc.spec.js +4 -4
- package/spec/procedure-definition/vscode-abl-issue#22.spec.js +1 -1
- package/spec/procedure-definition/vscode-abl-issue#325.spec.js +64 -0
- package/spec/procedure-definition/vscode-abl-issue#62.spec.js +1 -1
- package/spec/type-name/define-property.spec.js +58 -0
package/abl.tmLanguage.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"procedure-definition": {
|
|
16
16
|
"name": "meta.procedure.abl",
|
|
17
17
|
"comment": "Look ahead to the procedure name, quoted or not. It will be resolved in the patterns. 'Names must begin with a letter.' from https://docs.progress.com/bundle/openedge-abl-manage-applications/page/Name-limits.html",
|
|
18
|
-
"begin": "(?i)\\
|
|
18
|
+
"begin": "(?i)\\b(proce(?:dure|dur|du|d)?)\\s+(?=[a-zA-Z_])",
|
|
19
19
|
"beginCaptures": {
|
|
20
20
|
"1": {
|
|
21
21
|
"name": "keyword.other.abl"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"patterns": [
|
|
31
31
|
{
|
|
32
|
-
"match": "(?i)\\b(external|cdecl|pascal|stdcall|ordinal|(persist(?:ent|en|e)?)|thread-safe|in|super)\\b",
|
|
32
|
+
"match": "(?i)\\b(private|external|cdecl|pascal|stdcall|ordinal|(persist(?:ent|en|e)?)|thread-safe|in|super)\\b",
|
|
33
33
|
"captures": {
|
|
34
34
|
"1": {
|
|
35
35
|
"name": "keyword.other.abl"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"comment": "A procedure name may contain a . but cannot end in one, unless the procedure name is in quotes",
|
|
45
45
|
"captures": {
|
|
46
46
|
"1": {
|
|
47
|
-
"name": "entity.name.
|
|
47
|
+
"name": "entity.name.procedure.abl"
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
},
|
|
@@ -433,6 +433,12 @@
|
|
|
433
433
|
{
|
|
434
434
|
"include": "#comment"
|
|
435
435
|
},
|
|
436
|
+
{
|
|
437
|
+
"include": "#abl-function-variable-arg"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"include": "#while-expression"
|
|
441
|
+
},
|
|
436
442
|
{
|
|
437
443
|
"include": "#rowid-function"
|
|
438
444
|
},
|
|
@@ -570,6 +576,9 @@
|
|
|
570
576
|
{
|
|
571
577
|
"include": "#type-reference"
|
|
572
578
|
},
|
|
579
|
+
{
|
|
580
|
+
"include": "#procedure-definition"
|
|
581
|
+
},
|
|
573
582
|
{
|
|
574
583
|
"include": "#for-join"
|
|
575
584
|
},
|
|
@@ -597,9 +606,6 @@
|
|
|
597
606
|
{
|
|
598
607
|
"include": "#preprocessors"
|
|
599
608
|
},
|
|
600
|
-
{
|
|
601
|
-
"include": "#procedure-definition"
|
|
602
|
-
},
|
|
603
609
|
{
|
|
604
610
|
"include": "#dll-type"
|
|
605
611
|
},
|
|
@@ -990,6 +996,32 @@
|
|
|
990
996
|
}
|
|
991
997
|
]
|
|
992
998
|
},
|
|
999
|
+
"abl-function-variable-arg": {
|
|
1000
|
+
"name": "meta.function-call.abl",
|
|
1001
|
+
"begin": "(?i)\\s*(set-size)\\s*(?=\\()",
|
|
1002
|
+
"beginCaptures": {
|
|
1003
|
+
"1": {
|
|
1004
|
+
"name": "support.function.abl"
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
"end": "(\\))",
|
|
1008
|
+
"endCaptures": {
|
|
1009
|
+
"1": {
|
|
1010
|
+
"name": "meta.brace.round.js"
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
"patterns": [
|
|
1014
|
+
{
|
|
1015
|
+
"include": "#parens"
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"include": "#type-member-call"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"include": "#variable-name"
|
|
1022
|
+
}
|
|
1023
|
+
]
|
|
1024
|
+
},
|
|
993
1025
|
"get-class": {
|
|
994
1026
|
"name": "meta.function-call.abl",
|
|
995
1027
|
"begin": "(?i)\\s*(get-class)\\s*(\\()",
|
|
@@ -1127,7 +1159,7 @@
|
|
|
1127
1159
|
}
|
|
1128
1160
|
},
|
|
1129
1161
|
"for-each-join": {
|
|
1130
|
-
"begin": "(?i)
|
|
1162
|
+
"begin": "(?i)\\b(each|first|last)\\b(?<!\\()",
|
|
1131
1163
|
"beginCaptures": {
|
|
1132
1164
|
"1": {
|
|
1133
1165
|
"name": "keyword.other.abl"
|
|
@@ -1198,6 +1230,12 @@
|
|
|
1198
1230
|
},
|
|
1199
1231
|
{
|
|
1200
1232
|
"include": "#db-dot-table-dot-field"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"include": "#while-expression"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"include": "#comment"
|
|
1201
1239
|
}
|
|
1202
1240
|
]
|
|
1203
1241
|
},
|
|
@@ -1240,7 +1278,7 @@
|
|
|
1240
1278
|
"name": "meta.brace.round.js"
|
|
1241
1279
|
},
|
|
1242
1280
|
"3": {
|
|
1243
|
-
"name": "
|
|
1281
|
+
"name": "storage.data.table.abl"
|
|
1244
1282
|
},
|
|
1245
1283
|
"5": {
|
|
1246
1284
|
"name": "meta.brace.round.js"
|
|
@@ -1419,7 +1457,7 @@
|
|
|
1419
1457
|
]
|
|
1420
1458
|
},
|
|
1421
1459
|
"property-get-set-super": {
|
|
1422
|
-
"match": "\\b(get|set)\\s+(super)\\s*(?=\\.)",
|
|
1460
|
+
"match": "(?i)\\b(get|set)\\s+(super)\\s*(?=\\.)",
|
|
1423
1461
|
"comment": "This is a call to the parent class' property getter or setter",
|
|
1424
1462
|
"captures": {
|
|
1425
1463
|
"1": {
|
|
@@ -1432,7 +1470,7 @@
|
|
|
1432
1470
|
},
|
|
1433
1471
|
"property-get-set-empty": {
|
|
1434
1472
|
"comment": "This rule is needed since for 'plain' gets and sets, there's no END",
|
|
1435
|
-
"match": "\\b(
|
|
1473
|
+
"match": "\\b([Gg][Ee][Tt]|[Ss][Ee][Tt])\\s*(?=\\.)",
|
|
1436
1474
|
"captures": {
|
|
1437
1475
|
"1": {
|
|
1438
1476
|
"name": "keyword.other.abl"
|
|
@@ -1440,13 +1478,13 @@
|
|
|
1440
1478
|
}
|
|
1441
1479
|
},
|
|
1442
1480
|
"property-get-set-block": {
|
|
1443
|
-
"begin": "
|
|
1481
|
+
"begin": "\\s*(?<!:)\\s*([Gg][Ee][Tt]|[Ss][Ee][Tt])\\b(?![#$\\-_%&])",
|
|
1444
1482
|
"beginCaptures": {
|
|
1445
1483
|
"1": {
|
|
1446
1484
|
"name": "keyword.other.abl"
|
|
1447
1485
|
}
|
|
1448
1486
|
},
|
|
1449
|
-
"end": "
|
|
1487
|
+
"end": "\\s*([Ee][Nn][Dd])\\s*([Gg][Ee][Tt]|[Ss][Ee][Tt])?\\s*(?=\\.)\\s*",
|
|
1450
1488
|
"comment": "The end capture does a lookahead on . so that the 'define' capture can end ",
|
|
1451
1489
|
"endCaptures": {
|
|
1452
1490
|
"1": {
|
|
@@ -1854,7 +1892,6 @@
|
|
|
1854
1892
|
"name": "constant.numeric.source.abl"
|
|
1855
1893
|
}
|
|
1856
1894
|
}
|
|
1857
|
-
|
|
1858
1895
|
},
|
|
1859
1896
|
"define-query": {
|
|
1860
1897
|
"begin": "(?i)\\b(query)\\s+([a-zA-Z_][a-zA-Z0-9_#$\\-%&]*)\\s*",
|
|
@@ -2009,7 +2046,7 @@
|
|
|
2009
2046
|
}
|
|
2010
2047
|
},
|
|
2011
2048
|
"comment": "This match just gets the definition of the property; the getter and setter are handled separately",
|
|
2012
|
-
"end": "
|
|
2049
|
+
"end": "\\s*(?=[Gg][Ee][Tt]|[Ss][Ee][Tt])",
|
|
2013
2050
|
"patterns": [
|
|
2014
2051
|
{
|
|
2015
2052
|
"include": "#property-as"
|
|
@@ -2102,7 +2139,7 @@
|
|
|
2102
2139
|
]
|
|
2103
2140
|
},
|
|
2104
2141
|
"create-record": {
|
|
2105
|
-
"match": "(?i)\\s*(create)\\s+([a-zA-Z][a-zA-
|
|
2142
|
+
"match": "(?i)\\s*(create)\\s+([a-zA-Z][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]*)?)\\s*((for)\\s+(tenant))?\\s*",
|
|
2106
2143
|
"captures": {
|
|
2107
2144
|
"1": {
|
|
2108
2145
|
"name": "keyword.other.abl"
|
|
@@ -2411,12 +2448,7 @@
|
|
|
2411
2448
|
"name": "keyword.other.abl"
|
|
2412
2449
|
}
|
|
2413
2450
|
},
|
|
2414
|
-
"end": "(?i)(?=\\.)|\\b(?=(bgc(?:olor|olo|ol|o)?)|(column-lab(?:el|e)?)|
|
|
2415
|
-
"endCaptures": {
|
|
2416
|
-
"1": {
|
|
2417
|
-
"name": "keyword.other.abl"
|
|
2418
|
-
}
|
|
2419
|
-
},
|
|
2451
|
+
"end": "(?i)(?=\\.)|\\b(?=(bgc(?:olor|olo|ol|o)?)|(column-lab(?:el|e)?)|context-help-id|dcolor|decimals|drop-target|extent|font|(fgc(?:olor|olo|ol|o)?)|(form(?:at|a)?)|(init(?:ial|ia|i)?)|label|(mouse-p(?:ointer|ointe|oint|oin|oi|o)?)|no-undo|not|(case-sen(?:sitive|sitiv|siti|sit|si|s)?)|(pfc(?:olor|olo|ol|o)?)|view-as|triggers)\\b",
|
|
2420
2452
|
"patterns": [
|
|
2421
2453
|
{
|
|
2422
2454
|
"match": "\\b([Cc][Ll][Aa][Ss][Ss])\\b",
|
|
@@ -2482,7 +2514,8 @@
|
|
|
2482
2514
|
}
|
|
2483
2515
|
},
|
|
2484
2516
|
"buffer-for-table": {
|
|
2485
|
-
"
|
|
2517
|
+
"comment": "1 to 32 characters; can consist of any combination of letters (a-z or A-Z), numbers (0-9), and these special characters: # $ - _ % & Names must begin with a letter.",
|
|
2518
|
+
"match": "(?i)\\s*(?!do|repeat|for)([a-zA-Z][a-zA-Z_0-9\\-#$%]*)\\s+(for)\\s+((temp-table)\\s+)?([a-zA-Z][a-zA-Z0-9_\\-#$%]*)\\s*",
|
|
2486
2519
|
"captures": {
|
|
2487
2520
|
"1": {
|
|
2488
2521
|
"name": "storage.data.table.abl"
|
|
@@ -2954,12 +2987,12 @@
|
|
|
2954
2987
|
},
|
|
2955
2988
|
"block-undo-leave-next-retry": {
|
|
2956
2989
|
"comment": "Covers NEXT, LEAVE, RETRY and UNDO with block labels that are not preceded by UNDO, ",
|
|
2957
|
-
"match": "(?i)\\s*(?<!,)\\s*(leave|next|retry|undo)\\
|
|
2990
|
+
"match": "(?i)\\s*(?<!,)\\s*(leave|next|retry|undo)\\b(?!on)(\\s+([a-zA-Z0-9_\\-#$%\\-$]*))?\\s*",
|
|
2958
2991
|
"captures": {
|
|
2959
2992
|
"1": {
|
|
2960
2993
|
"name": "keyword.other.abl"
|
|
2961
2994
|
},
|
|
2962
|
-
"
|
|
2995
|
+
"3": {
|
|
2963
2996
|
"name": "entity.name.label.abl"
|
|
2964
2997
|
}
|
|
2965
2998
|
}
|
|
@@ -3350,6 +3383,9 @@
|
|
|
3350
3383
|
{
|
|
3351
3384
|
"include": "#handle-methods"
|
|
3352
3385
|
},
|
|
3386
|
+
{
|
|
3387
|
+
"include": "#keywords"
|
|
3388
|
+
},
|
|
3353
3389
|
{
|
|
3354
3390
|
"include": "#expression"
|
|
3355
3391
|
},
|
|
@@ -3420,7 +3456,7 @@
|
|
|
3420
3456
|
"name": "variable.other.abl"
|
|
3421
3457
|
},
|
|
3422
3458
|
"extent": {
|
|
3423
|
-
"match": "(?i)\\s*(extent)\\s*((0x)?\\h
|
|
3459
|
+
"match": "(?i)\\s*(extent)\\s*((0x)?\\h+\\b)?",
|
|
3424
3460
|
"captures": {
|
|
3425
3461
|
"1": {
|
|
3426
3462
|
"name": "keyword.other.abl"
|
|
@@ -3562,7 +3598,7 @@
|
|
|
3562
3598
|
},
|
|
3563
3599
|
"run-unquoted": {
|
|
3564
3600
|
"comment": "(External) Program names are files, so need to support unicode.",
|
|
3565
|
-
"match": "(?i)\\s*(run)\\s+(?!value)\\s*([\\w
|
|
3601
|
+
"match": "(?i)\\s*(run)\\s+(?!value)\\s*([\\w\\-$\\@\\/\\\\\\.]{1,256})(?<!\\.)",
|
|
3566
3602
|
"captures": {
|
|
3567
3603
|
"1": {
|
|
3568
3604
|
"name": "keyword.other.abl"
|
|
@@ -4000,7 +4036,7 @@
|
|
|
4000
4036
|
},
|
|
4001
4037
|
"keywords-A": {
|
|
4002
4038
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4003
|
-
"match": "(?i)\\b((
|
|
4039
|
+
"match": "(?i)\\b(a(?:mbiguous?|mbiguo?|mbig|uto-go|vailable?|vailab?|vail|bstract|ccumulate?|ccumula?|ccumu?|cross|ctive-form|ctive-window|dd|dvise|ggregate|lert-box|ll|llow-replication|lter|lternate-key|nd|nsi-only|ny|nywhere|ppend|pplication|pply|rray-message?|rray-messa?|rray-mes?|rray-m|s|s-cursor|scending?|scendi?|scen?|sc|sk-overwrite|ssembly|ssign|t|ttach|ttachment|ttribute-type|udit-control|udit-policy|uthorization|uto-endkey|utomatic|verage?|vera?|ve|vg|ppend-line|bort|ny-key|ny-printable))\\b(?![#$\\-_%&])",
|
|
4004
4040
|
"captures": {
|
|
4005
4041
|
"1": {
|
|
4006
4042
|
"name": "keyword.other.abl"
|
|
@@ -4009,7 +4045,7 @@
|
|
|
4009
4045
|
},
|
|
4010
4046
|
"keywords-B": {
|
|
4011
4047
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4012
|
-
"match": "(?i)\\b((
|
|
4048
|
+
"match": "(?i)\\b(b(?:gcolor?|gcol?|gc|ell|lock-level?|lock-lev|uffer-compare?|uffer-compa?|uffer-copy|rowse|uffer|uttons?|ackwards?|ase-key|ase64|atch|efore-hide?|efore-hi?|egins|etween|ig-endian|inary|ind|ind-where|lob|order-bottom?|order-bott?|order-bo?|order-left?|order-le?|order-right?|order-rig?|order-r|order-top?|order-t|oth|ottom|reak|rowse-column-data-types|rowse-column-formats|rowse-column-labels|rowse-header|tos|uttons?|y|y-pointer|y-reference|y-value|y-variant-pointer?|y-variant-point|yte|ackspace|reak-line|lock|ack-tab|ottom-column))\\b(?![#$\\-_%&])",
|
|
4013
4049
|
"captures": {
|
|
4014
4050
|
"1": {
|
|
4015
4051
|
"name": "keyword.other.abl"
|
|
@@ -4018,7 +4054,7 @@
|
|
|
4018
4054
|
},
|
|
4019
4055
|
"keywords-C": {
|
|
4020
4056
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4021
|
-
"match": "(?i)\\b((
|
|
4057
|
+
"match": "(?i)\\b(c(?:entered?|enter|olumn-label?|olumn-lab|ontext-help-id|all|ase|atch|hoose|lass|lear|lose|olor|ompile|onnect|onstructor|opy-lob|reate|lient-principal|urrent-language?|urrent-langua?|urrent-lang|urrent-value|ursor?|urs|ache|ache-size|decl|hained|haracter?|haract?|hara?|haracter_length|heck|heck-mem-stomp|lipboard|lob|odebase-locator|ol|ol-of|ollate|olon|olon-aligned?|olon-align|olor-table|olumn-codepage|olumn-label-bgcolor?|olumn-label-bgcol?|olumn-label-bgc|olumn-label-dcolor|olumn-label-fgcolor?|olumn-label-fgcol?|olumn-label-fgc|olumn-label-font|olumn-label-height-chars?|olumn-label-height-cha?|olumn-label-height-c|olumn-label-height-pixels?|olumn-label-height-pixe?|olumn-label-height-pi?|olumn-of|olumns?|om-self|ombo-box|ommand|ompares?|ompiler|omponent-handle|omponent-self|onstrained|ontains|ontents|ontext|ontext-popup?|ontext-pop|ontrol|ontrol-container?|ontrol-contain?|ontrol-conta?|ontrol-frame?|onvert|ount|reate-on-add|reate-test-file|tos|urrent|urrent_date|ursor-up|ursor-down|ursor-left|ursor-right|hoices|ancel-pick|ut|opy|ontainer-event))\\b(?![#$\\-_%&])",
|
|
4022
4058
|
"captures": {
|
|
4023
4059
|
"1": {
|
|
4024
4060
|
"name": "keyword.other.abl"
|
|
@@ -4027,7 +4063,7 @@
|
|
|
4027
4063
|
},
|
|
4028
4064
|
"keywords-D": {
|
|
4029
4065
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4030
|
-
"match": "(?i)\\b((
|
|
4066
|
+
"match": "(?i)\\b(d(?:color|efault|elete|elimiter|rop-target|atabase|ataset|ata-source|de|efine?|efi?|estructor|ictionary?|ictiona?|ictio?|ict|isable|isconnect?|isconne?|iscon|isplay?|ispl?|os??|own|ynamic-current-value|ynamic-new|ynamic-property|ata-bind?|ata-bi?|ata-relation?|ata-relati?|ata-rela?|ataset-handle|ebug-list|ebug-set-tenant|ebugger|eclare|efault-extension?|efault-extensi?|efault-exten?|efault-ext?|efault-untranslatable|efault-window|efer-lob-fetch|efine-user-event-manager|elegate|escending?|escendi?|escen?|esc|etach|ialog-box|ialog-help|ir|isabled|istinct|ll-call-type|otnet-clr-loaded|ouble|rop|rop-down|rop-down-list|slog-manager|ump|elete-character|el|os-end|elete-field|elete-column|eselection|eselect|eselection-extend|eselect-extend|ismiss-menu|efault-action|elete-word|elete-end-line|efault-pop-up|de-notify|ata-refresh-line|ata-refresh-page|rop-file-notify))\\b(?![#$\\-_%&])",
|
|
4031
4067
|
"captures": {
|
|
4032
4068
|
"1": {
|
|
4033
4069
|
"name": "keyword.other.abl"
|
|
@@ -4036,7 +4072,7 @@
|
|
|
4036
4072
|
},
|
|
4037
4073
|
"keywords-E": {
|
|
4038
4074
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4039
|
-
"match": "(?i)\\b((
|
|
4075
|
+
"match": "(?i)\\b(e(?:rror|xecute|num|vent|mpty|nable|nd|ntry|xport|xtent|vents|xternal|ach|cho|dge|diting|ditor|lse|nd-key|ndkey|q|rror-status?|rror-stat|scape|vent-handler-context|xcept|xclusive|xclusive-lock?|xclusive-lo?|xclusive-web-user?|xclusive-web-us?|xclusive-web-?|xists|xpire|xplicit|xtended|xtract|nd-error|nd-move|nd-resize|nd-box-selection|mpty-selection|nter-menubar|xit|ditor-tab|ditor-backtab|nd-search|nd-row-resize))\\b(?![#$\\-_%&])",
|
|
4040
4076
|
"captures": {
|
|
4041
4077
|
"1": {
|
|
4042
4078
|
"name": "keyword.other.abl"
|
|
@@ -4045,7 +4081,7 @@
|
|
|
4045
4081
|
},
|
|
4046
4082
|
"keywords-F": {
|
|
4047
4083
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4048
|
-
"match": "(?i)\\b((
|
|
4084
|
+
"match": "(?i)\\b(f(?:gcolor?|gcol?|gc|lat-button|ont|oreign-key-hidden|ormat?|orm|rame?|inally|ind|irst|ix-codepage|or|ormat?|orm|rame-value?|rame-val|unction|rom|alse|alse-leaks|etch|ields?|ile|ile-access-date?|ile-access-da?|ile-access-time?|ile-access-ti?|ile-information?|ile-informati?|ile-informa?|ile-infor?|ilename|ill-in|ilters|inal|ind-case-sensitive|ind-global|ind-next-occurrence|ind-prev-occurrence|ind-select|ind-wrap-around|inder|irehose-cursor|ixed-only|lags|loat|ocus|ont-table|orce-file|orwards?|rom-chars?|rom-cha?|rom-c|rom-current?|rom-curre?|rom-cur|rom-pixels?|rom-pixe?|rom-pi?|romnoreorder|ull-height|unction-call-type|ocus-in|ind-next|ind-previous))\\b(?![#$\\-_%&])",
|
|
4049
4085
|
"captures": {
|
|
4050
4086
|
"1": {
|
|
4051
4087
|
"name": "keyword.other.abl"
|
|
@@ -4054,7 +4090,7 @@
|
|
|
4054
4090
|
},
|
|
4055
4091
|
"keywords-G": {
|
|
4056
4092
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4057
|
-
"match": "(?i)\\b((
|
|
4093
|
+
"match": "(?i)\\b(g(?:et|et-key-value?|et-key-val|et-dir|et-file|e|enerate-md5|et-attr-call-type|et-text-height|et-text-width|etbyte|lob(?:al?)?|o-on|rant|rant-archive|rayed|rid-set|rid-unit-height|rid-unit-width|roup|[ot]|oto))\\b(?![#$\\-_%&])",
|
|
4058
4094
|
"captures": {
|
|
4059
4095
|
"1": {
|
|
4060
4096
|
"name": "keyword.other.abl"
|
|
@@ -4063,7 +4099,7 @@
|
|
|
4063
4099
|
},
|
|
4064
4100
|
"keywords-H": {
|
|
4065
4101
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4066
|
-
"match": "(?i)\\b((
|
|
4102
|
+
"match": "(?i)\\b(h(?:idden|ide|aving|eader|eight|elp-context?|elp-conte?|elp-con|elp-topic|elpfile-name?|elpfile-na?|int|ost-byte-order|ome|oriz-scroll-drag|oriz-home|oriz-end))\\b(?![#$\\-_%&])",
|
|
4067
4103
|
"captures": {
|
|
4068
4104
|
"1": {
|
|
4069
4105
|
"name": "keyword.other.abl"
|
|
@@ -4072,7 +4108,7 @@
|
|
|
4072
4108
|
},
|
|
4073
4109
|
"keywords-I": {
|
|
4074
4110
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4075
|
-
"match": "(?i)\\b((
|
|
4111
|
+
"match": "(?i)\\b(i(?:mage-down|mage-insensitive|mage-up|nitial|nitiate|mage|mport|nput|nput-output?|nput-outp?|nput-ou?|nsert|nterface|f|mage-size|mage-size-chars?|mage-size-cha?|mage-size-c|mage-size-pixels?|mage-size-pixe?|mage-size-pi?|mplements|n|ndex-hint|ndexed-reposition|ndicator|nformation?|nformati?|nforma?|nfor?|nherit-color-mode|nherits|nit|nitial-dir|nitial-filter|nner|nto|s|tem|nsert-mode|nsert-field|nsert-field-data|nsert-field-label|nsert-column|teration-changed))\\b(?![#$\\-_%&])",
|
|
4076
4112
|
"captures": {
|
|
4077
4113
|
"1": {
|
|
4078
4114
|
"name": "keyword.other.abl"
|
|
@@ -4081,7 +4117,7 @@
|
|
|
4081
4117
|
},
|
|
4082
4118
|
"keywords-J": {
|
|
4083
4119
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4084
|
-
"match": "(?i)\\b(join
|
|
4120
|
+
"match": "(?i)\\b(join(?:|-by-sqldb|-on-select))\\b(?![#$\\-_%&])",
|
|
4085
4121
|
"captures": {
|
|
4086
4122
|
"1": {
|
|
4087
4123
|
"name": "keyword.other.abl"
|
|
@@ -4090,7 +4126,7 @@
|
|
|
4090
4126
|
},
|
|
4091
4127
|
"keywords-K": {
|
|
4092
4128
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4093
|
-
"match": "(?i)\\b((
|
|
4129
|
+
"match": "(?i)\\b(ke(?:ep-frame-z-order?|ep-frame-z-ord?|ep-frame-z-o?|ep-frame-z|ep-messages|ep-tab-order|y-code|y-function?|y-functi?|y-func|y-label|ycache-join))\\b(?![#$\\-_%&])",
|
|
4094
4130
|
"captures": {
|
|
4095
4131
|
"1": {
|
|
4096
4132
|
"name": "keyword.other.abl"
|
|
@@ -4099,7 +4135,7 @@
|
|
|
4099
4135
|
},
|
|
4100
4136
|
"keywords-L": {
|
|
4101
4137
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4102
|
-
"match": "(?i)\\b((
|
|
4138
|
+
"match": "(?i)\\b(l(?:abel|ocked|eave|ength|oad|oad-picture|abel-pfcolor?|abel-pfcol?|abel-pfc|andscape|ast-event?|ast-key|e|eading|eak-detection|eft|eft-aligned?|eft-align|ike|ike-sequential|isting?|isti|ittle-endian|oad-from|oad-result-into|ob-dir|og-id|og-manager|ong|ongchar?|ongch|ookahead|ower|t|eft-end|ine-up|ine-down|ine-right|ine-left))\\b(?![#$\\-_%&])",
|
|
4103
4139
|
"captures": {
|
|
4104
4140
|
"1": {
|
|
4105
4141
|
"name": "keyword.other.abl"
|
|
@@ -4108,7 +4144,7 @@
|
|
|
4108
4144
|
},
|
|
4109
4145
|
"keywords-M": {
|
|
4110
4146
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4111
|
-
"match": "(?i)\\b((
|
|
4147
|
+
"match": "(?i)\\b(m(?:ax-button|essage-area|ouse-pointer?|ouse-point?|ouse-poi?|ouse-p|enu|essage|ethod|achine-class|ap|argin-extra|argin-height|argin-height-chars?|argin-height-cha?|argin-height-c|argin-height-pixels?|argin-height-pixe?|argin-height-pi?|argin-width|argin-width-chars?|argin-width-cha?|argin-width-c|argin-width-pixels?|argin-width-pixe?|argin-width-pi?|atches|ax|ax-height|ax-rows|ax-size|ax-width|aximize|d5-value|emptr|enu-item|enubar|essage-area-msg|essage-line|in-height|in-schema-marshall?|in-size|in-width|od|odulo|ouse|pe|ultiple-key|ust-exist|ove|ain-menu|enu-drop))\\b(?![#$\\-_%&])",
|
|
4112
4148
|
"captures": {
|
|
4113
4149
|
"1": {
|
|
4114
4150
|
"name": "keyword.other.abl"
|
|
@@ -4117,7 +4153,7 @@
|
|
|
4117
4153
|
},
|
|
4118
4154
|
"keywords-N": {
|
|
4119
4155
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4120
|
-
"match": "(?i)\\b((
|
|
4156
|
+
"match": "(?i)\\b(n(?:amespace-prefix|amespace-uri|ested|o-focus|ew|ext|ext-prompt|ative|e|ew-instance|o|o-apply|o-array-message?|o-array-messa?|o-array-mes?|o-array-m|o-assign|o-attr|o-attr-list?|o-attr-li?|o-attr-space?|o-attr-spa?|o-attr-s|o-auto-trim?|o-auto-validate|o-bind-where|o-box|o-column-scrolling?|o-column-scrolli?|o-column-scrol?|o-column-scr?|o-console|o-convert|o-convert-3d-colors?|o-convert-3d-colo?|o-convert-3d-co?|o-convert-3d-?|o-debug|o-drag|o-echo|o-error|o-fill?|o-fi?|o-firehose-cursor|o-help|o-hide|o-index-hint|o-inherit-bgcolor?|o-inherit-bgcol?|o-inherit-bgc|o-inherit-fgcolor?|o-inherit-fgcol?|o-inherit-fgc|o-join-by-sqldb|o-keycache-join|o-labels?|o-lobs|o-lock|o-lookahead|o-map|o-message?|o-messa?|o-mes|o-pause|o-prefetch?|o-prefet?|o-query-order-added?|o-query-order-add?|o-query-order-a?|o-query-order?|o-query-ord?|o-query-o|o-query-unique-added?|o-query-unique-add?|o-query-unique-a?|o-query-unique?|o-query-uniq?|o-query-un?|o-return-value?|o-return-val|o-row-markers|o-schema-marshall?|o-scrollbar-vertical?|o-scrollbar-vertic?|o-scrollbar-vert?|o-scrollbar-ve?|o-scrolling|o-separate-connection|o-separators|o-tab-stop?|o-tab-st?|o-tab-?|o-underline?|o-underli?|o-under?|o-undo??|o-wait|o-word-wrap|ode-type|on-serializable|one|ot-active|ull|um-copies|um-selected|umeric|ew-line|ext-frame|ext-word|ext-error))\\b(?![#$\\-_%&])",
|
|
4121
4157
|
"captures": {
|
|
4122
4158
|
"1": {
|
|
4123
4159
|
"name": "keyword.other.abl"
|
|
@@ -4126,7 +4162,7 @@
|
|
|
4126
4162
|
},
|
|
4127
4163
|
"keywords-O": {
|
|
4128
4164
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4129
|
-
"match": "(?i)\\b((
|
|
4165
|
+
"match": "(?i)\\b(o(?:n|bject|pen|s-append|s-command|s-copy|s-create-dir|s-delete|s-rename|utput|verlay|ctet_length|ff??|k|k-cancel|ld|le-invoke-locale?|le-invoke-loca|le-names-locale?|le-names-loca|ption|ptions-file|r|rdered-join|rientation|s-dir|s2|s400|therwise|uter|uter-join|verride|pen-line-above|ff-home|ff-end|ut-of-data))\\b(?![#$\\-_%&])",
|
|
4130
4166
|
"captures": {
|
|
4131
4167
|
"1": {
|
|
4132
4168
|
"name": "keyword.other.abl"
|
|
@@ -4135,7 +4171,7 @@
|
|
|
4135
4171
|
},
|
|
4136
4172
|
"keywords-P": {
|
|
4137
4173
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4138
|
-
"match": "(?i)\\b((
|
|
4174
|
+
"match": "(?i)\\b(p(?:fcolor?|fcol?|fc|arameter?|aramet?|aram|roperty|rocedure?|rocedu?|roce|age|ause|rocess|rompt-for?|rompt-f|romsgs|ropath|ublish|ut|ut-bits|ut-bytes??|ut-double|ut-float|ut-int64|ut-key-value?|ut-key-val|ut-long|ut-short|ut-string|ut-unsigned-long|ut-unsigned-short|rinter-setup|ackage-private|ackage-protected|age-width?|age-wid|aged|arent-id-field|artial-key|ascal|erformance?|erforman?|erform?|erfo?|ixels|ortrait|recision|reprocess?|reproce?|reselect?|resele?|rev|rinter|rivate|rivileges|rocedure-call-type|rofile-file|rofiler|rompt|rotected|ublic|utbyte|age-up|age-down|ick|ick-both|ick-area|aste|rev-word|rev-frame|age-right|age-left|age-right-text|arent-window-close|rocedure-complete))\\b(?![#$\\-_%&])",
|
|
4139
4175
|
"captures": {
|
|
4140
4176
|
"1": {
|
|
4141
4177
|
"name": "keyword.other.abl"
|
|
@@ -4144,7 +4180,7 @@
|
|
|
4144
4180
|
},
|
|
4145
4181
|
"keywords-Q": {
|
|
4146
4182
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4147
|
-
"match": "(?i)\\b(
|
|
4183
|
+
"match": "(?i)\\b(qu(?:ery|it|ery-tuning|estion))\\b(?![#$\\-_%&])",
|
|
4148
4184
|
"captures": {
|
|
4149
4185
|
"1": {
|
|
4150
4186
|
"name": "keyword.other.abl"
|
|
@@ -4153,7 +4189,7 @@
|
|
|
4153
4189
|
},
|
|
4154
4190
|
"keywords-R": {
|
|
4155
4191
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4156
|
-
"match": "(?i)\\b(
|
|
4192
|
+
"match": "(?i)\\b(r(?:ecursive|esize|eturn-value?|eturn-val|ow|equest|ectangle?|ectang?|ecta?|aw|aw-transfer|eadkey|elease|epeat|eposition|eturn|outine-level|un|adio-set|code-information?|code-informati?|code-informa?|code-infor?|ead-available|ead-exact-num|eal|eference-only|einstate|eplication-create|eplication-delete|eplication-write|eposition-backwards?|eposition-backwar?|eposition-backw?|eposition-forwards?|eposition-forwar?|eposition-forw|eposition-parent-relation?|eposition-parent-relati?|eposition-parent-rela?|esult|etain|etry-cancel|eturn-to-start-dir?|eturns|everse-from|evert|evoke|ight|ight-aligned?|ight-align|ow-created|ow-deleted|ow-height|ow-modified|ow-of|ow-unmodified|ule|ule-row|ule-y|un-procedure?|un-procedu?|un-proce?|ecall|esume-display|ight-end|eports|ow-display|ow-entry|ow-leave|ead-response))\\b(?![#$\\-_%&])",
|
|
4157
4193
|
"captures": {
|
|
4158
4194
|
"1": {
|
|
4159
4195
|
"name": "keyword.other.abl"
|
|
@@ -4162,7 +4198,7 @@
|
|
|
4162
4198
|
},
|
|
4163
4199
|
"keywords-S": {
|
|
4164
4200
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4165
|
-
"match": "(?i)\\b((
|
|
4201
|
+
"match": "(?i)\\b(s(?:croll-bars|ensitive|eparators|erialize-hidden|erialize-name|ingle-run|tatus-area|tored-procedure?|tored-procedu?|tored-proce?|ax-attributes|ax-reader|ax-writer|erver|erver-socket|oap-header|oap-header-entryref|ocket|end|tream|ub-menu|creen|uper|ave|croll|eek|et|et-byte-order|et-pointer-value?|et-pointer-val|how-stats?|tatus|top|ubscribe|ubstring?|ubstri?|ystem-dialog|ystem-help|ave-as|ax-complete?|ax-comple|ax-parser-error|ax-running|ax-uninitialized|ax-write-begin|ax-write-complete|ax-write-content|ax-write-element|ax-write-error|ax-write-idle|ax-write-tag|ax-xml|chema|creen-io|crolled-row-position?|crolled-row-positi?|crolled-row-posi?|crolling|earch-self|earch-target|ection|ecurity-policy|elect|elect-on-join|elect-repositioned-row|elected-items|election-list|elf|eparate-connection|erializable|ession|et-attr-call-type|et-cell-focus|et-contents|et-db-logging|et-event-manager-option|et-option|et-state|hare-lock?|hare-lo?|hare-?|hared|hort|ide-label?|ide-lab|ignature|ilent|imple|ingle|ingle-character|ize|ize-chars?|ize-cha?|ize-c|ize-pixels?|ize-pixe?|ize-pi?|kip|kip-group-duplicates|kip-schema-check|lider|mallint|oap-fault|ome|ource|ource-procedure|pace|ql|tart|tart-mem-check|tarting|tatic|tatus-area-msg|tdcall|tomp-detection|tomp-frequency|top-after|top-mem-check|tream-handle|tream-io|tring-xref|ub-average?|ub-avera?|ub-ave|ub-count|ub-maximum?|ub-maxim?|ub-max|ub-menu-help|ub-minimum?|ub-minim?|ub-min|ub-total|um|ummary|uspend|top-display|ettings|croll-left|croll-right|election|election-extend|elect-extend|tart-move|tart-resize|tart-box-selection|tart-extend-box-selection|croll-mode|crollbar-drag|tart-search|croll-notify|tart-row-resize|croll-vertical|croll-horizontal))\\b(?![#$\\-_%&])",
|
|
4166
4202
|
"captures": {
|
|
4167
4203
|
"1": {
|
|
4168
4204
|
"name": "keyword.other.abl"
|
|
@@ -4171,7 +4207,7 @@
|
|
|
4171
4207
|
},
|
|
4172
4208
|
"keywords-T": {
|
|
4173
4209
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4174
|
-
"match": "(?i)\\b((
|
|
4210
|
+
"match": "(?i)\\b(t(?:hree-d|itle|ooltip|ransaction?|ransacti?|hrow|emp-table|erminate|riggers|hrough|o|erminal|his-object|ransaction-mode|rigger|able-scan|arget|arget-procedure|enant|enant-where|erm|ext|ext-cursor|ext-seg-growth?|ext-seg-grow?|ext-seg-gr?|ext-seg-?|hen|his-procedure|hru|op|opic|otal|railing|rans|rue|tcodepage|ab|op-column))\\b(?![#$\\-_%&])",
|
|
4175
4211
|
"captures": {
|
|
4176
4212
|
"1": {
|
|
4177
4213
|
"name": "keyword.other.abl"
|
|
@@ -4180,7 +4216,7 @@
|
|
|
4180
4216
|
},
|
|
4181
4217
|
"keywords-U": {
|
|
4182
4218
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4183
|
-
"match": "(?i)\\b((
|
|
4219
|
+
"match": "(?i)\\b(u(?:ndo|nderline?|nderli?|nix|nload|nsubscribe|p|pdate|se|sing|nbuffered?|nbuffer?|nbuff|nformatted?|nformatt?|nforma?|nion|nique|nless-hidden|nsigned-byte|nsigned-int64|nsigned-integer|nsigned-long|nsigned-short|pper|se-dict-exps?|se-dict-ex?|se-dict-?|se-dic|se-filename|se-index|se-revvideo|se-text|se-underline|se-widget-pool|ser|tc-offset|nix-end))\\b(?![#$\\-_%&])",
|
|
4184
4220
|
"captures": {
|
|
4185
4221
|
"1": {
|
|
4186
4222
|
"name": "keyword.other.abl"
|
|
@@ -4189,7 +4225,7 @@
|
|
|
4189
4225
|
},
|
|
4190
4226
|
"keywords-V": {
|
|
4191
4227
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4192
|
-
"match": "(?i)\\b((
|
|
4228
|
+
"match": "(?i)\\b(view-as|(var(?:i(?:able?|ab?|))?)|validate|var|view|v6frame|values|verbose?|verbo?|vertical?|vertic?|vert|virtual-height|virtual-width|vms|void|value-changed)\\b(?![#$\\-_%&])",
|
|
4193
4229
|
"captures": {
|
|
4194
4230
|
"1": {
|
|
4195
4231
|
"name": "keyword.other.abl"
|
|
@@ -4198,7 +4234,7 @@
|
|
|
4198
4234
|
},
|
|
4199
4235
|
"keywords-W": {
|
|
4200
4236
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4201
|
-
"match": "(?i)\\b((
|
|
4237
|
+
"match": "(?i)\\b(w(?:arning|idget|idget-pool|ork-table?|ork-tab|orkfile|ait-for|ait|eb-context?|eb-conte?|eb-con|hen|here|hile|idth|indow-delayed-minimize?|indow-delayed-minimi?|indow-delayed-mini?|indow-maximized?|indow-maximiz?|indow-maxim|indow-minimized?|indow-minimiz?|indow-minim|indow-name|indow-normal|ith|ord-index|indow-close|indow-restored|indow-resized|eb-notify))\\b(?![#$\\-_%&])",
|
|
4202
4238
|
"captures": {
|
|
4203
4239
|
"1": {
|
|
4204
4240
|
"name": "keyword.other.abl"
|
|
@@ -4207,7 +4243,7 @@
|
|
|
4207
4243
|
},
|
|
4208
4244
|
"keywords-X": {
|
|
4209
4245
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4210
|
-
"match": "(?i)\\b(x-
|
|
4246
|
+
"match": "(?i)\\b(x(?:ml-data-type|ml-node-name|ml-node-type|-document|-noderef|-of|code|or|ref|ref-xml))\\b(?![#$\\-_%&])",
|
|
4211
4247
|
"captures": {
|
|
4212
4248
|
"1": {
|
|
4213
4249
|
"name": "keyword.other.abl"
|
|
@@ -4216,7 +4252,7 @@
|
|
|
4216
4252
|
},
|
|
4217
4253
|
"keywords-Y": {
|
|
4218
4254
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4219
|
-
"match": "(?i)\\b(y
|
|
4255
|
+
"match": "(?i)\\b(y(?:-of|ear|ear-offset|es|es-no|es-no-cancel))\\b(?![#$\\-_%&])",
|
|
4220
4256
|
"captures": {
|
|
4221
4257
|
"1": {
|
|
4222
4258
|
"name": "keyword.other.abl"
|
|
@@ -4300,7 +4336,7 @@
|
|
|
4300
4336
|
]
|
|
4301
4337
|
},
|
|
4302
4338
|
"handle-attributes-A": {
|
|
4303
|
-
"match": "(?i)(:)(
|
|
4339
|
+
"match": "(?i)(:)(a(?:ccelerator|ctive|ctor|dm-data|fter-buffer|fter-rowid|fter-table|llow-column-searching|llow-prev-deserialization|lways-on-top|mbiguous?|mbiguo?|mbig|ppl-alert-boxes?|ppl-alert-box?|ppl-alert-b?|ppl-alert|ppl-context-id|ppserver-info|ppserver-password|ppserver-userid|synchronous|sync-request-count|sync-request-handle|ttached-pairlist|ttribute-names|ttr-space?|ttr-spa?|ttr-s?|ttr|udit-event-context|uto-completion?|uto-completi?|uto-comple?|uto-comp|uto-delete|uto-delete-xml|uto-end-key|uto-go|uto-indent?|uto-inde?|uto-resize|uto-return?|uto-retu?|uto-synchronize|uto-validate?|uto-valida?|uto-vali?|uto-zap?|uto-z|vailable?|vailab?|vail|vailable-formats))\\b(?![#$\\-_%&])",
|
|
4304
4340
|
"captures": {
|
|
4305
4341
|
"1": {
|
|
4306
4342
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4311,7 +4347,7 @@
|
|
|
4311
4347
|
}
|
|
4312
4348
|
},
|
|
4313
4349
|
"handle-attributes-B": {
|
|
4314
|
-
"match": "(?i)(:)((
|
|
4350
|
+
"match": "(?i)(:)(b(?:ackground?|ackgrou?|ackgr?|ack|ase-ade|asic-logging|atch-mode|atch-size|efore-buffer|efore-rowid|efore-table|gcolor?|gcol?|gc|lank|lock-iteration-display|order-bottom-chars?|order-bottom-cha?|order-bottom-c|order-bottom-pixels?|order-bottom-pixe?|order-bottom-pi?|order-left-chars?|order-left-cha?|order-left-c|order-left-pixels?|order-left-pixe?|order-left-pi?|order-right-chars?|order-right-cha?|order-right-c|order-right-pixels?|order-right-pixe?|order-right-pi?|order-top-chars?|order-top-cha?|order-top-c|order-top-pixels?|order-top-pixe?|order-top-pi?|ox|ox-selectable?|ox-selectab?|ox-select|uffer-chars|uffer-field|uffer-group-id|uffer-group-name|uffer-handle|uffer-lines|uffer-name?|uffer-na?|uffer-partition-id|uffer-tenant-id|uffer-tenant-name|ytes-read|ytes-written))\\b(?![#$\\-_%&])",
|
|
4315
4351
|
"captures": {
|
|
4316
4352
|
"1": {
|
|
4317
4353
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4322,7 +4358,7 @@
|
|
|
4322
4358
|
}
|
|
4323
4359
|
},
|
|
4324
4360
|
"handle-attributes-C": {
|
|
4325
|
-
"match": "(?i)(:)((
|
|
4361
|
+
"match": "(?i)(:)(c(?:ache|all-name|all-type|ancel-button|ancelled|an-create?|an-crea|an-delete?|an-dele|an-do-domain-support|an-read|an-write?|areful-paint|ase-sensitive?|ase-sensiti?|ase-sensi?|ase-sen|entered?|enter|harset|hecked|hild-buffer|hild-num|lass-type|lient-connection-id|lient-tty|lient-type|lient-workstation|ode|odepage|olumns?|olumn-bgcolor?|olumn-bgcol?|olumn-bgc|olumn-dcolor|olumn-fgcolor?|olumn-fgcol?|olumn-fgc|olumn-font|olumn-label?|olumn-lab|olumn-movable|olumn-pfcolor?|olumn-pfcol?|olumn-pfc|olumn-read-only|olumn-resizable|olumn-scrolling?|olumn-scrolli?|olumn-scrol?|olumn-scr?|om-handle|omplete|onfig-name|ontext-help|ontext-help-file|ontext-help-id|ontrol-box|onvert-3d-colors?|onvert-3d-colo?|onvert-3d-co?|onvert-3d-?|overage|pcase|pcoll|pinternal?|pintern?|pinte?|plog|pprint|prcodein|prcodeout|pstream|pterm|rc-value?|rc-val|urrent-changed|urrent-column|urrent-environment?|urrent-environme?|urrent-environ?|urrent-envir?|urrent-env|urrent-iteration|urrent-request-info|urrent-response-info|urrent-result-row|urrent-row-modified|urrent-window|ursor-char|ursor-line|ursor-offset))\\b(?![#$\\-_%&])",
|
|
4326
4362
|
"captures": {
|
|
4327
4363
|
"1": {
|
|
4328
4364
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4333,7 +4369,7 @@
|
|
|
4333
4369
|
}
|
|
4334
4370
|
},
|
|
4335
4371
|
"handle-attributes-D": {
|
|
4336
|
-
"match": "(?i)(:)((
|
|
4372
|
+
"match": "(?i)(:)(d(?:ata-entry-return?|ata-entry-retu?|ata-source|ata-source-complete-map|ata-source-modified|ata-source-rowid|ata-type?|ata-ty?|ataset|ate-format?|ate-form?|ate-fo?|b-context|b-list|b-references|bname|color|de-error|de-id?|de-item|de-name|de-topic|eblank|ebug-alert|ecimals|efault|efault-buffer-handle|efault-button?|efault-butt?|efault-commit|efault-string|efault-value|elimiter|escription?|escripti?|irectory|isable-auto-zap|isplay-timezone|isplay-type?|isplay-ty?|omain-description|omain-name|omain-type|own|rag-enabled|rop-target|ynamic))\\b(?![#$\\-_%&])",
|
|
4337
4373
|
"captures": {
|
|
4338
4374
|
"1": {
|
|
4339
4375
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4344,7 +4380,7 @@
|
|
|
4344
4380
|
}
|
|
4345
4381
|
},
|
|
4346
4382
|
"handle-attributes-E": {
|
|
4347
|
-
"match": "(?i)(:)((
|
|
4383
|
+
"match": "(?i)(:)(e(?:dge-chars?|dge-cha?|dge-c|dge-pixels?|dge-pixe?|dge-pi?|dit-can-paste|dit-can-undo|mpty|nabled|ncoding|ncryption-salt|nd-user-prompt|ntity-expansion-limit|ntry-types-list|rror|rror-column?|rror-colu?|rror-object|rror-object-detail|rror-row|rror-stack-trace|rror-string|vent-group-id|vent-handler|vent-handler-object|vent-procedure|vent-procedure-context|vent-type?|vent-ty?|xclusive-id|xecution-log|xit-code|xpand|xpandable|xtent))\\b(?![#$\\-_%&])",
|
|
4348
4384
|
"captures": {
|
|
4349
4385
|
"1": {
|
|
4350
4386
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4355,7 +4391,7 @@
|
|
|
4355
4391
|
}
|
|
4356
4392
|
},
|
|
4357
4393
|
"handle-attributes-F": {
|
|
4358
|
-
"match": "(?i)(:)((
|
|
4394
|
+
"match": "(?i)(:)(f(?:gcolor?|gcol?|gc|ile-create-date?|ile-create-da?|ile-create-time?|ile-create-ti?|ile-mod-date?|ile-mod-da?|ile-mod-time?|ile-mod-ti?|ile-name|ile-offset?|ile-offs?|ile-size|ile-type|illed|ill-mode|ill-where-string|irst-async-request?|irst-async-reque?|irst-async-req?|irst-async-r?|irst-async|irst-buffer|irst-child|irst-column|irst-dataset|irst-data-source|irst-form|irst-object|irst-procedure?|irst-procedu?|irst-proce?|irst-query|irst-server?|irst-serv|irst-server-socket|irst-socket|irst-tab-item?|irst-tab-it?|it-last-column|lat-button|ocused-row|ocused-row-selected|ont|oreground?|oregrou?|oregr?|ore|oreign-key-hidden|orm-input|orm-long-input|ormat?|orm|ormatted?|orward-only|ragment?|rame?|rame-col|rame-name|rame-row|rame-spacing?|rame-spaci?|rame-spa|rame-x|rame-y|requency|ull-height-chars?|ull-height-cha?|ull-height-c|ull-height-pixels?|ull-height-pixe?|ull-height-pi?|ull-pathname?|ull-pathna?|ull-width-chars?|ull-width-cha?|ull-width-c?|ull-width|ull-width-pixels?|ull-width-pixe?|ull-width-pi?|unction))\\b(?![#$\\-_%&])",
|
|
4359
4395
|
"captures": {
|
|
4360
4396
|
"1": {
|
|
4361
4397
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4366,7 +4402,7 @@
|
|
|
4366
4402
|
}
|
|
4367
4403
|
},
|
|
4368
4404
|
"handle-attributes-G": {
|
|
4369
|
-
"match": "(?i)(:)((
|
|
4405
|
+
"match": "(?i)(:)(gr(?:aphic-edge?|aphic-ed?|id-factor-horizontal?|id-factor-horizont?|id-factor-horizo?|id-factor-hori?|id-factor-ho?|id-factor-vertical?|id-factor-vertic?|id-factor-vert?|id-factor-ve?|id-snap|id-unit-height-chars?|id-unit-height-cha?|id-unit-height-c|id-unit-height-pixels?|id-unit-height-pixe?|id-unit-height-pi?|id-unit-width-chars?|id-unit-width-cha?|id-unit-width-c|id-unit-width-pixels?|id-unit-width-pixe?|id-unit-width-pi?|id-visible|oup-box))\\b(?![#$\\-_%&])",
|
|
4370
4406
|
"captures": {
|
|
4371
4407
|
"1": {
|
|
4372
4408
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4377,7 +4413,7 @@
|
|
|
4377
4413
|
}
|
|
4378
4414
|
},
|
|
4379
4415
|
"handle-attributes-H": {
|
|
4380
|
-
"match": "(?i)(:)(
|
|
4416
|
+
"match": "(?i)(:)(h(?:andler??|as-lobs|as-records|eight-chars?|eight-cha?|eight-c|eight-pixels?|eight-pixe?|eight-pi?|elp|idden|orizontal?|orizont?|orizo?|ori|tml-charset|tml-end-of-line|tml-end-of-page|tml-frame-begin|tml-frame-end|tml-header-begin|tml-header-end|tml-title-begin|tml-title-end|wnd))\\b(?![#$\\-_%&])",
|
|
4381
4417
|
"captures": {
|
|
4382
4418
|
"1": {
|
|
4383
4419
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4388,7 +4424,7 @@
|
|
|
4388
4424
|
}
|
|
4389
4425
|
},
|
|
4390
4426
|
"handle-attributes-I": {
|
|
4391
|
-
"match": "(?i)(:)((
|
|
4427
|
+
"match": "(?i)(:)(i(?:cfparameter?|cfparamet?|cfparam|con|gnore-current-modified?|gnore-current-modifi?|gnore-current-modi?|mage|mage-down|mage-insensitive|mage-up|mmediate-display|ndex|ndex-information?|ndex-informati?|ndex-informa?|ndex-infor?|n-handle|nherit-bgcolor?|nherit-bgcol?|nherit-bgc|nherit-fgcolor?|nherit-fgcol?|nherit-fgc|nitial|nner-chars|nner-lines|nput-value|nstantiating-procedure|nternal-entries|s-class?|s-json|s-multi-tenant|s-open|s-parameter-set|s-partitioned?|s-xml|tems-per-row))\\b(?![#$\\-_%&])",
|
|
4392
4428
|
"captures": {
|
|
4393
4429
|
"1": {
|
|
4394
4430
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4399,7 +4435,7 @@
|
|
|
4399
4435
|
}
|
|
4400
4436
|
},
|
|
4401
4437
|
"handle-attributes-K": {
|
|
4402
|
-
"match": "(?i)(:)((
|
|
4438
|
+
"match": "(?i)(:)(ke(?:ep-connection-open|ep-frame-z-order?|ep-frame-z-ord?|ep-frame-z-o?|ep-frame-z|ep-security-cache|ys??))\\b(?![#$\\-_%&])",
|
|
4403
4439
|
"captures": {
|
|
4404
4440
|
"1": {
|
|
4405
4441
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4410,7 +4446,7 @@
|
|
|
4410
4446
|
}
|
|
4411
4447
|
},
|
|
4412
4448
|
"handle-attributes-L": {
|
|
4413
|
-
"match": "(?i)(:)((
|
|
4449
|
+
"match": "(?i)(:)(l(?:abel|abel-bgcolor?|abel-bgcol?|abel-bgc|abel-dcolor?|abel-dcol?|abel-dc|abel-fgcolor?|abel-fgcol?|abel-fgc|abel-font|abels|abels-have-colons|anguages?|arge|arge-to-small|ast-async-request?|ast-async-reque?|ast-async-req?|ast-async-r?|ast-async|ast-batch|ast-child|ast-form|ast-object|ast-procedure?|ast-procedu?|ast-proce|ast-server?|ast-serv|ast-server-socket|ast-socket|ast-tab-item?|ast-tab-it?|ength|ibrary|ibrary-calling-convention|ine|ist-item-pairs|ist-items|istings|iteral-question|ocal-host|ocal-name|ocal-port|ocal-version-info|ocator-column-number|ocator-line-number|ocator-public-id|ocator-system-id|ocator-type|ocked|og-entry-types|og-threshold|ogfile-name|ogging-level|ogin-expiration-timestamp|ogin-host|ogin-state))\\b(?![#$\\-_%&])",
|
|
4414
4450
|
"captures": {
|
|
4415
4451
|
"1": {
|
|
4416
4452
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4421,7 +4457,7 @@
|
|
|
4421
4457
|
}
|
|
4422
4458
|
},
|
|
4423
4459
|
"handle-attributes-M": {
|
|
4424
|
-
"match": "(?i)(:)((
|
|
4460
|
+
"match": "(?i)(:)(m(?:andatory|anual-highlight|ax-button|ax-chars|ax-data-guess|ax-height-chars?|ax-height-cha?|ax-height-c|ax-height-pixels?|ax-height-pixe?|ax-height-pi?|aximum-level|ax-value?|ax-val|ax-width-chars?|ax-width-cha?|ax-width-c|ax-width-pixels?|ax-width-pixe?|ax-width-pi?|enu-bar|enu-key?|enu-k|enu-mouse?|enu-mou?|enu-m|erge-by-field|essage-area|essage-area-font|in-button|in-column-width-chars?|in-column-width-cha?|in-column-width-c|in-column-width-pixels?|in-column-width-pixe?|in-column-width-pi?|in-height-chars?|in-height-cha?|in-height-c|in-height-pixels?|in-height-pixe?|in-height-pi?|in-schema-marshall?|in-value?|in-val|in-width-chars?|in-width-cha?|in-width-c|in-width-pixels?|in-width-pixe?|in-width-pi?|odified|ouse-pointer?|ouse-point?|ouse-poi?|ouse-p|ovable|ulti-compile|ultiple|ultitasking-interval|ust-understand))\\b(?![#$\\-_%&])",
|
|
4425
4461
|
"captures": {
|
|
4426
4462
|
"1": {
|
|
4427
4463
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4432,7 +4468,7 @@
|
|
|
4432
4468
|
}
|
|
4433
4469
|
},
|
|
4434
4470
|
"handle-attributes-N": {
|
|
4435
|
-
"match": "(?i)(:)((
|
|
4471
|
+
"match": "(?i)(:)(n(?:ame|amespace-prefix|amespace-uri|eeds-appserver-prompt|eeds-prompt|ested|ew|ew-row|ext-column?|ext-colu?|ext-rowid|ext-sibling|ext-tab-item?|o-current-value|o-empty-space|o-focus|onamespace-schema-location|o-schema-marshall?|o-validate?|o-valida?|o-vali?|ode-value|um-buffers|um-buttons?|um-butto?|um-but|um-child-relations|um-children|um-columns?|um-colum?|um-col|um-dropped-files|um-entries|um-fields|um-formats|um-header-entries|um-items|um-iterations|um-lines|um-locked-columns?|um-locked-colum?|um-locked-col|um-log-files|um-messages|um-parameters|um-references|um-relations|um-replaced?|um-replac?|um-repl|um-results|um-selected-rows|um-selected-widgets|um-source-buffers|um-tabs|um-to-retain|um-top-buffers|um-visible-columns?|um-visible-colum?|um-visible-col|umeric-decimal-point?|umeric-decimal-poi?|umeric-decimal-p?|umeric-decimal?|umeric-decim?|umeric-dec|umeric-format?|umeric-form?|umeric-fo?|umeric-separator?|umeric-separat?|umeric-separ?|umeric-sep))\\b(?![#$\\-_%&])",
|
|
4436
4472
|
"captures": {
|
|
4437
4473
|
"1": {
|
|
4438
4474
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4443,7 +4479,7 @@
|
|
|
4443
4479
|
}
|
|
4444
4480
|
},
|
|
4445
4481
|
"handle-attributes-O": {
|
|
4446
|
-
"match": "(?i)(:)((
|
|
4482
|
+
"match": "(?i)(:)(o(?:n-frame-border?|n-frame-bord?|n-frame-bo?|n-frame-?|ptions|rdinal|rigin-handle|rigin-rowid|verlay|wner|wner-document))\\b(?![#$\\-_%&])",
|
|
4447
4483
|
"captures": {
|
|
4448
4484
|
"1": {
|
|
4449
4485
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4454,7 +4490,7 @@
|
|
|
4454
4490
|
}
|
|
4455
4491
|
},
|
|
4456
4492
|
"handle-attributes-P": {
|
|
4457
|
-
"match": "(?i)(:)((
|
|
4493
|
+
"match": "(?i)(:)(p(?:age-bottom?|age-bott?|age-top|arameter?|aramet?|aram|arent|arent-buffer|arent-fields-after|arent-fields-before|arent-id-relation|arent-relation?|arent-relati?|arent-rela?|arse-status|assword-field|athname|be-hash-algorithm?|be-hash-algorit?|be-hash-algor?|be-hash-alg|be-key-rounds|ersistent?|ersiste?|ersistent-cache-disabled|ersistent-procedure|fcolor?|fcol?|fc|ixels-per-column?|ixels-per-colu?|ixels-per-row|opup-menu?|opup-me?|opup-only?|opup-on?|osition|refer-dataset|repared|repare-string|rev-column?|rev-colu?|rev-sibling|rev-tab-item?|rev-tab-it?|rimary|rimary-passphrase|rinter-control-handle|rinter-hdc|rinter-name|rinter-port|rivate-data?|rivate-da?|rocedure-name|rocedure-type|rofiling|rogress-source?|rogress-sour?|rogress-so?|roxy|roxy-password|roxy-userid|ublic-id|ublished-events))\\b(?![#$\\-_%&])",
|
|
4458
4494
|
"captures": {
|
|
4459
4495
|
"1": {
|
|
4460
4496
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4465,7 +4501,7 @@
|
|
|
4465
4501
|
}
|
|
4466
4502
|
},
|
|
4467
4503
|
"handle-attributes-Q": {
|
|
4468
|
-
"match": "(?i)(:)(
|
|
4504
|
+
"match": "(?i)(:)(qu(?:alified-user-id|ery|ery-off-end|it))\\b(?![#$\\-_%&])",
|
|
4469
4505
|
"captures": {
|
|
4470
4506
|
"1": {
|
|
4471
4507
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4476,7 +4512,7 @@
|
|
|
4476
4512
|
}
|
|
4477
4513
|
},
|
|
4478
4514
|
"handle-attributes-R": {
|
|
4479
|
-
"match": "(?i)(:)((
|
|
4515
|
+
"match": "(?i)(:)(r(?:adio-buttons|ead-only|ecid|ecord-length?|ecord-leng?|ecursive|efreshable|ejected|elation-fields?|elation-fiel?|elation-fi|elations-active|emote|emote-host|emote-port|eposition|equest-info|esizable?|esizab?|esize|esponse-info|estart-row|estart-rowid|etain-shape?|etain-sha?|etain-s|eturn-inserted?|eturn-insert?|eturn-inse?|eturn-value?|eturn-val|eturn-value-data-type|eturn-value-dll-type|oles??|ounded|ow|ow-height-chars?|ow-height-cha?|ow-height-c|ow-height-pixels?|ow-height-pixe?|ow-height-pi?|ow-state|owid|ow-markers?|ow-marke?|ow-mar?|ow-resizable))\\b(?![#$\\-_%&])",
|
|
4480
4516
|
"captures": {
|
|
4481
4517
|
"1": {
|
|
4482
4518
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4487,7 +4523,7 @@
|
|
|
4487
4523
|
}
|
|
4488
4524
|
},
|
|
4489
4525
|
"handle-attributes-S": {
|
|
4490
|
-
"match": "(?i)(:)((
|
|
4526
|
+
"match": "(?i)(:)(s(?:ave-where-string|chema-change|chema-location|chema-marshal|chema-path|creen-lines|creen-value?|creen-val|croll-bars|crollable|crollbar-horizontal?|crollbar-horizont?|crollbar-horizo?|crollbar-hori?|crollbar-ho?|crollbar-vertical?|crollbar-vertic?|crollbar-vert?|crollbar-ve?|eal-timestamp|electable|elected|election-end|election-start|election-text|ensitive|eparators|eparator-fgcolor?|eparator-fgcol?|eparator-fgc|erialize-hidden|erialize-name|erver|erver-connection-bound?|erver-connection-bou?|erver-connection-bound-request?|erver-connection-bound-reque?|erver-connection-bound-req?|erver-connection-context?|erver-connection-conte?|erver-connection-con?|erver-connection-id|erver-operating-mode|ession-end|ession-id|how-in-taskbar?|how-in-taskb?|ide-label-handle?|ide-label-hand?|ide-label-ha?|ide-labels|ignature-value|ingle-run|ingleton|kip-deleted-record?|kip-deleted-reco?|mall-icon|mall-title|oap-fault-actor|oap-fault-code|oap-fault-detail|oap-fault-misunderstood-header|oap-fault-node|oap-fault-role|oap-fault-string|oap-fault-subcode|oap-version|ort|ort-ascending|ort-number|sl-server-name|tandalone|tartup-parameters|tate-detail|tatistics|tatus-area|tatus-area-font|top|top-object|topped?|tream|tretch-to-fit|trict|trict-entity-resolution|ubtype|uper-procedures?|uper-procedur?|uper-proced?|uper-proc|uppress-namespace-processing|uppress-warnings?|uppress-warnin?|uppress-warn?|uppress-wa?|uppress-warnings-list|ymmetric-encryption-aad|ymmetric-encryption-algorithm|ymmetric-encryption-iv|ymmetric-encryption-key|ymmetric-support|ystem-alert-boxes?|ystem-alert-box?|ystem-alert-b?|ystem-alert|ystem-id))\\b(?![#$\\-_%&])",
|
|
4491
4527
|
"captures": {
|
|
4492
4528
|
"1": {
|
|
4493
4529
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4498,7 +4534,7 @@
|
|
|
4498
4534
|
}
|
|
4499
4535
|
},
|
|
4500
4536
|
"handle-attributes-T": {
|
|
4501
|
-
"match": "(?i)(:)((
|
|
4537
|
+
"match": "(?i)(:)(t(?:ab-position|ab-stop|able|able-crc-list|able-handle|able-list|able-number?|able-numb?|emp-directory?|emp-directo?|emp-direc?|emp-dir|ext-selected|hread-safe|hree-d|ic-marks|ime-source|imezone|itle|itle-bgcolor?|itle-bgcol?|itle-bgc|itle-dcolor?|itle-dcol?|itle-dc|itle-fgcolor?|itle-fgcol?|itle-fgc|itle-font?|itle-fo|oggle-box|ooltips??|op-nav-query|op-only|race-filter|racing|racking-changes|ransaction?|ransacti?|ransparent?|ranspare?|rans-init-procedure?|rans-init-procedu?|rans-init-proce?|ype))\\b(?![#$\\-_%&])",
|
|
4502
4538
|
"captures": {
|
|
4503
4539
|
"1": {
|
|
4504
4540
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4509,7 +4545,7 @@
|
|
|
4509
4545
|
}
|
|
4510
4546
|
},
|
|
4511
4547
|
"handle-attributes-U": {
|
|
4512
|
-
"match": "(?i)(:)(
|
|
4548
|
+
"match": "(?i)(:)(u(?:ndo|ndo-throw-scope|nique-id|nique-match|rl|rl-password|rl-userid|ser-id))\\b(?![#$\\-_%&])",
|
|
4513
4549
|
"captures": {
|
|
4514
4550
|
"1": {
|
|
4515
4551
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4520,7 +4556,7 @@
|
|
|
4520
4556
|
}
|
|
4521
4557
|
},
|
|
4522
4558
|
"handle-attributes-V": {
|
|
4523
|
-
"match": "(?i)(:)((
|
|
4559
|
+
"match": "(?i)(:)(v(?:6display|alidate-expression?|alidate-message|alidate-xml|alidation-enabled|alue|ersion|iew-as|iew-first-column-on-reopen|irtual-height-chars?|irtual-height-cha?|irtual-height-c|irtual-height-pixels?|irtual-height-pixe?|irtual-height-pi?|irtual-width-chars?|irtual-width-cha?|irtual-width-c|irtual-width-pixels?|irtual-width-pixe?|irtual-width-pi?|isible))\\b(?![#$\\-_%&])",
|
|
4524
4560
|
"captures": {
|
|
4525
4561
|
"1": {
|
|
4526
4562
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4531,7 +4567,7 @@
|
|
|
4531
4567
|
}
|
|
4532
4568
|
},
|
|
4533
4569
|
"handle-attributes-W": {
|
|
4534
|
-
"match": "(?i)(:)((
|
|
4570
|
+
"match": "(?i)(:)(w(?:arning|c-admin-app|here-string|idget-enter?|idget-ent?|idget-e|idget-id|idget-leave?|idget-lea?|idget-l|idth-chars?|idth-cha?|idth-c|idth-pixels?|idth-pixe?|idth-pi?|indow|indow-state?|indow-sta|indow-system?|indow-syst?|ord-wrap|ork-area-height-pixels?|ork-area-height-pixe?|ork-area-height-pi?|ork-area-width-pixels?|ork-area-width-pixe?|ork-area-width-pi?|ork-area-x|ork-area-y|rite-status))\\b(?![#$\\-_%&])",
|
|
4535
4571
|
"captures": {
|
|
4536
4572
|
"1": {
|
|
4537
4573
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4542,7 +4578,7 @@
|
|
|
4542
4578
|
}
|
|
4543
4579
|
},
|
|
4544
4580
|
"handle-attributes-X": {
|
|
4545
|
-
"match": "(?i)(:)((
|
|
4581
|
+
"match": "(?i)(:)(x(?:|-document|code-session-key|ml-data-type|ml-entity-expansion-limit|ml-node-name|ml-node-type|ml-schema-path?|ml-strict-entity-resolution|ml-suppress-namespace-processing))\\b(?![#$\\-_%&])",
|
|
4546
4582
|
"captures": {
|
|
4547
4583
|
"1": {
|
|
4548
4584
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4553,7 +4589,7 @@
|
|
|
4553
4589
|
}
|
|
4554
4590
|
},
|
|
4555
4591
|
"handle-attributes-Y": {
|
|
4556
|
-
"match": "(?i)(:)(y
|
|
4592
|
+
"match": "(?i)(:)(y(?:|ear-offset))\\b(?![#$\\-_%&])",
|
|
4557
4593
|
"captures": {
|
|
4558
4594
|
"1": {
|
|
4559
4595
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4622,7 +4658,7 @@
|
|
|
4622
4658
|
]
|
|
4623
4659
|
},
|
|
4624
4660
|
"handle-methods-A": {
|
|
4625
|
-
"begin": "(?i)(:)(
|
|
4661
|
+
"begin": "(?i)(:)(a(?:ccept-changes|ccept-row-changes|dd-buffer|dd-calc-column?|dd-calc-colu?|dd-columns-from|dd-events-procedure?|dd-events-procedu?|dd-events-proce?|dd-fields-from|dd-first|dd-header-entry|dd-index-field|dd-last|dd-like-column?|dd-like-colu?|dd-like-field|dd-like-index|dd-new-field|dd-new-index|dd-parent-id-relation|dd-relation?|dd-relati?|dd-rela?|dd-schema-location|dd-source-buffer|dd-super-procedure?|dd-super-procedu?|dd-super-proce?|ppend-child|pply-callback|ttach-data-source|uthentication-failed))\\s*(?=\\()",
|
|
4626
4662
|
"beginCaptures": {
|
|
4627
4663
|
"1": {
|
|
4628
4664
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4644,7 +4680,7 @@
|
|
|
4644
4680
|
]
|
|
4645
4681
|
},
|
|
4646
4682
|
"handle-methods-B": {
|
|
4647
|
-
"begin": "(?i)(:)((
|
|
4683
|
+
"begin": "(?i)(:)(b(?:egin-event-group|uffer-compare?|uffer-compa?|uffer-copy|uffer-create|uffer-delete|uffer-export|uffer-export-fields|uffer-field|uffer-import|uffer-import-fields|uffer-release?|uffer-validate|uffer-value))\\s*(?=\\()",
|
|
4648
4684
|
"beginCaptures": {
|
|
4649
4685
|
"1": {
|
|
4650
4686
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4666,7 +4702,7 @@
|
|
|
4666
4702
|
]
|
|
4667
4703
|
},
|
|
4668
4704
|
"handle-methods-C": {
|
|
4669
|
-
"begin": "(?i)(:)((
|
|
4705
|
+
"begin": "(?i)(:)(c(?:ancel-break|ancel-requests|ancel-requests-after|lear|lear-appl-context|lear-log|lear-selection?|lear-selecti?|lear-sort-arrows?|lone-node|lose-log|onnect|onnected|onvert-to-offset?|onvert-to-offs|opy-dataset|opy-sax-attributes|opy-temp-table|reate-like|reate-like-sequential|reate-node|reate-node-namespace|reate-result-list-entry|urrent-query))\\s*(?=\\()",
|
|
4670
4706
|
"beginCaptures": {
|
|
4671
4707
|
"1": {
|
|
4672
4708
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4688,7 +4724,7 @@
|
|
|
4688
4724
|
]
|
|
4689
4725
|
},
|
|
4690
4726
|
"handle-methods-D": {
|
|
4691
|
-
"begin": "(?i)(:)((
|
|
4727
|
+
"begin": "(?i)(:)(d(?:ebug?|eclare-namespace|elete|elete-char|elete-current-row|elete-header-entry|elete-line|elete-node|elete-result-list-entry|elete-selected-rows??|eselect-focused-row|eselect-rows|eselect-selected-row|etach-data-source|isable|isable-connections|isable-dump-triggers|isable-load-triggers|isconnect?|isconne?|iscon|isplay-message|ump-logging-now))\\s*(?=\\()",
|
|
4692
4728
|
"beginCaptures": {
|
|
4693
4729
|
"1": {
|
|
4694
4730
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4710,7 +4746,7 @@
|
|
|
4710
4746
|
]
|
|
4711
4747
|
},
|
|
4712
4748
|
"handle-methods-E": {
|
|
4713
|
-
"begin": "(?i)(:)(
|
|
4749
|
+
"begin": "(?i)(:)(e(?:dit-clear|dit-copy|dit-cut|dit-paste|dit-undo|mpty-dataset|mpty-temp-table|nable|nable-connections|ncode-domain-access-code|ncrypt-audit-mac-key|nd-document|nd-element|nd-event-group|nd-file-drop|ntry|xport|xport-principal))\\s*(?=\\()",
|
|
4714
4750
|
"beginCaptures": {
|
|
4715
4751
|
"1": {
|
|
4716
4752
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4732,7 +4768,7 @@
|
|
|
4732
4768
|
]
|
|
4733
4769
|
},
|
|
4734
4770
|
"handle-methods-F": {
|
|
4735
|
-
"begin": "(?i)(:)(
|
|
4771
|
+
"begin": "(?i)(:)(f(?:etch-selected-row|ill|ind-by-rowid|ind-current|ind-first|ind-last|ind-unique|irst-of))\\s*(?=\\()",
|
|
4736
4772
|
"beginCaptures": {
|
|
4737
4773
|
"1": {
|
|
4738
4774
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4754,7 +4790,7 @@
|
|
|
4754
4790
|
]
|
|
4755
4791
|
},
|
|
4756
4792
|
"handle-methods-G": {
|
|
4757
|
-
"begin": "(?i)(:)(
|
|
4793
|
+
"begin": "(?i)(:)(get-(?:attribute|attribute-node|binary-data|blue-value?|blue-val?|blue-v?|blue|browse-column?|browse-colu?|buffer-handle|bytes-available|callback-proc-context|callback-proc-name|cgi-list|cgi-value|cgi-long-value|changes|child|child-relation?|child-relati?|child-rela?|client|column|config-value|current?|curre?|dataset-buffer|document-element|dropped-file|dynamic|error-column|error-row|file-name|file-offset?|first?|green-value?|green-val?|green-v?|green|header-entry?|index-by-namespace-name|index-by-qname|iteration|last|localname-by-index|message|message-type|next|node|number|parent|prev|property|printers|qname-by-index|red-value?|red-val?|red-v?|red|relation?|relati?|rela?|repositioned-row|rgb-value?|rgb-val?|rgb-v?|rgb|row|safe-user|selected-widget?|selected-widg?|selected-wi?|selected-?|serialized|signature|socket-option|source-buffer|tab-item|text-height-chars?|text-height-cha?|text-height-c|text-height-pixels?|text-height-pixe?|text-height-pi?|text-width-chars?|text-width-cha?|text-width-c|text-width-pixels?|text-width-pixe?|text-width-pi?|top-buffer|type-by-index|type-by-namespace-name|type-by-qname|uri-by-index|value-by-index|value-by-namespace-name|value-by-qname|wait-state?|wait-sta?|wait-s?|wait))\\s*(?=\\()",
|
|
4758
4794
|
"beginCaptures": {
|
|
4759
4795
|
"1": {
|
|
4760
4796
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4776,7 +4812,7 @@
|
|
|
4776
4812
|
]
|
|
4777
4813
|
},
|
|
4778
4814
|
"handle-methods-I": {
|
|
4779
|
-
"begin": "(?i)(:)((
|
|
4815
|
+
"begin": "(?i)(:)(i(?:mport-node|mport-principal|ncrement-exclusive-id|ndex-information?|ndex-informati?|ndex-informa?|ndex-infor?|nitialize|nitialize-document-type|nitiate|nsert|nsert-attribute|nsert-backtab?|nsert-backt?|nsert-bac?|nsert-b|nsert-before|nsert-file|nsert-row|nsert-string|nsert-tab?|nsert-t|nvoke|s-row-selected|s-selected))\\s*(?=\\()",
|
|
4780
4816
|
"beginCaptures": {
|
|
4781
4817
|
"1": {
|
|
4782
4818
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4798,7 +4834,7 @@
|
|
|
4798
4834
|
]
|
|
4799
4835
|
},
|
|
4800
4836
|
"handle-methods-L": {
|
|
4801
|
-
"begin": "(?i)(:)((
|
|
4837
|
+
"begin": "(?i)(:)(l(?:ast-of|ist-property-names|oad|oad-domains|oad-icon|oad-image|oad-image-down|oad-image-insensitive|oad-image-up|oad-mouse-pointer?|oad-mouse-point?|oad-mouse-poi?|oad-mouse-p|oad-small-icon|ock-registration|og-audit-event|ogout|ongchar-to-node-value|ookup))\\s*(?=\\()",
|
|
4802
4838
|
"beginCaptures": {
|
|
4803
4839
|
"1": {
|
|
4804
4840
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4820,7 +4856,7 @@
|
|
|
4820
4856
|
]
|
|
4821
4857
|
},
|
|
4822
4858
|
"handle-methods-M": {
|
|
4823
|
-
"begin": "(?i)(:)((
|
|
4859
|
+
"begin": "(?i)(:)(m(?:ark-new|ark-row-state|emptr-to-node-value|erge-changes|erge-row-changes|ove-after-tab-item?|ove-after-tab-it?|ove-after-tab-?|ove-after-ta?|ove-after-?|ove-before-tab-item?|ove-before-tab-it?|ove-before-tab-?|ove-before-ta?|ove-before-?|ove-befor|ove-column?|ove-colu?|ove-to-bottom?|ove-to-bott?|ove-to-bo?|ove-to-eof|ove-to-top?|ove-to-t))\\s*(?=\\()",
|
|
4824
4860
|
"beginCaptures": {
|
|
4825
4861
|
"1": {
|
|
4826
4862
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4842,7 +4878,7 @@
|
|
|
4842
4878
|
]
|
|
4843
4879
|
},
|
|
4844
4880
|
"handle-methods-N": {
|
|
4845
|
-
"begin": "(?i)(:)(
|
|
4881
|
+
"begin": "(?i)(:)(no(?:de-value-to-longchar|de-value-to-memptr|rmalize))\\s*(?=\\()",
|
|
4846
4882
|
"beginCaptures": {
|
|
4847
4883
|
"1": {
|
|
4848
4884
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4864,7 +4900,7 @@
|
|
|
4864
4900
|
]
|
|
4865
4901
|
},
|
|
4866
4902
|
"handle-methods-Q": {
|
|
4867
|
-
"begin": "(?i)(:)(query-close|
|
|
4903
|
+
"begin": "(?i)(:)(query-(?:close|open|prepare))\\s*(?=\\()",
|
|
4868
4904
|
"beginCaptures": {
|
|
4869
4905
|
"1": {
|
|
4870
4906
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4886,7 +4922,7 @@
|
|
|
4886
4922
|
]
|
|
4887
4923
|
},
|
|
4888
4924
|
"handle-methods-R": {
|
|
4889
|
-
"begin": "(?i)(:)((
|
|
4925
|
+
"begin": "(?i)(:)(r(?:aw-transfer|ead|ead-file|ead-json|ead-xml|ead-xmlschema|efresh|efresh-audit-policy|egister-domain|eject-changes|eject-row-changes|emove-attribute|emove-child|emove-events-procedure?|emove-events-procedu?|emove-events-proce?|emove-super-procedure?|emove-super-procedu?|emove-super-proce?|eplace|eplace-child|eplace-selection-text|eposition-to-row|eposition-to-rowid|eset))\\s*(?=\\()",
|
|
4890
4926
|
"beginCaptures": {
|
|
4891
4927
|
"1": {
|
|
4892
4928
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4908,7 +4944,7 @@
|
|
|
4908
4944
|
]
|
|
4909
4945
|
},
|
|
4910
4946
|
"handle-methods-S": {
|
|
4911
|
-
"begin": "(?i)(:)((
|
|
4947
|
+
"begin": "(?i)(:)(s(?:ave|ave-file|ave-row-changes|ax-parse|ax-parse-first|ax-parse-next|croll-to-current-row|croll-to-item?|croll-to-it?|croll-to-selected-row|eal|earch|elect-all|elect-focused-row|elect-next-row|elect-prev-row|elect-row|erialize-row|et-actor|et-appl-context|et-attribute|et-attribute-node|et-blue-value?|et-blue-val?|et-blue-v?|et-blue|et-break|et-buffers|et-callback|et-callback-procedure|et-client|et-commit|et-connect-procedure|et-dynamic|et-green-value?|et-green-val?|et-green-v?|et-green|et-input-source|et-must-understand|et-node|et-numeric-format?|et-numeric-form|et-output-destination|et-parameter|et-property|et-read-response-procedure|et-red-value?|et-red-val?|et-red-v?|et-red|et-repositioned-row|et-rgb-value?|et-rgb-val?|et-rgb-v?|et-rgb|et-role|et-rollback|et-safe-user|et-selection|et-serialized|et-socket-option|et-sort-arrow|et-wait-state?|et-wait-sta?|et-wait-s?|et-wait|tart-document|tart-element|top-parsing|tring-value|ynchronize))\\s*(?=\\()",
|
|
4912
4948
|
"beginCaptures": {
|
|
4913
4949
|
"1": {
|
|
4914
4950
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4930,7 +4966,7 @@
|
|
|
4930
4966
|
]
|
|
4931
4967
|
},
|
|
4932
4968
|
"handle-methods-T": {
|
|
4933
|
-
"begin": "(?i)(:)((
|
|
4969
|
+
"begin": "(?i)(:)(te(?:mp-table-prepare?|nant-id|nant-name))\\s*(?=\\()",
|
|
4934
4970
|
"beginCaptures": {
|
|
4935
4971
|
"1": {
|
|
4936
4972
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4952,7 +4988,7 @@
|
|
|
4952
4988
|
]
|
|
4953
4989
|
},
|
|
4954
4990
|
"handle-methods-U": {
|
|
4955
|
-
"begin": "(?i)(:)(
|
|
4991
|
+
"begin": "(?i)(:)(u(?:pdate-attribute|rl-decode|rl-encode|ser-data))\\s*(?=\\()",
|
|
4956
4992
|
"beginCaptures": {
|
|
4957
4993
|
"1": {
|
|
4958
4994
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4974,7 +5010,7 @@
|
|
|
4974
5010
|
]
|
|
4975
5011
|
},
|
|
4976
5012
|
"handle-methods-V": {
|
|
4977
|
-
"begin": "(?i)(:)(validate
|
|
5013
|
+
"begin": "(?i)(:)(validate(?:|-domain-access-code|-seal))\\s*(?=\\()",
|
|
4978
5014
|
"beginCaptures": {
|
|
4979
5015
|
"1": {
|
|
4980
5016
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4996,7 +5032,7 @@
|
|
|
4996
5032
|
]
|
|
4997
5033
|
},
|
|
4998
5034
|
"handle-methods-W": {
|
|
4999
|
-
"begin": "(?i)(:)(write
|
|
5035
|
+
"begin": "(?i)(:)(write(?:|-cdata|-characters|-comment|-data|-data-element|-empty-element|-entity-ref|-external-dtd|-fragment|-json|-message|-processing-instruction|-xml|-xmlschema))\\s*(?=\\()",
|
|
5000
5036
|
"beginCaptures": {
|
|
5001
5037
|
"1": {
|
|
5002
5038
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -5092,7 +5128,7 @@
|
|
|
5092
5128
|
},
|
|
5093
5129
|
"abl-functions-A": {
|
|
5094
5130
|
"name": "meta.function-call.abl",
|
|
5095
|
-
"begin": "(?i)\\s*((
|
|
5131
|
+
"begin": "(?i)\\s*(a(?:bsolute?|bsolu?|bso?|ccumulate?|ccumula?|ccumu?|dd-interval|lias|mbiguous?|mbiguo?|mbig|scending?|scendi?|scen?|sc|udit-enabled|vailable?|vailab?|vail))\\s*(?=\\()",
|
|
5096
5132
|
"beginCaptures": {
|
|
5097
5133
|
"1": {
|
|
5098
5134
|
"name": "support.function.abl"
|
|
@@ -5112,7 +5148,7 @@
|
|
|
5112
5148
|
},
|
|
5113
5149
|
"abl-functions-B": {
|
|
5114
5150
|
"name": "meta.function-call.abl",
|
|
5115
|
-
"begin": "(?i)\\s*(
|
|
5151
|
+
"begin": "(?i)\\s*(b(?:ase64-decode|ase64-encode|ox|uffer-group-id|uffer-group-name|uffer-partition-id|uffer-tenant-id|uffer-tenant-name))\\s*(?=\\()",
|
|
5116
5152
|
"beginCaptures": {
|
|
5117
5153
|
"1": {
|
|
5118
5154
|
"name": "support.function.abl"
|
|
@@ -5132,7 +5168,7 @@
|
|
|
5132
5168
|
},
|
|
5133
5169
|
"abl-functions-C": {
|
|
5134
5170
|
"name": "meta.function-call.abl",
|
|
5135
|
-
"begin": "(?i)\\s*((
|
|
5171
|
+
"begin": "(?i)\\s*(c(?:an-do|an-find|an-query|an-set|aps|ast|hr|odepage-convert|ompares?|onnected|ount-of|urrent-changed|urrent-language?|urrent-langua?|urrent-lang|urrent-result-row|urrent-value))\\s*(?=\\()",
|
|
5136
5172
|
"beginCaptures": {
|
|
5137
5173
|
"1": {
|
|
5138
5174
|
"name": "support.function.abl"
|
|
@@ -5152,7 +5188,7 @@
|
|
|
5152
5188
|
},
|
|
5153
5189
|
"abl-functions-D": {
|
|
5154
5190
|
"name": "meta.function-call.abl",
|
|
5155
|
-
"begin": "(?i)\\s*((
|
|
5191
|
+
"begin": "(?i)\\s*(d(?:ataservers|ata-source-modified|ate|atetime|atetime-tz|ay|bcodepage|bcollation|bname|bparam|b-remote-host|brestrictions?|brestrictio?|brestrict?|brestri?|brest|btaskid|btype|bversion?|bversi?|ecimal?|ecim?|ec|ecrypt|efined|ynamic-cast|ynamic-current-value|ynamic-enum|ynamic-function?|ynamic-functi?|ynamic-func|ynamic-invoke|ynamic-next-value|ynamic-property))\\s*(?=\\()",
|
|
5156
5192
|
"beginCaptures": {
|
|
5157
5193
|
"1": {
|
|
5158
5194
|
"name": "support.function.abl"
|
|
@@ -5172,7 +5208,7 @@
|
|
|
5172
5208
|
},
|
|
5173
5209
|
"abl-functions-E": {
|
|
5174
5210
|
"name": "meta.function-call.abl",
|
|
5175
|
-
"begin": "(?i)\\s*(
|
|
5211
|
+
"begin": "(?i)\\s*(e(?:ncode|ncrypt|ntered|ntry|rror|time|xp|xtent))\\s*(?=\\()",
|
|
5176
5212
|
"beginCaptures": {
|
|
5177
5213
|
"1": {
|
|
5178
5214
|
"name": "support.function.abl"
|
|
@@ -5192,7 +5228,7 @@
|
|
|
5192
5228
|
},
|
|
5193
5229
|
"abl-functions-F": {
|
|
5194
5230
|
"name": "meta.function-call.abl",
|
|
5195
|
-
"begin": "(?i)\\s*((
|
|
5231
|
+
"begin": "(?i)\\s*(f(?:ill|irst|irst-of|rame-col|rame-db|rame-down|rame-field|rame-file|rame-index?|rame-line|rame-name|rame-row|rame-value?|rame-val))\\s*(?=\\()",
|
|
5196
5232
|
"beginCaptures": {
|
|
5197
5233
|
"1": {
|
|
5198
5234
|
"name": "support.function.abl"
|
|
@@ -5212,7 +5248,7 @@
|
|
|
5212
5248
|
},
|
|
5213
5249
|
"abl-functions-G": {
|
|
5214
5250
|
"name": "meta.function-call.abl",
|
|
5215
|
-
"begin": "(?i)\\s*((
|
|
5251
|
+
"begin": "(?i)\\s*(g(?:ateways?|enerate-pbe-key|enerate-pbe-salt|enerate-random-key|enerate-uuid|et-bits|et-byte|et-byte-order|et-bytes|et-class|et-codepages?|et-codepages?|et-collations??|et-collation?|et-collati?|et-colla?|et-db-client|et-double|et-effective-tenant-id|et-effective-tenant-name|et-float|et-int64|et-long|et-pointer-value|et-short|et-size|et-string|et-unsigned-long|et-unsigned-short|o-pending?|o-pendi?|uid))\\s*(?=\\()",
|
|
5216
5252
|
"beginCaptures": {
|
|
5217
5253
|
"1": {
|
|
5218
5254
|
"name": "support.function.abl"
|
|
@@ -5232,7 +5268,7 @@
|
|
|
5232
5268
|
},
|
|
5233
5269
|
"abl-functions-H": {
|
|
5234
5270
|
"name": "meta.function-call.abl",
|
|
5235
|
-
"begin": "(?i)\\s*(
|
|
5271
|
+
"begin": "(?i)\\s*(h(?:andle|ash-code|ex-decode|ex-encode))\\s*(?=\\()",
|
|
5236
5272
|
"beginCaptures": {
|
|
5237
5273
|
"1": {
|
|
5238
5274
|
"name": "support.function.abl"
|
|
@@ -5252,7 +5288,7 @@
|
|
|
5252
5288
|
},
|
|
5253
5289
|
"abl-functions-I": {
|
|
5254
5290
|
"name": "meta.function-call.abl",
|
|
5255
|
-
"begin": "(?i)\\s*((
|
|
5291
|
+
"begin": "(?i)\\s*(i(?:ndex|nput|nt64|nteger?|nteg?|nt|nterval|s-attr-space?|s-attr-spa?|s-attr-s?|s-attr|s-codepage-fixed|s-column-codepage|s-db-multi-tenant|s-lead-byte|so-date))\\s*(?=\\()",
|
|
5256
5292
|
"beginCaptures": {
|
|
5257
5293
|
"1": {
|
|
5258
5294
|
"name": "support.function.abl"
|
|
@@ -5272,7 +5308,7 @@
|
|
|
5272
5308
|
},
|
|
5273
5309
|
"abl-functions-K": {
|
|
5274
5310
|
"name": "meta.function-call.abl",
|
|
5275
|
-
"begin": "(?i)\\s*((
|
|
5311
|
+
"begin": "(?i)\\s*(k(?:blabel|eycode|eyfunction?|eyfuncti?|eyfunc|eylabel|eyword|eyword-all))\\s*(?=\\()",
|
|
5276
5312
|
"beginCaptures": {
|
|
5277
5313
|
"1": {
|
|
5278
5314
|
"name": "support.function.abl"
|
|
@@ -5292,7 +5328,7 @@
|
|
|
5292
5328
|
},
|
|
5293
5329
|
"abl-functions-L": {
|
|
5294
5330
|
"name": "meta.function-call.abl",
|
|
5295
|
-
"begin": "(?i)\\s*(
|
|
5331
|
+
"begin": "(?i)\\s*(last|lastkey|last-of|lc|ldbname|left-trim|length|library|line-counter?|line-count|list-events|list-query-attrs|list-set-attrs|list-widgets|locked|log|(log(?:i(?:cal?|c?))?)|lo?|(longch(?:ar?)?)|lookup|lower)\\s*(?=\\()",
|
|
5296
5332
|
"beginCaptures": {
|
|
5297
5333
|
"1": {
|
|
5298
5334
|
"name": "support.function.abl"
|
|
@@ -5312,7 +5348,7 @@
|
|
|
5312
5348
|
},
|
|
5313
5349
|
"abl-functions-M": {
|
|
5314
5350
|
"name": "meta.function-call.abl",
|
|
5315
|
-
"begin": "(?i)\\s*((
|
|
5351
|
+
"begin": "(?i)\\s*(m(?:aximum|d5-digest|ember|essage-digest|essage-lines|inimum?|inim?|in|onth|time))\\s*(?=\\()",
|
|
5316
5352
|
"beginCaptures": {
|
|
5317
5353
|
"1": {
|
|
5318
5354
|
"name": "support.function.abl"
|
|
@@ -5332,7 +5368,7 @@
|
|
|
5332
5368
|
},
|
|
5333
5369
|
"abl-functions-N": {
|
|
5334
5370
|
"name": "meta.function-call.abl",
|
|
5335
|
-
"begin": "(?i)\\s*((
|
|
5371
|
+
"begin": "(?i)\\s*(n(?:ew|ext-value|ormalize|ot|ow|um-aliases?|um-alias?|um-ali|um-dbs|um-entries|um-results))\\s*(?=\\()",
|
|
5336
5372
|
"beginCaptures": {
|
|
5337
5373
|
"1": {
|
|
5338
5374
|
"name": "support.function.abl"
|
|
@@ -5352,7 +5388,7 @@
|
|
|
5352
5388
|
},
|
|
5353
5389
|
"abl-functions-O": {
|
|
5354
5390
|
"name": "meta.function-call.abl",
|
|
5355
|
-
"begin": "(?i)\\s*((
|
|
5391
|
+
"begin": "(?i)\\s*(o(?:psys|s-drives?|s-error|s-getenv|s-dir))\\s*(?=\\()",
|
|
5356
5392
|
"beginCaptures": {
|
|
5357
5393
|
"1": {
|
|
5358
5394
|
"name": "support.function.abl"
|
|
@@ -5372,7 +5408,7 @@
|
|
|
5372
5408
|
},
|
|
5373
5409
|
"abl-functions-P": {
|
|
5374
5410
|
"name": "meta.function-call.abl",
|
|
5375
|
-
"begin": "(?i)\\s*((
|
|
5411
|
+
"begin": "(?i)\\s*(p(?:age-number?|age-numb?|age-size|dbname|roc-handle?|roc-hand?|roc-ha|roc-status?|roc-stat?|roc-st|rocess-architecture|rogram-name|rogress|romsgs|ropath|roversion?|roversi?))\\s*(?=\\()",
|
|
5376
5412
|
"beginCaptures": {
|
|
5377
5413
|
"1": {
|
|
5378
5414
|
"name": "support.function.abl"
|
|
@@ -5392,7 +5428,7 @@
|
|
|
5392
5428
|
},
|
|
5393
5429
|
"abl-functions-Q": {
|
|
5394
5430
|
"name": "meta.function-call.abl",
|
|
5395
|
-
"begin": "(?i)\\s*(
|
|
5431
|
+
"begin": "(?i)\\s*(qu(?:ery-off-end|oter))\\s*(?=\\()",
|
|
5396
5432
|
"beginCaptures": {
|
|
5397
5433
|
"1": {
|
|
5398
5434
|
"name": "support.function.abl"
|
|
@@ -5412,7 +5448,7 @@
|
|
|
5412
5448
|
},
|
|
5413
5449
|
"abl-functions-R": {
|
|
5414
5450
|
"name": "meta.function-call.abl",
|
|
5415
|
-
"begin": "(?i)\\s*((
|
|
5451
|
+
"begin": "(?i)\\s*(r(?:elation-fields?|elation-fiel?|elation-fi|-index|andom|aw|ecid|ecord-length?|ecord-leng?|ejected|eplace|etry|eturn-value?|eturn-val|gb-value?|gb-val?|gb-v|ight-trim|ound|ow-state|owid|eturn))\\s*(?=\\()",
|
|
5416
5452
|
"beginCaptures": {
|
|
5417
5453
|
"1": {
|
|
5418
5454
|
"name": "support.function.abl"
|
|
@@ -5432,7 +5468,7 @@
|
|
|
5432
5468
|
},
|
|
5433
5469
|
"abl-functions-S": {
|
|
5434
5470
|
"name": "meta.function-call.abl",
|
|
5435
|
-
"begin": "(?i)\\s*((
|
|
5471
|
+
"begin": "(?i)\\s*(s(?:creen-lines|dbname|earch|eek|et-db-client|et-effective-tenant|et-size|etuserid?|etuser|ha1-digest|qrt|sl-server-name|tring|ubstitute?|ubstitu?|ubsti?|ubstring?|ubstri?|uper|kip))\\s*(?=\\()",
|
|
5436
5472
|
"beginCaptures": {
|
|
5437
5473
|
"1": {
|
|
5438
5474
|
"name": "support.function.abl"
|
|
@@ -5452,7 +5488,7 @@
|
|
|
5452
5488
|
},
|
|
5453
5489
|
"abl-functions-T": {
|
|
5454
5490
|
"name": "meta.function-call.abl",
|
|
5455
|
-
"begin": "(?i)\\s*((
|
|
5491
|
+
"begin": "(?i)\\s*(t(?:enant-id|enant-name|enant-name-to-id|erminal|ime|imezone|oday|o-rowid|ransaction?|ransacti?|rim|runcate?|runca?|ype-of|his-object))\\s*(?=\\()",
|
|
5456
5492
|
"beginCaptures": {
|
|
5457
5493
|
"1": {
|
|
5458
5494
|
"name": "support.function.abl"
|
|
@@ -5472,7 +5508,7 @@
|
|
|
5472
5508
|
},
|
|
5473
5509
|
"abl-functions-U": {
|
|
5474
5510
|
"name": "meta.function-call.abl",
|
|
5475
|
-
"begin": "(?i)\\s*(
|
|
5511
|
+
"begin": "(?i)\\s*(u(?:nbox|serid))\\s*(?=\\()",
|
|
5476
5512
|
"beginCaptures": {
|
|
5477
5513
|
"1": {
|
|
5478
5514
|
"name": "support.function.abl"
|
|
@@ -5492,7 +5528,7 @@
|
|
|
5492
5528
|
},
|
|
5493
5529
|
"abl-functions-V": {
|
|
5494
5530
|
"name": "meta.function-call.abl",
|
|
5495
|
-
"begin": "(?i)\\s*(
|
|
5531
|
+
"begin": "(?i)\\s*(val(?:ue|id-event|id-handle|id-object))\\s*(?=\\()",
|
|
5496
5532
|
"beginCaptures": {
|
|
5497
5533
|
"1": {
|
|
5498
5534
|
"name": "support.function.abl"
|
|
@@ -5512,7 +5548,7 @@
|
|
|
5512
5548
|
},
|
|
5513
5549
|
"abl-functions-W": {
|
|
5514
5550
|
"name": "meta.function-call.abl",
|
|
5515
|
-
"begin": "(?i)\\s*((
|
|
5551
|
+
"begin": "(?i)\\s*(w(?:eekday|idget-handle?|idget-hand?|idget-ha?))\\s*(?=\\()",
|
|
5516
5552
|
"beginCaptures": {
|
|
5517
5553
|
"1": {
|
|
5518
5554
|
"name": "support.function.abl"
|
|
@@ -5553,4 +5589,4 @@
|
|
|
5553
5589
|
},
|
|
5554
5590
|
"scopeName": "source.abl",
|
|
5555
5591
|
"uuid": "075bb86e-03ea-4fea-bac0-e11b9dc73e03"
|
|
5556
|
-
}
|
|
5592
|
+
}
|