abl-tmlanguage 1.3.6 → 1.3.8
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/abl.tmLanguage.json +175 -68
- package/azure-pipelines.yml +2 -2
- package/index.js +74 -49
- package/package.json +1 -1
- package/spec/blocks/on-quit.spec.js +32 -32
- package/spec/comments/comment-in-block-statement.spec.js +18 -18
- package/spec/define/define-button.spec.js +233 -0
- package/spec/define-frame/issue#173.spec.js +48 -0
- package/spec/define-temp-table/define-dataset.spec.js +4 -4
- package/spec/define-temp-table/define-temp-table.spec.js +148 -0
- package/spec/define-variable/define-like.spec.js +78 -0
- package/spec/do/do-blocks.spec.js +89 -58
- package/spec/function-call/misc-abl-functions.spec.js +22 -0
- package/spec/method-attribute-property-call/nested-property-call.spec.js +35 -0
- package/spec/misc-statements/class-in-var-name.spec.js +205 -0
- package/spec/misc-statements/export-delimiter.spec.js +37 -0
- package/spec/misc-statements/if-then.spec.js +8 -8
- package/spec/misc-statements/issue#173.spec.js +100 -0
- package/spec/misc-statements/message-statement.spec.js +21 -0
- package/spec/misc-statements/skip-statement-and-fuction.spec.js +36 -0
- package/spec/misc-statements/system-handles.spec.js +108 -0
- package/spec/type-name/type-name.spec.js +6 -7
- package/spec/type-name/using.spec.js +26 -13
package/abl.tmLanguage.json
CHANGED
|
@@ -560,6 +560,9 @@
|
|
|
560
560
|
{
|
|
561
561
|
"include": "#break-by"
|
|
562
562
|
},
|
|
563
|
+
{
|
|
564
|
+
"include": "#type-reference"
|
|
565
|
+
},
|
|
563
566
|
{
|
|
564
567
|
"include": "#for-join"
|
|
565
568
|
},
|
|
@@ -605,9 +608,6 @@
|
|
|
605
608
|
{
|
|
606
609
|
"include": "#property-accessor"
|
|
607
610
|
},
|
|
608
|
-
{
|
|
609
|
-
"include": "#type-reference"
|
|
610
|
-
},
|
|
611
611
|
{
|
|
612
612
|
"include": "#for-each-table"
|
|
613
613
|
},
|
|
@@ -746,7 +746,7 @@
|
|
|
746
746
|
"comment": "Captures USING foo.bar.* .",
|
|
747
747
|
"match": "(?i)\\s*((([\\w\\#\\$\\%]+|progress)(\\.[\\w\\#\\$\\%]+)*)\\.\\*)\\s*",
|
|
748
748
|
"captures": {
|
|
749
|
-
"
|
|
749
|
+
"2": {
|
|
750
750
|
"name": "entity.name.package.abl"
|
|
751
751
|
}
|
|
752
752
|
}
|
|
@@ -883,7 +883,7 @@
|
|
|
883
883
|
},
|
|
884
884
|
"define-class": {
|
|
885
885
|
"name": "meta.define.class.abl",
|
|
886
|
-
"begin": "(?i)\\b(class)\\b",
|
|
886
|
+
"begin": "(?i)\\b(?<![\\#\\$\\-\\_\\%\\&])(class)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
887
887
|
"beginCaptures": {
|
|
888
888
|
"1": {
|
|
889
889
|
"name": "keyword.other.abl"
|
|
@@ -1051,7 +1051,8 @@
|
|
|
1051
1051
|
"name": "meta.brace.round.js"
|
|
1052
1052
|
},
|
|
1053
1053
|
"new-class": {
|
|
1054
|
-
"
|
|
1054
|
+
"comment": "A dash/minus is not a word boundary, so we need to make sure we don't capture constructs like new-variable",
|
|
1055
|
+
"begin": "(?i)\\b(new)\\b(?!\\-)",
|
|
1055
1056
|
"beginCaptures": {
|
|
1056
1057
|
"1": {
|
|
1057
1058
|
"name": "keyword.other.abl"
|
|
@@ -1211,7 +1212,7 @@
|
|
|
1211
1212
|
},
|
|
1212
1213
|
"for-join": {
|
|
1213
1214
|
"comment": "Captures something like ', salesrep where' or 'salesrep where', when the latter is at the beginning of a line. 'OF' phrases handled by of-phrase",
|
|
1214
|
-
"match": "(?i)(?<=,|^)\\s*([\\w\\-#$%]+(\\.[\\w\\-#$%]+)?)\\s+(?=where|no-lock|exclusive-lock|exclusive-loc|exclusive-lo|exclusive-l|share-lock|share-loc|share-lo|share-|share|tenant-where|use-index|table-scan|using|no-prefetch|left|outer-join|break|by|transaction)",
|
|
1215
|
+
"match": "(?i)(?<=,|^)\\s*([\\w\\-#$%]+(\\.[\\w\\-#$%]+)?)\\s+(?=where|no-lock|exclusive-lock|exclusive-loc|exclusive-lo|exclusive-l|share-lock|share-loc|share-lo|share-|share|tenant-where|use-index|table-scan|using|no-prefetch|left|outer-join|break|by|transaction)\\s*",
|
|
1215
1216
|
"captures": {
|
|
1216
1217
|
"1": {
|
|
1217
1218
|
"name": "storage.data.table.abl"
|
|
@@ -1464,6 +1465,9 @@
|
|
|
1464
1465
|
{
|
|
1465
1466
|
"include": "#break-group"
|
|
1466
1467
|
},
|
|
1468
|
+
{
|
|
1469
|
+
"include": "#block-undo-leave-next-retry"
|
|
1470
|
+
},
|
|
1467
1471
|
{
|
|
1468
1472
|
"include": "#operator"
|
|
1469
1473
|
},
|
|
@@ -1666,6 +1670,14 @@
|
|
|
1666
1670
|
}
|
|
1667
1671
|
}
|
|
1668
1672
|
},
|
|
1673
|
+
"variable-like": {
|
|
1674
|
+
"match": "(?i)\\s*([\\w\\-]+)\\s+(?=like)\\s*",
|
|
1675
|
+
"captures": {
|
|
1676
|
+
"1": {
|
|
1677
|
+
"name": "variable.other.abl"
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1669
1681
|
"property-as": {
|
|
1670
1682
|
"match": "(?i)\\s*([\\w\\-]+)\\s+(as)\\s*",
|
|
1671
1683
|
"captures": {
|
|
@@ -1775,6 +1787,9 @@
|
|
|
1775
1787
|
{
|
|
1776
1788
|
"include": "#define-parameter"
|
|
1777
1789
|
},
|
|
1790
|
+
{
|
|
1791
|
+
"include": "#define-button"
|
|
1792
|
+
},
|
|
1778
1793
|
{
|
|
1779
1794
|
"include": "#define-dataset"
|
|
1780
1795
|
},
|
|
@@ -2193,6 +2208,58 @@
|
|
|
2193
2208
|
}
|
|
2194
2209
|
}
|
|
2195
2210
|
},
|
|
2211
|
+
"define-button": {
|
|
2212
|
+
"begin": "(?i)\\s*(button)\\s+([a-z][a-z0-9#$\\-_%&]*)",
|
|
2213
|
+
"beginCaptures": {
|
|
2214
|
+
"1": {
|
|
2215
|
+
"name": "keyword.other.abl"
|
|
2216
|
+
},
|
|
2217
|
+
"2": {
|
|
2218
|
+
"name": "variable.other.abl"
|
|
2219
|
+
}
|
|
2220
|
+
},
|
|
2221
|
+
"end": "(?=\\.)",
|
|
2222
|
+
"patterns": [
|
|
2223
|
+
{
|
|
2224
|
+
"include": "#comment"
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
"include": "#string"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"include": "#from-x-and-y"
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"include": "#numeric"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"include": "#keywords"
|
|
2237
|
+
},
|
|
2238
|
+
{
|
|
2239
|
+
"include": "#expression"
|
|
2240
|
+
}
|
|
2241
|
+
]
|
|
2242
|
+
},
|
|
2243
|
+
"from-x-and-y": {
|
|
2244
|
+
"match": "(?i)\\b(from)\\s+(X)\\s+((0(x)[0-9a-fA-F]+)|(\\-?[0-9]+(\\.[0-9]+)?))\\s+(y)\\s+((0(x)[0-9a-fA-F]+)|(\\-?[0-9]+(\\.[0-9]+)?))\\s+ ",
|
|
2245
|
+
"captures": {
|
|
2246
|
+
"1": {
|
|
2247
|
+
"name": "keyword.other.abl"
|
|
2248
|
+
},
|
|
2249
|
+
"2": {
|
|
2250
|
+
"name": "keyword.other.abl"
|
|
2251
|
+
},
|
|
2252
|
+
"6": {
|
|
2253
|
+
"name": "constant.numeric.source.abl"
|
|
2254
|
+
},
|
|
2255
|
+
"8": {
|
|
2256
|
+
"name": "keyword.other.abl"
|
|
2257
|
+
},
|
|
2258
|
+
"12": {
|
|
2259
|
+
"name": "constant.numeric.source.abl"
|
|
2260
|
+
}
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2196
2263
|
"define-buffer": {
|
|
2197
2264
|
"begin": "(?i)\\s*(buffer)\\s*",
|
|
2198
2265
|
"beginCaptures": {
|
|
@@ -2256,9 +2323,15 @@
|
|
|
2256
2323
|
{
|
|
2257
2324
|
"include": "#variable-as"
|
|
2258
2325
|
},
|
|
2326
|
+
{
|
|
2327
|
+
"include": "#variable-like"
|
|
2328
|
+
},
|
|
2259
2329
|
{
|
|
2260
2330
|
"include": "#primitive-type"
|
|
2261
2331
|
},
|
|
2332
|
+
{
|
|
2333
|
+
"include": "#define-like"
|
|
2334
|
+
},
|
|
2262
2335
|
{
|
|
2263
2336
|
"comment": "needs to be before the #keywords include",
|
|
2264
2337
|
"include": "#type-names"
|
|
@@ -2306,7 +2379,7 @@
|
|
|
2306
2379
|
}
|
|
2307
2380
|
},
|
|
2308
2381
|
"define-table": {
|
|
2309
|
-
"match": "(?i)(?<=\\b)(temp-table|
|
|
2382
|
+
"match": "(?i)(?<=\\b)(temp-table|before-table)\\s*([\\w\\-#$%]+)\\s*",
|
|
2310
2383
|
"captures": {
|
|
2311
2384
|
"1": {
|
|
2312
2385
|
"name": "keyword.other.abl"
|
|
@@ -2447,7 +2520,7 @@
|
|
|
2447
2520
|
}
|
|
2448
2521
|
},
|
|
2449
2522
|
"define-like": {
|
|
2450
|
-
"match": "(?i)\\s*(like|like-sequential)\\s+([\\w\\-#$%]+)
|
|
2523
|
+
"match": "(?i)\\s*(like|like-sequential)\\s+(([\\w\\-#$%]+\\.)?([\\w\\-#$%]+\\.)?([\\w\\-#$%]+))",
|
|
2451
2524
|
"captures": {
|
|
2452
2525
|
"1": {
|
|
2453
2526
|
"name": "keyword.other.abl"
|
|
@@ -2566,6 +2639,9 @@
|
|
|
2566
2639
|
{
|
|
2567
2640
|
"include": "#abl-functions"
|
|
2568
2641
|
},
|
|
2642
|
+
{
|
|
2643
|
+
"include": "#db-dot-table-dot-field"
|
|
2644
|
+
},
|
|
2569
2645
|
{
|
|
2570
2646
|
"include": "#expression"
|
|
2571
2647
|
}
|
|
@@ -2709,7 +2785,6 @@
|
|
|
2709
2785
|
}
|
|
2710
2786
|
},
|
|
2711
2787
|
"on-error-endkey-stop": {
|
|
2712
|
-
"name": "meta.block.branch.abl",
|
|
2713
2788
|
"match": "(?i)\\s*(on)\\s+(endkey|error|stop|quit)\\s+(undo)\\s*(?!leave|next|retry|return|throw)([a-z0-9\\-\\_\\$]*)?\\s*",
|
|
2714
2789
|
"captures": {
|
|
2715
2790
|
"1": {
|
|
@@ -2726,8 +2801,19 @@
|
|
|
2726
2801
|
}
|
|
2727
2802
|
}
|
|
2728
2803
|
},
|
|
2804
|
+
"block-undo-leave-next-retry": {
|
|
2805
|
+
"comment": "Covers NEXT, LEAVE, RETRY and UNDO with block labels that are not preceded by UNDO, ",
|
|
2806
|
+
"match": "(?i)\\s*(?<!,)\\s*(leave|next|retry|undo)\\s*(?!on)([a-z0-9\\-\\_\\$]*)?\\s*",
|
|
2807
|
+
"captures": {
|
|
2808
|
+
"1": {
|
|
2809
|
+
"name": "keyword.other.abl"
|
|
2810
|
+
},
|
|
2811
|
+
"2": {
|
|
2812
|
+
"name": "meta.block.label.abl"
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2729
2816
|
"branch-leave-next-retry-throw": {
|
|
2730
|
-
"name": "meta.block.branch.abl",
|
|
2731
2817
|
"match": "(?i)\\s*(?<=,)\\s*(leave|next|retry|throw)\\s*(?!on)([a-z0-9\\-\\_\\$]*)?\\s*",
|
|
2732
2818
|
"captures": {
|
|
2733
2819
|
"1": {
|
|
@@ -2770,7 +2856,6 @@
|
|
|
2770
2856
|
"name": "constant.character.escape.abl"
|
|
2771
2857
|
},
|
|
2772
2858
|
"branch-return-value-double": {
|
|
2773
|
-
"name": "meta.block.branch.abl",
|
|
2774
2859
|
"comment": "RETURN \"return-value\"",
|
|
2775
2860
|
"begin": "(?i)\\s*(return)(\\s+(error))?\\s+(\")",
|
|
2776
2861
|
"beginCaptures": {
|
|
@@ -2797,7 +2882,6 @@
|
|
|
2797
2882
|
]
|
|
2798
2883
|
},
|
|
2799
2884
|
"branch-return-no-apply": {
|
|
2800
|
-
"name": "meta.block.branch.abl",
|
|
2801
2885
|
"comment": "RETURN NO-APPLY",
|
|
2802
2886
|
"match": "(?i)\\s*(return)\\s+(no-apply)\\s*",
|
|
2803
2887
|
"captures": {
|
|
@@ -2810,7 +2894,6 @@
|
|
|
2810
2894
|
}
|
|
2811
2895
|
},
|
|
2812
2896
|
"branch-return-error-expression": {
|
|
2813
|
-
"name": "meta.block.branch.abl",
|
|
2814
2897
|
"begin": "(?i)\\s*(return)\\s+(error)\\s*",
|
|
2815
2898
|
"beginCaptures": {
|
|
2816
2899
|
"1": {
|
|
@@ -2897,7 +2980,6 @@
|
|
|
2897
2980
|
]
|
|
2898
2981
|
},
|
|
2899
2982
|
"branch-options": {
|
|
2900
|
-
"name": "meta.block.branch.abl",
|
|
2901
2983
|
"patterns": [
|
|
2902
2984
|
{
|
|
2903
2985
|
"include": "#on-error-endkey-stop"
|
|
@@ -3044,7 +3126,7 @@
|
|
|
3044
3126
|
"include": "#parens"
|
|
3045
3127
|
},
|
|
3046
3128
|
{
|
|
3047
|
-
"match": "(?i)\\s*(input-output|input-outpu|input-outp|input-out|input-ou|input-o|output|input|table-handle|dataset-handle|APPEND|BY-VALUE|BY-REFERENCE|BIND)\\
|
|
3129
|
+
"match": "(?i)\\s*(input-output|input-outpu|input-outp|input-out|input-ou|input-o|output|input|table-handle|dataset-handle|APPEND|BY-VALUE|BY-REFERENCE|BIND)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3048
3130
|
"captures": {
|
|
3049
3131
|
"1": {
|
|
3050
3132
|
"name": "keyword.other.abl"
|
|
@@ -3169,7 +3251,7 @@
|
|
|
3169
3251
|
},
|
|
3170
3252
|
"variable-name": {
|
|
3171
3253
|
"comment": "1 to 128 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 (from https://docs.progress.com/bundle/openedge-abl-manage-applications/page/Name-limits.html)",
|
|
3172
|
-
"match": "(?<=^|\\s|\\[|\\()([a-zA-Z][a-zA-Z0-9\\#\\$\\-\\_\\%\\&]*)",
|
|
3254
|
+
"match": "(?<=^|\\s|\\[|\\(|,)([a-zA-Z][a-zA-Z0-9\\#\\$\\-\\_\\%\\&]*)(?=\\.\\s|\\.$|,|:|\\s|\\)|\\]|\\[|$)",
|
|
3173
3255
|
"name": "variable.other.abl"
|
|
3174
3256
|
},
|
|
3175
3257
|
"extent": {
|
|
@@ -3488,7 +3570,7 @@
|
|
|
3488
3570
|
"name": "constant.numeric.source.abl"
|
|
3489
3571
|
},
|
|
3490
3572
|
"abl-system-handles": {
|
|
3491
|
-
"match": "(?i)\\
|
|
3573
|
+
"match": "(?i)\\b(this-object|super|self|this-procedure|target-procedure|source-procedure|session|error-status|compiler|audit-control|audit-policy|clipboard|codebase-locator|color-table|debugger|dslog-manager|file-information|file-info|font-table|last-event|log-manager|profiler|rcode-information|rcode-info|security-policy|session|web-context)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3492
3574
|
"captures": {
|
|
3493
3575
|
"1": {
|
|
3494
3576
|
"name": "variable.language.abl"
|
|
@@ -3665,7 +3747,8 @@
|
|
|
3665
3747
|
]
|
|
3666
3748
|
},
|
|
3667
3749
|
"keywords-A": {
|
|
3668
|
-
"
|
|
3750
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3751
|
+
"match": "(?i)\\b(avg|average|averag|avera|aver|ave|available|automatic|auto-go|auto-endkey|authorization|audit-policy|audit-control|attribute-type|attachment|attach|at|assign|assembly|ask-overwrite|ascending|ascendin|ascendi|ascend|ascen|asce|asc|as-cursor|as|array-message|array-messag|array-messa|array-mess|array-mes|array-me|array-m|apply|application|append-line|append|anywhere|any-printable|any-key|any|ansi-only|and|ambiguous|alternate-key|alter|allow-replication|all|alert-box|aggregate|advise|add|active-window|active-form|across|accumulate|accumulat|accumula|accumul|accumu|accum|abstract|abort)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3669
3752
|
"captures": {
|
|
3670
3753
|
"1": {
|
|
3671
3754
|
"name": "keyword.other.abl"
|
|
@@ -3673,7 +3756,8 @@
|
|
|
3673
3756
|
}
|
|
3674
3757
|
},
|
|
3675
3758
|
"keywords-B": {
|
|
3676
|
-
"
|
|
3759
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3760
|
+
"match": "(?i)\\b(byte|by-variant-pointer|by-variant-pointe|by-variant-point|by-value|by-reference|by-pointer|by|buttons|button|buffer-copy|buffer-compare|buffer|btos|browse-header|browse-column-labels|browse-column-formats|browse-column-data-types|browse|break-line|break|bottom-column|bottom|both|border-top|border-to|border-t|border-right|border-righ|border-rig|border-ri|border-r|border-left|border-lef|border-le|border-l|border-bottom|border-botto|border-bott|border-bot|border-bo|border-b|block-level|block-leve|block-lev|block|blob|bind-where|bind|binary|big-endian|bgcolor|between|bell|begins|before-hide|before-hid|before-hi|before-h|batch|base64|base-key|backwards|backward|backspace|back-tab)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3677
3761
|
"captures": {
|
|
3678
3762
|
"1": {
|
|
3679
3763
|
"name": "keyword.other.abl"
|
|
@@ -3681,7 +3765,8 @@
|
|
|
3681
3765
|
}
|
|
3682
3766
|
},
|
|
3683
3767
|
"keywords-C": {
|
|
3684
|
-
"
|
|
3768
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3769
|
+
"match": "(?i)\\b(cut|cursor-up|cursor-right|cursor-left|cursor-down|cursor|curso|curs|current_date|current-value|current-language|current|ctos|create-test-file|create-on-add|create|count|copy-lob|copy|convert|control-frame|control-fram|control-container|control-containe|control-contain|control-contai|control-conta|control-cont|control|context-popup|context-popu|context-pop|context-help-id|context|contents|contains|container-event|constructor|constrained|connect|component-self|component-handle|compiler|compile|compares|compare|command|combo-box|com-self|columns|column-of|column-label-height-pixels|column-label-height-pixel|column-label-height-pixe|column-label-height-pix|column-label-height-pi|column-label-height-p|column-label-height-chars|column-label-height-char|column-label-height-cha|column-label-height-ch|column-label-height-c|column-label-font|column-label-fgcolor|column-label-fgcolo|column-label-fgcol|column-label-fgco|column-label-fgc|column-label-dcolor|column-label-bgcolor|column-label-bgcolo|column-label-bgcol|column-label-bgco|column-label-bgc|column-codepage|column|color-table|color|colon-aligned|colon-aligne|colon-align|colon|collate|col-of|col|codebase-locator|close|clob|clipboard|client-principal|clear|class|choose|choices|check-mem-stomp|check|character_length|character|characte|charact|charac|chara|char|chained|centered|cdecl|catch|case|cancel-pick|call|cache-size|cache)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3685
3770
|
"captures": {
|
|
3686
3771
|
"1": {
|
|
3687
3772
|
"name": "keyword.other.abl"
|
|
@@ -3689,7 +3774,8 @@
|
|
|
3689
3774
|
}
|
|
3690
3775
|
},
|
|
3691
3776
|
"keywords-D": {
|
|
3692
|
-
"
|
|
3777
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3778
|
+
"match": "(?i)\\b(dynamic-property|dynamic-new|dynamic-current-value|dump|dslog-manager|drop-target|drop-file-notify|drop-down-list|drop-down|drop|down|double|dotnet-clr-loaded|dos-end|dos|do|dll-call-type|distinct|display|displa|displ|disp|dismiss-menu|disconnect|disabled|disable|dir|dictionary|dictionar|dictiona|diction|dictio|dicti|dict|dialog-help|dialog-box|detach|destructor|deselection-extend|deselection|deselect-extend|deselect|descending|descendin|descendi|descend|descen|desce|desc|delimiter|delete-word|delete-field|delete-end-line|delete-column|delete-character|delete|delegate|del|define-user-event-manager|define|defin|defi|defer-lob-fetch|default-window|default-untranslatable|default-pop-up|default-extension|default-extensio|default-extensi|default-extens|default-exten|default-exte|default-ext|default-ex|default-action|default|def|declare|debugger|debug-set-tenant|debug-list|dde-notify|dde|dcolor|dataset-handle|dataset|database|data-source|data-relation|data-relatio|data-relati|data-relat|data-rela|data-rel|data-refresh-page|data-refresh-line|data-bind|data-bin|data-bi|data-b)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3693
3779
|
"captures": {
|
|
3694
3780
|
"1": {
|
|
3695
3781
|
"name": "keyword.other.abl"
|
|
@@ -3697,7 +3783,8 @@
|
|
|
3697
3783
|
}
|
|
3698
3784
|
},
|
|
3699
3785
|
"keywords-E": {
|
|
3700
|
-
"
|
|
3786
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3787
|
+
"match": "(?i)\\b(extract|external|extent|extended|export|explicit|expire|exit|exists|execute|exclusive-web-user|exclusive-web-use|exclusive-web-us|exclusive-web-u|exclusive-web-|exclusive-web|exclusive-lock|exclusive-loc|exclusive-lo|exclusive-l|exclusive|except|events|event-handler-context|event|escape|error-status|error-statu|error-stat|error|eq|enum|entry|enter-menubar|endkey|end-search|end-row-resize|end-resize|end-move|end-key|end-error|end-box-selection|end|enable|empty-selection|empty|else|editor-tab|editor-backtab|editor|editing|edge|echo|each)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3701
3788
|
"captures": {
|
|
3702
3789
|
"1": {
|
|
3703
3790
|
"name": "keyword.other.abl"
|
|
@@ -3705,7 +3792,8 @@
|
|
|
3705
3792
|
}
|
|
3706
3793
|
},
|
|
3707
3794
|
"keywords-F": {
|
|
3708
|
-
"
|
|
3795
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3796
|
+
"match": "(?i)\\b(function-call-type|function|full-height|fromnoreorder|from-pixels|from-pixel|from-pixe|from-pix|from-pi|from-p|from-current|from-curren|from-curre|from-curr|from-cur|from-chars|from-char|from-cha|from-ch|from-c|from|frame-value|frame|forwards|forward|format|form|foreign-key-hidden|force-file|for|font-table|font|focus-in|focus|float|flat-button|flags|fixed-only|fix-codepage|first|firehose-cursor|finder|find-wrap-around|find-select|find-previous|find-prev-occurrence|find-next-occurrence|find-next|find-global|find-case-sensitive|find|finally|final|filters|fill-in|filename|file-information|file-informatio|file-informati|file-informat|file-informa|file-inform|file-infor|file-info|file-access-time|file-access-tim|file-access-ti|file-access-t|file-access-date|file-access-dat|file-access-da|file-access-d|file|fields|field|fgcolor|fetch|false-leaks|false)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3709
3797
|
"captures": {
|
|
3710
3798
|
"1": {
|
|
3711
3799
|
"name": "keyword.other.abl"
|
|
@@ -3713,7 +3801,8 @@
|
|
|
3713
3801
|
}
|
|
3714
3802
|
},
|
|
3715
3803
|
"keywords-G": {
|
|
3716
|
-
"
|
|
3804
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3805
|
+
"match": "(?i)\\b(gt|group|grid-unit-width|grid-unit-height|grid-set|grayed|grant-archive|grant|goto|go-on|go|global|getbyte|get-text-width|get-text-height|get-key-value|get-key-valu|get-key-val|get-file|get-dir|get-attr-call-type|get|generate-md5|ge)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3717
3806
|
"captures": {
|
|
3718
3807
|
"1": {
|
|
3719
3808
|
"name": "keyword.other.abl"
|
|
@@ -3721,7 +3810,8 @@
|
|
|
3721
3810
|
}
|
|
3722
3811
|
},
|
|
3723
3812
|
"keywords-H": {
|
|
3724
|
-
"
|
|
3813
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3814
|
+
"match": "(?i)\\b(host-byte-order|horiz-scroll-drag|horiz-home|horiz-end|home|hint|hide|helpfile-name|helpfile-nam|helpfile-na|helpfile-n|help-topic|help-context|help-contex|help-conte|help-cont|help-con|height|header|having)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3725
3815
|
"captures": {
|
|
3726
3816
|
"1": {
|
|
3727
3817
|
"name": "keyword.other.abl"
|
|
@@ -3729,7 +3819,8 @@
|
|
|
3729
3819
|
}
|
|
3730
3820
|
},
|
|
3731
3821
|
"keywords-I": {
|
|
3732
|
-
"
|
|
3822
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3823
|
+
"match": "(?i)\\b(iteration-changed|item|is|into|interface|insert-mode|insert-field-label|insert-field-data|insert-field|insert-column|insert|input-output|input-outpu|input-outp|input-out|input-ou|input-o|input|inner|initiate|initial-filter|initial-dir|initial|init|inherits|inherit-color-mode|information|informatio|informati|informat|informa|inform|infor|info|indicator|indexed-reposition|index-hint|in|import|implements|image-up|image-size-pixels|image-size-pixel|image-size-pixe|image-size-pix|image-size-pi|image-size-p|image-size-chars|image-size-char|image-size-cha|image-size-ch|image-size-c|image-size|image-insensitive|image-down|image|if)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3733
3824
|
"captures": {
|
|
3734
3825
|
"1": {
|
|
3735
3826
|
"name": "keyword.other.abl"
|
|
@@ -3737,7 +3828,8 @@
|
|
|
3737
3828
|
}
|
|
3738
3829
|
},
|
|
3739
3830
|
"keywords-J": {
|
|
3740
|
-
"
|
|
3831
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3832
|
+
"match": "(?i)\\b(join-on-select|join-by-sqldb|join)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3741
3833
|
"captures": {
|
|
3742
3834
|
"1": {
|
|
3743
3835
|
"name": "keyword.other.abl"
|
|
@@ -3745,7 +3837,8 @@
|
|
|
3745
3837
|
}
|
|
3746
3838
|
},
|
|
3747
3839
|
"keywords-K": {
|
|
3748
|
-
"
|
|
3840
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3841
|
+
"match": "(?i)\\b(keycache-join|key-label|key-function|key-functio|key-functi|key-funct|key-func|key-code|keep-tab-order|keep-messages)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3749
3842
|
"captures": {
|
|
3750
3843
|
"1": {
|
|
3751
3844
|
"name": "keyword.other.abl"
|
|
@@ -3753,7 +3846,8 @@
|
|
|
3753
3846
|
}
|
|
3754
3847
|
},
|
|
3755
3848
|
"keywords-L": {
|
|
3756
|
-
"
|
|
3849
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3850
|
+
"match": "(?i)\\b(lt|lower|lookahead|longchar|longcha|longch|long|log-manager|log-id|locked|lob-dir|load-result-into|load-picture|load-from|load|little-endian|listing|listin|listi|line-up|line-right|line-left|line-down|like-sequential|like|length|left-end|left-aligned|left-aligne|left-align|left|leave|leak-detection|leading|le|last-key|last-event|last-even|landscape|label-pfcolor|label-pfcolo|label-pfcol|label-pfco|label-pfc|label)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3757
3851
|
"captures": {
|
|
3758
3852
|
"1": {
|
|
3759
3853
|
"name": "keyword.other.abl"
|
|
@@ -3761,7 +3855,8 @@
|
|
|
3761
3855
|
}
|
|
3762
3856
|
},
|
|
3763
3857
|
"keywords-M": {
|
|
3764
|
-
"
|
|
3858
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3859
|
+
"match": "(?i)\\b(must-exist|multiple-key|mpe|move|mouse-pointer|mouse|modulo|mod|min-width|min-size|min-schema-marshall|min-schema-marshal|min-height|method|message-line|message-area-msg|message|menubar|menu-item|menu-drop|menu|memptr|md5-value|maximize|max-width|max-size|max-rows|max-height|max|matches|margin-width-pixels|margin-width-pixel|margin-width-pixe|margin-width-pix|margin-width-pi|margin-width-p|margin-width-chars|margin-width-char|margin-width-cha|margin-width-ch|margin-width-c|margin-width|margin-height-pixels|margin-height-pixel|margin-height-pixe|margin-height-pix|margin-height-pi|margin-height-p|margin-height-chars|margin-height-char|margin-height-cha|margin-height-ch|margin-height-c|margin-height|margin-extra|map|main-menu|machine-class)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3765
3860
|
"captures": {
|
|
3766
3861
|
"1": {
|
|
3767
3862
|
"name": "keyword.other.abl"
|
|
@@ -3769,7 +3864,8 @@
|
|
|
3769
3864
|
}
|
|
3770
3865
|
},
|
|
3771
3866
|
"keywords-N": {
|
|
3772
|
-
"
|
|
3867
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3868
|
+
"match": "(?i)\\b(numeric|num-selected|num-copies|null|not-active|not|none|non-serializable|node-type|no-word-wrap|no-wait|no-undo|no-underline|no-underlin|no-underli|no-underl|no-under|no-unde|no-und|no-tab-stop|no-tab-sto|no-tab-st|no-tab-s|no-tab-|no-tab|no-separators|no-separate-connection|no-scrolling|no-scrollbar-vertical|no-scrollbar-vertica|no-scrollbar-vertic|no-scrollbar-verti|no-scrollbar-vert|no-scrollbar-ver|no-scrollbar-ve|no-scrollbar-v|no-schema-marshall|no-schema-marshal|no-row-markers|no-return-value|no-return-valu|no-return-val|no-query-unique-added|no-query-unique-adde|no-query-unique-add|no-query-unique-ad|no-query-unique-a|no-query-unique-|no-query-unique|no-query-uniqu|no-query-uniq|no-query-uni|no-query-un|no-query-u|no-query-order-added|no-query-order-adde|no-query-order-add|no-query-order-ad|no-query-order-a|no-query-order-|no-query-order|no-query-orde|no-query-ord|no-query-or|no-query-o|no-prefetch|no-prefetc|no-prefet|no-prefe|no-pause|no-message|no-messag|no-messa|no-mess|no-mes|no-map|no-lookahead|no-lock|no-lobs|no-labels|no-label|no-keycache-join|no-join-by-sqldb|no-inherit-fgcolor|no-inherit-fgcolo|no-inherit-fgcol|no-inherit-fgco|no-inherit-fgc|no-inherit-bgcolor|no-inherit-bgcolo|no-inherit-bgcol|no-inherit-bgco|no-inherit-bgc|no-index-hint|no-hide|no-help|no-focus|no-firehose-cursor|no-fill|no-fil|no-fi|no-f|no-error|no-echo|no-drag|no-debug|no-convert-3d-colors|no-convert-3d-color|no-convert-3d-colo|no-convert-3d-col|no-convert-3d-co|no-convert-3d-c|no-convert-3d-|no-convert-3d|no-convert|no-console|no-column-scrolling|no-column-scrollin|no-column-scrolli|no-column-scroll|no-column-scrol|no-column-scro|no-column-scr|no-column-sc|no-box|no-bind-where|no-auto-validate|no-auto-trim|no-auto-tri|no-attr-space|no-attr-spac|no-attr-spa|no-attr-sp|no-attr-s|no-attr-list|no-attr-lis|no-attr-li|no-attr-l|no-attr|no-assign|no-array-message|no-array-messag|no-array-messa|no-array-mess|no-array-mes|no-array-me|no-array-m|no-apply|no|next-word|next-prompt|next-frame|next-error|next|new-line|new-instance|new|nested|ne|native|namespace-uri|namespace-prefix)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3773
3869
|
"captures": {
|
|
3774
3870
|
"1": {
|
|
3775
3871
|
"name": "keyword.other.abl"
|
|
@@ -3777,7 +3873,8 @@
|
|
|
3777
3873
|
}
|
|
3778
3874
|
},
|
|
3779
3875
|
"keywords-O": {
|
|
3780
|
-
"
|
|
3876
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3877
|
+
"match": "(?i)\\b(override|overlay|output|outer-join|outer|out-of-data|otherwise|os400|os2|os-rename|os-dir|os-delete|os-create-dir|os-copy|os-command|os-append|orientation|ordered-join|or|options-file|option|open-line-above|open|on|ole-names-locale|ole-names-local|ole-names-loca|ole-invoke-locale|ole-invoke-local|ole-invoke-loca|old|ok-cancel|ok|off-home|off-end|off|of|octet_length|object)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3781
3878
|
"captures": {
|
|
3782
3879
|
"1": {
|
|
3783
3880
|
"name": "keyword.other.abl"
|
|
@@ -3785,7 +3882,8 @@
|
|
|
3785
3882
|
}
|
|
3786
3883
|
},
|
|
3787
3884
|
"keywords-P": {
|
|
3788
|
-
"
|
|
3885
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3886
|
+
"match": "(?i)\\b(putbyte|put-unsigned-short|put-unsigned-long|put-string|put-short|put-long|put-key-value|put-key-valu|put-key-val|put-int64|put-float|put-double|put-bytes|put-byte|put-bits|put|publish|public|protected|property|propath|promsgs|prompt-for|prompt-fo|prompt-f|prompt|profiler|profile-file|process|procedure-complete|procedure-call-type|procedure|procedur|procedu|proced|proce|privileges|private|printer-setup|printer|prev-word|prev-frame|prev|preselect|preselec|presele|presel|preprocess|preproces|preproce|preproc|precision|portrait|pixels|pick-both|pick-area|pick|pfcolor|performance|performanc|performan|performa|perform|perfor|perfo|perf|pause|paste|pascal|partial-key|parent-window-close|parent-id-field|parameter|paged|page-width|page-widt|page-wid|page-up|page-right-text|page-right|page-left|page-down|page|package-protected|package-private)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3789
3887
|
"captures": {
|
|
3790
3888
|
"1": {
|
|
3791
3889
|
"name": "keyword.other.abl"
|
|
@@ -3793,7 +3891,8 @@
|
|
|
3793
3891
|
}
|
|
3794
3892
|
},
|
|
3795
3893
|
"keywords-Q": {
|
|
3796
|
-
"
|
|
3894
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3895
|
+
"match": "(?i)\\b(quit|question|query-tuning|query)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3797
3896
|
"captures": {
|
|
3798
3897
|
"1": {
|
|
3799
3898
|
"name": "keyword.other.abl"
|
|
@@ -3801,7 +3900,8 @@
|
|
|
3801
3900
|
}
|
|
3802
3901
|
},
|
|
3803
3902
|
"keywords-R": {
|
|
3804
|
-
"
|
|
3903
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3904
|
+
"match": "(?i)\\b(run-procedure|run-procedur|run-procedu|run-proced|run-proce|run-proc|run|rule-y|rule-row|rule|row-unmodified|row-of|row-modified|row-leave|row-height|row-entry|row-display|row-deleted|row-created|row|routine-level|right-end|right-aligned|right-aligne|right-align|right|revoke|revert|reverse-from|returns|return-value|return-to-start-dir|return-to-start-di|return|retry-cancel|retain|resume-display|result|request|reposition-parent-relation|reposition-parent-relatio|reposition-parent-relati|reposition-parent-relat|reposition-parent-rela|reposition-parent-rel|reposition-forwards|reposition-forward|reposition-forwar|reposition-forwa|reposition-forw|reposition-backwards|reposition-backward|reposition-backwar|reposition-backwa|reposition-backw|reposition-back|reposition|reports|replication-write|replication-delete|replication-create|repeat|release|relation-fields|reinstate|reference-only|recursive|rectangle|rectangl|rectang|rectan|recta|rect|recall|real|readkey|read-response|read-exact-num|read-available|rcode-information|rcode-informatio|rcode-informati|rcode-informat|rcode-informa|rcode-inform|rcode-infor|rcode-info|raw-transfer|raw|radio-set)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3805
3905
|
"captures": {
|
|
3806
3906
|
"1": {
|
|
3807
3907
|
"name": "keyword.other.abl"
|
|
@@ -3809,7 +3909,8 @@
|
|
|
3809
3909
|
}
|
|
3810
3910
|
},
|
|
3811
3911
|
"keywords-S": {
|
|
3812
|
-
"
|
|
3912
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3913
|
+
"match": "(?i)\\b(system-help|system-dialog|suspend|super|summary|sum|substring|subscribe|sub-total|sub-minimum|sub-minimu|sub-minim|sub-mini|sub-min|sub-menu-help|sub-menu|sub-maximum|sub-maximu|sub-maxim|sub-maxi|sub-max|sub-count|sub-average|sub-averag|sub-avera|sub-aver|sub-ave|string-xref|stream-io|stream-handle|stream|stored-procedure|stored-procedur|stored-procedu|stored-proced|stored-proce|stored-proc|stop-mem-check|stop-display|stop-after|stop|stomp-frequency|stomp-detection|stdcall|status-area-msg|status|static|starting|start-search|start-row-resize|start-resize|start-move|start-mem-check|start-extend-box-selection|start-box-selection|start|sql|space|source-procedure|source|some|socket|soap-header-entryref|soap-header|soap-fault|smallint|slider|skip-schema-check|skip-group-duplicates|skip|size-pixels|size-pixel|size-pixe|size-pix|size-pi|size-p|size-chars|size-char|size-cha|size-ch|size-c|size|single-run|single-character|single|simple|silent|signature|side-label|side-labe|side-lab|show-stats|show-stat|short|shared|share-lock|share-loc|share-lo|share-l|share-|share|settings|set-state|set-pointer-value|set-pointer-valu|set-pointer-val|set-option|set-event-manager-option|set-db-logging|set-contents|set-cell-focus|set-byte-order|set-attr-call-type|set|session|server-socket|server|serialize-name|serialize-hidden|serializable|separate-connection|send|self|selection-list|selection-extend|selection|selected-items|select-repositioned-row|select-on-join|select-extend|select|seek|security-policy|section|search-target|search-self|scrolling|scrolled-row-position|scrolled-row-positio|scrolled-row-positi|scrolled-row-posit|scrolled-row-posi|scrolled-row-pos|scrollbar-drag|scroll-vertical|scroll-right|scroll-notify|scroll-mode|scroll-left|scroll-horizontal|scroll|screen-io|screen|schema|sax-xml|sax-writer|sax-write-tag|sax-write-idle|sax-write-error|sax-write-element|sax-write-content|sax-write-complete|sax-write-begin|sax-uninitialized|sax-running|sax-reader|sax-parser-error|sax-complete|sax-complet|sax-comple|sax-attributes|save-as|save)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3813
3914
|
"captures": {
|
|
3814
3915
|
"1": {
|
|
3815
3916
|
"name": "keyword.other.abl"
|
|
@@ -3817,7 +3918,8 @@
|
|
|
3817
3918
|
}
|
|
3818
3919
|
},
|
|
3819
3920
|
"keywords-T": {
|
|
3820
|
-
"
|
|
3921
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3922
|
+
"match": "(?i)\\b(ttcodepage|true|triggers|trigger|transaction-mode|transaction|trans|trailing|total|topic|top-column|top|tooltip|to|thru|throw|through|this-procedure|this-object|then|text-seg-growth|text-seg-growt|text-seg-grow|text-seg-gro|text-seg-gr|text-seg-g|text-seg-|text-seg|text-cursor|text|terminate|terminal|term|tenant-where|tenant|temp-table|target-procedure|target|table-scan|tab)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3821
3923
|
"captures": {
|
|
3822
3924
|
"1": {
|
|
3823
3925
|
"name": "keyword.other.abl"
|
|
@@ -3825,7 +3927,8 @@
|
|
|
3825
3927
|
}
|
|
3826
3928
|
},
|
|
3827
3929
|
"keywords-U": {
|
|
3828
|
-
"
|
|
3930
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3931
|
+
"match": "(?i)\\b(utc-offset|using|user|use-widget-pool|use-underline|use-text|use-revvideo|use-index|use-filename|use-dict-exps|use-dict-exp|use-dict-ex|use-dict-e|use-dict-|use-dict|use-dic|use|upper|update|up|unsubscribe|unsigned-short|unsigned-long|unsigned-integer|unsigned-int64|unsigned-byte|unload|unless-hidden|unix-end|unix|unique|union|unformatted|unformatte|unformatt|unformat|unforma|unform|undo|underline|underlin|underli|underl|unbuffered|unbuffere|unbuffer|unbuffe|unbuff)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3829
3932
|
"captures": {
|
|
3830
3933
|
"1": {
|
|
3831
3934
|
"name": "keyword.other.abl"
|
|
@@ -3833,7 +3936,8 @@
|
|
|
3833
3936
|
}
|
|
3834
3937
|
},
|
|
3835
3938
|
"keywords-V": {
|
|
3836
|
-
"
|
|
3939
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3940
|
+
"match": "(?i)\\b(void|vms|virtual-width|virtual-height|view-as|view|vertical|vertica|vertic|verti|vert|verbose|verbos|verbo|verb|variable|variabl|variab|varia|vari|var|values|value-changed|validate|v6frame)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3837
3941
|
"captures": {
|
|
3838
3942
|
"1": {
|
|
3839
3943
|
"name": "keyword.other.abl"
|
|
@@ -3841,7 +3945,8 @@
|
|
|
3841
3945
|
}
|
|
3842
3946
|
},
|
|
3843
3947
|
"keywords-W": {
|
|
3844
|
-
"
|
|
3948
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3949
|
+
"match": "(?i)\\b(workfile|work-table|work-tabl|work-tab|word-index|with|window-restored|window-resized|window-normal|window-name|window-minimized|window-minimize|window-minimiz|window-minimi|window-minim|window-maximized|window-maximize|window-maximiz|window-maximi|window-maxim|window-delayed-minimize|window-delayed-minimiz|window-delayed-minimi|window-delayed-minim|window-delayed-mini|window-delayed-min|window-close|width|widget-pool|widget|while|where|when|web-notify|web-context|web-contex|web-conte|web-cont|web-con|warning|wait-for|wait)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3845
3950
|
"captures": {
|
|
3846
3951
|
"1": {
|
|
3847
3952
|
"name": "keyword.other.abl"
|
|
@@ -3849,7 +3954,8 @@
|
|
|
3849
3954
|
}
|
|
3850
3955
|
},
|
|
3851
3956
|
"keywords-X": {
|
|
3852
|
-
"
|
|
3957
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3958
|
+
"match": "(?i)\\b(xref-xml|xref|xor|xml-node-type|xml-node-name|xml-data-type|xcode|x-of|x-noderef|x-document)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3853
3959
|
"captures": {
|
|
3854
3960
|
"1": {
|
|
3855
3961
|
"name": "keyword.other.abl"
|
|
@@ -3857,7 +3963,8 @@
|
|
|
3857
3963
|
}
|
|
3858
3964
|
},
|
|
3859
3965
|
"keywords-Y": {
|
|
3860
|
-
"
|
|
3966
|
+
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
3967
|
+
"match": "(?i)\\b(yes-no-cancel|yes-no|yes|year-offset|year|y-of)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3861
3968
|
"captures": {
|
|
3862
3969
|
"1": {
|
|
3863
3970
|
"name": "keyword.other.abl"
|
|
@@ -3941,7 +4048,7 @@
|
|
|
3941
4048
|
]
|
|
3942
4049
|
},
|
|
3943
4050
|
"handle-attributes-A": {
|
|
3944
|
-
"match": "(?i)(:)(available-formats|available|availabl|availab|availa|avail|auto-zap|auto-za|auto-z|auto-validate|auto-validat|auto-valida|auto-valid|auto-vali|auto-val|auto-synchronize|auto-return|auto-retur|auto-retu|auto-ret|auto-resize|auto-indent|auto-inden|auto-inde|auto-ind|auto-go|auto-end-key|auto-delete-xml|auto-delete|auto-completion|auto-completio|auto-completi|auto-complet|auto-comple|auto-compl|auto-comp|audit-event-context|attribute-names|attr-space|attr-spac|attr-spa|attr-sp|attr-s|attr-|attr|attached-pairlist|asynchronous|async-request-handle|async-request-count|appserver-userid|appserver-password|appserver-info|appl-context-id|appl-alert-boxes|appl-alert-boxe|appl-alert-box|appl-alert-bo|appl-alert-b|appl-alert-|appl-alert|ambiguous|ambiguou|ambiguo|ambigu|ambig|always-on-top|allow-prev-deserialization|allow-column-searching|after-table|after-rowid|after-buffer|adm-data|actor|active|accelerator)\\
|
|
4051
|
+
"match": "(?i)(:)(available-formats|available|availabl|availab|availa|avail|auto-zap|auto-za|auto-z|auto-validate|auto-validat|auto-valida|auto-valid|auto-vali|auto-val|auto-synchronize|auto-return|auto-retur|auto-retu|auto-ret|auto-resize|auto-indent|auto-inden|auto-inde|auto-ind|auto-go|auto-end-key|auto-delete-xml|auto-delete|auto-completion|auto-completio|auto-completi|auto-complet|auto-comple|auto-compl|auto-comp|audit-event-context|attribute-names|attr-space|attr-spac|attr-spa|attr-sp|attr-s|attr-|attr|attached-pairlist|asynchronous|async-request-handle|async-request-count|appserver-userid|appserver-password|appserver-info|appl-context-id|appl-alert-boxes|appl-alert-boxe|appl-alert-box|appl-alert-bo|appl-alert-b|appl-alert-|appl-alert|ambiguous|ambiguou|ambiguo|ambigu|ambig|always-on-top|allow-prev-deserialization|allow-column-searching|after-table|after-rowid|after-buffer|adm-data|actor|active|accelerator)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3945
4052
|
"captures": {
|
|
3946
4053
|
"1": {
|
|
3947
4054
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -3952,7 +4059,7 @@
|
|
|
3952
4059
|
}
|
|
3953
4060
|
},
|
|
3954
4061
|
"handle-attributes-B": {
|
|
3955
|
-
"match": "(?i)(:)(bytes-written|bytes-read|buffer-tenant-name|buffer-tenant-id|buffer-partition-id|buffer-name|buffer-nam|buffer-na|buffer-n|buffer-lines|buffer-handle|buffer-group-name|buffer-group-id|buffer-field|buffer-chars|box-selectable|box-selectabl|box-selectab|box-selecta|box-select|box|border-top-pixels|border-top-pixel|border-top-pixe|border-top-pix|border-top-pi|border-top-p|border-top-chars|border-top-char|border-top-cha|border-top-ch|border-top-c|border-right-pixels|border-right-pixel|border-right-pixe|border-right-pix|border-right-pi|border-right-p|border-right-chars|border-right-char|border-right-cha|border-right-ch|border-right-c|border-left-pixels|border-left-pixel|border-left-pixe|border-left-pix|border-left-pi|border-left-p|border-left-chars|border-left-char|border-left-cha|border-left-ch|border-left-c|border-bottom-pixels|border-bottom-pixel|border-bottom-pixe|border-bottom-pix|border-bottom-pi|border-bottom-p|border-bottom-chars|border-bottom-char|border-bottom-cha|border-bottom-ch|border-bottom-c|block-iteration-display|blank|bgcolor|bgcolo|bgcol|bgco|bgc|before-table|before-rowid|before-buffer|batch-size|batch-mode|basic-logging|base-ade|background|backgroun|backgrou|backgro|backgr|backg|back)\\
|
|
4062
|
+
"match": "(?i)(:)(bytes-written|bytes-read|buffer-tenant-name|buffer-tenant-id|buffer-partition-id|buffer-name|buffer-nam|buffer-na|buffer-n|buffer-lines|buffer-handle|buffer-group-name|buffer-group-id|buffer-field|buffer-chars|box-selectable|box-selectabl|box-selectab|box-selecta|box-select|box|border-top-pixels|border-top-pixel|border-top-pixe|border-top-pix|border-top-pi|border-top-p|border-top-chars|border-top-char|border-top-cha|border-top-ch|border-top-c|border-right-pixels|border-right-pixel|border-right-pixe|border-right-pix|border-right-pi|border-right-p|border-right-chars|border-right-char|border-right-cha|border-right-ch|border-right-c|border-left-pixels|border-left-pixel|border-left-pixe|border-left-pix|border-left-pi|border-left-p|border-left-chars|border-left-char|border-left-cha|border-left-ch|border-left-c|border-bottom-pixels|border-bottom-pixel|border-bottom-pixe|border-bottom-pix|border-bottom-pi|border-bottom-p|border-bottom-chars|border-bottom-char|border-bottom-cha|border-bottom-ch|border-bottom-c|block-iteration-display|blank|bgcolor|bgcolo|bgcol|bgco|bgc|before-table|before-rowid|before-buffer|batch-size|batch-mode|basic-logging|base-ade|background|backgroun|backgrou|backgro|backgr|backg|back)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3956
4063
|
"captures": {
|
|
3957
4064
|
"1": {
|
|
3958
4065
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -3963,7 +4070,7 @@
|
|
|
3963
4070
|
}
|
|
3964
4071
|
},
|
|
3965
4072
|
"handle-attributes-C": {
|
|
3966
|
-
"match": "(?i)(:)(cursor-offset|cursor-line|cursor-char|current-window|current-row-modified|current-result-row|current-response-info|current-request-info|current-iteration|current-environment|current-environmen|current-environme|current-environm|current-environ|current-enviro|current-envir|current-envi|current-env|current-column|current-changed|crc-value|crc-valu|crc-val|cpterm|cpstream|cprcodeout|cprcodein|cpprint|cplog|cpinternal|cpinterna|cpintern|cpinter|cpinte|cpint|cpcoll|cpcase|coverage|convert-3d-colors|convert-3d-color|convert-3d-colo|convert-3d-col|convert-3d-co|convert-3d-c|convert-3d-|convert-3d|control-box|context-help-id|context-help-file|context-help|config-name|complete|com-handle|column-scrolling|column-scrollin|column-scrolli|column-scroll|column-scrol|column-scro|column-scr|column-sc|column-resizable|column-read-only|column-pfcolor|column-pfcolo|column-pfcol|column-pfco|column-pfc|column-movable|column-label|column-labe|column-lab|column-font|column-fgcolor|column-fgcolo|column-fgcol|column-fgco|column-fgc|column-dcolor|column-bgcolor|column-bgcolo|column-bgcol|column-bgco|column-bgc|column|codepage|code|client-workstation|client-type|client-tty|client-connection-id|class-type|child-num|child-buffer|checked|charset|centered|centere|center|case-sensitive|case-sensitiv|case-sensiti|case-sensit|case-sensi|case-sens|case-sen|careful-paint|cancelled|cancel-button|can-write|can-writ|can-read|can-do-domain-support|can-delete|can-delet|can-dele|can-create|can-creat|can-crea|call-type|call-name|cache)\\
|
|
4073
|
+
"match": "(?i)(:)(cursor-offset|cursor-line|cursor-char|current-window|current-row-modified|current-result-row|current-response-info|current-request-info|current-iteration|current-environment|current-environmen|current-environme|current-environm|current-environ|current-enviro|current-envir|current-envi|current-env|current-column|current-changed|crc-value|crc-valu|crc-val|cpterm|cpstream|cprcodeout|cprcodein|cpprint|cplog|cpinternal|cpinterna|cpintern|cpinter|cpinte|cpint|cpcoll|cpcase|coverage|convert-3d-colors|convert-3d-color|convert-3d-colo|convert-3d-col|convert-3d-co|convert-3d-c|convert-3d-|convert-3d|control-box|context-help-id|context-help-file|context-help|config-name|complete|com-handle|column-scrolling|column-scrollin|column-scrolli|column-scroll|column-scrol|column-scro|column-scr|column-sc|column-resizable|column-read-only|column-pfcolor|column-pfcolo|column-pfcol|column-pfco|column-pfc|column-movable|column-label|column-labe|column-lab|column-font|column-fgcolor|column-fgcolo|column-fgcol|column-fgco|column-fgc|column-dcolor|column-bgcolor|column-bgcolo|column-bgcol|column-bgco|column-bgc|column|codepage|code|client-workstation|client-type|client-tty|client-connection-id|class-type|child-num|child-buffer|checked|charset|centered|centere|center|case-sensitive|case-sensitiv|case-sensiti|case-sensit|case-sensi|case-sens|case-sen|careful-paint|cancelled|cancel-button|can-write|can-writ|can-read|can-do-domain-support|can-delete|can-delet|can-dele|can-create|can-creat|can-crea|call-type|call-name|cache)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3967
4074
|
"captures": {
|
|
3968
4075
|
"1": {
|
|
3969
4076
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -3974,7 +4081,7 @@
|
|
|
3974
4081
|
}
|
|
3975
4082
|
},
|
|
3976
4083
|
"handle-attributes-D": {
|
|
3977
|
-
"match": "(?i)(:)(dynamic|drop-target|drag-enabled|down|domain-type|domain-name|domain-description|display-type|display-typ|display-ty|display-timezone|display-t|disable-auto-zap|directory|description|descriptio|descripti|descript|delimiter|default-value|default-string|default-commit|default-button|default-butto|default-butt|default-but|default-buffer-handle|default|decimals|debug-alert|deblank|dde-topic|dde-name|dde-item|dde-id|dde-i|dde-error|dcolor|dbname|db-references|db-list|db-context|date-format|date-forma|date-form|date-for|date-fo|date-f|dataset|data-type|data-typ|data-ty|data-t|data-source-rowid|data-source-modified|data-source-complete-map|data-source|data-entry-return|data-entry-retur|data-entry-retu|data-entry-ret)\\
|
|
4084
|
+
"match": "(?i)(:)(dynamic|drop-target|drag-enabled|down|domain-type|domain-name|domain-description|display-type|display-typ|display-ty|display-timezone|display-t|disable-auto-zap|directory|description|descriptio|descripti|descript|delimiter|default-value|default-string|default-commit|default-button|default-butto|default-butt|default-but|default-buffer-handle|default|decimals|debug-alert|deblank|dde-topic|dde-name|dde-item|dde-id|dde-i|dde-error|dcolor|dbname|db-references|db-list|db-context|date-format|date-forma|date-form|date-for|date-fo|date-f|dataset|data-type|data-typ|data-ty|data-t|data-source-rowid|data-source-modified|data-source-complete-map|data-source|data-entry-return|data-entry-retur|data-entry-retu|data-entry-ret)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3978
4085
|
"captures": {
|
|
3979
4086
|
"1": {
|
|
3980
4087
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -3985,7 +4092,7 @@
|
|
|
3985
4092
|
}
|
|
3986
4093
|
},
|
|
3987
4094
|
"handle-attributes-E": {
|
|
3988
|
-
"match": "(?i)(:)(extent|expandable|expand|exit-code|execution-log|exclusive-id|event-type|event-typ|event-ty|event-t|event-procedure-context|event-procedure|event-handler-object|event-handler|event-group-id|error-string|error-stack-trace|error-row|error-object-detail|error-object|error-column|error-colum|error-colu|error-col|error|entry-types-list|entity-expansion-limit|end-user-prompt|encryption-salt|encoding|enabled|empty|edit-can-undo|edit-can-paste|edge-pixels|edge-pixel|edge-pixe|edge-pix|edge-pi|edge-p|edge-chars|edge-char|edge-cha|edge-ch|edge-c)\\
|
|
4095
|
+
"match": "(?i)(:)(extent|expandable|expand|exit-code|execution-log|exclusive-id|event-type|event-typ|event-ty|event-t|event-procedure-context|event-procedure|event-handler-object|event-handler|event-group-id|error-string|error-stack-trace|error-row|error-object-detail|error-object|error-column|error-colum|error-colu|error-col|error|entry-types-list|entity-expansion-limit|end-user-prompt|encryption-salt|encoding|enabled|empty|edit-can-undo|edit-can-paste|edge-pixels|edge-pixel|edge-pixe|edge-pix|edge-pi|edge-p|edge-chars|edge-char|edge-cha|edge-ch|edge-c)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
3989
4096
|
"captures": {
|
|
3990
4097
|
"1": {
|
|
3991
4098
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -3996,7 +4103,7 @@
|
|
|
3996
4103
|
}
|
|
3997
4104
|
},
|
|
3998
4105
|
"handle-attributes-F": {
|
|
3999
|
-
"match": "(?i)(:)(function|full-width-pixels|full-width-pixel|full-width-pixe|full-width-pix|full-width-pi|full-width-p|full-width-chars|full-width-char|full-width-cha|full-width-ch|full-width-c|full-width-|full-width|full-pathname|full-pathnam|full-pathna|full-pathn|full-height-pixels|full-height-pixel|full-height-pixe|full-height-pix|full-height-pi|full-height-p|full-height-chars|full-height-char|full-height-cha|full-height-ch|full-height-c|frequency|frame-y|frame-x|frame-spacing|frame-spacin|frame-spaci|frame-spac|frame-spa|frame-row|frame-name|frame-col|frame|fram|fragment|fragmen|forward-only|formatted|formatte|format|forma|form-long-input|form-input|form|foreign-key-hidden|foreground|foregroun|foregrou|foregro|foregr|foreg|fore|font|focused-row-selected|focused-row|flat-button|fit-last-column|first-tab-item|first-tab-ite|first-tab-it|first-tab-i|first-socket|first-server-socket|first-server|first-serve|first-serv|first-query|first-procedure|first-procedur|first-procedu|first-proced|first-proce|first-proc|first-object|first-form|first-dataset|first-data-source|first-column|first-child|first-buffer|first-async-request|first-async-reques|first-async-reque|first-async-requ|first-async-req|first-async-re|first-async-r|first-async-|first-async|filled|fill-where-string|fill-mode|file-type|file-size|file-offset|file-offse|file-offs|file-off|file-name|file-mod-time|file-mod-tim|file-mod-ti|file-mod-t|file-mod-date|file-mod-dat|file-mod-da|file-mod-d|file-create-time|file-create-tim|file-create-ti|file-create-t|file-create-date|file-create-dat|file-create-da|file-create-d|fgcolor|fgcolo|fgcol|fgco|fgc)\\
|
|
4106
|
+
"match": "(?i)(:)(function|full-width-pixels|full-width-pixel|full-width-pixe|full-width-pix|full-width-pi|full-width-p|full-width-chars|full-width-char|full-width-cha|full-width-ch|full-width-c|full-width-|full-width|full-pathname|full-pathnam|full-pathna|full-pathn|full-height-pixels|full-height-pixel|full-height-pixe|full-height-pix|full-height-pi|full-height-p|full-height-chars|full-height-char|full-height-cha|full-height-ch|full-height-c|frequency|frame-y|frame-x|frame-spacing|frame-spacin|frame-spaci|frame-spac|frame-spa|frame-row|frame-name|frame-col|frame|fram|fragment|fragmen|forward-only|formatted|formatte|format|forma|form-long-input|form-input|form|foreign-key-hidden|foreground|foregroun|foregrou|foregro|foregr|foreg|fore|font|focused-row-selected|focused-row|flat-button|fit-last-column|first-tab-item|first-tab-ite|first-tab-it|first-tab-i|first-socket|first-server-socket|first-server|first-serve|first-serv|first-query|first-procedure|first-procedur|first-procedu|first-proced|first-proce|first-proc|first-object|first-form|first-dataset|first-data-source|first-column|first-child|first-buffer|first-async-request|first-async-reques|first-async-reque|first-async-requ|first-async-req|first-async-re|first-async-r|first-async-|first-async|filled|fill-where-string|fill-mode|file-type|file-size|file-offset|file-offse|file-offs|file-off|file-name|file-mod-time|file-mod-tim|file-mod-ti|file-mod-t|file-mod-date|file-mod-dat|file-mod-da|file-mod-d|file-create-time|file-create-tim|file-create-ti|file-create-t|file-create-date|file-create-dat|file-create-da|file-create-d|fgcolor|fgcolo|fgcol|fgco|fgc)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4000
4107
|
"captures": {
|
|
4001
4108
|
"1": {
|
|
4002
4109
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4007,7 +4114,7 @@
|
|
|
4007
4114
|
}
|
|
4008
4115
|
},
|
|
4009
4116
|
"handle-attributes-G": {
|
|
4010
|
-
"match": "(?i)(:)(group-box|grid-visible|grid-unit-width-pixels|grid-unit-width-pixel|grid-unit-width-pixe|grid-unit-width-pix|grid-unit-width-pi|grid-unit-width-p|grid-unit-width-chars|grid-unit-width-char|grid-unit-width-cha|grid-unit-width-ch|grid-unit-width-c|grid-unit-height-pixels|grid-unit-height-pixel|grid-unit-height-pixe|grid-unit-height-pix|grid-unit-height-pi|grid-unit-height-p|grid-unit-height-chars|grid-unit-height-char|grid-unit-height-cha|grid-unit-height-ch|grid-unit-height-c|grid-snap|grid-factor-vertical|grid-factor-vertica|grid-factor-vertic|grid-factor-verti|grid-factor-vert|grid-factor-ver|grid-factor-ve|grid-factor-v|grid-factor-horizontal|grid-factor-horizonta|grid-factor-horizont|grid-factor-horizon|grid-factor-horizo|grid-factor-horiz|grid-factor-hori|grid-factor-hor|grid-factor-ho|grid-factor-h|graphic-edge|graphic-edg|graphic-ed|graphic-e)\\
|
|
4117
|
+
"match": "(?i)(:)(group-box|grid-visible|grid-unit-width-pixels|grid-unit-width-pixel|grid-unit-width-pixe|grid-unit-width-pix|grid-unit-width-pi|grid-unit-width-p|grid-unit-width-chars|grid-unit-width-char|grid-unit-width-cha|grid-unit-width-ch|grid-unit-width-c|grid-unit-height-pixels|grid-unit-height-pixel|grid-unit-height-pixe|grid-unit-height-pix|grid-unit-height-pi|grid-unit-height-p|grid-unit-height-chars|grid-unit-height-char|grid-unit-height-cha|grid-unit-height-ch|grid-unit-height-c|grid-snap|grid-factor-vertical|grid-factor-vertica|grid-factor-vertic|grid-factor-verti|grid-factor-vert|grid-factor-ver|grid-factor-ve|grid-factor-v|grid-factor-horizontal|grid-factor-horizonta|grid-factor-horizont|grid-factor-horizon|grid-factor-horizo|grid-factor-horiz|grid-factor-hori|grid-factor-hor|grid-factor-ho|grid-factor-h|graphic-edge|graphic-edg|graphic-ed|graphic-e)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4011
4118
|
"captures": {
|
|
4012
4119
|
"1": {
|
|
4013
4120
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4018,7 +4125,7 @@
|
|
|
4018
4125
|
}
|
|
4019
4126
|
},
|
|
4020
4127
|
"handle-attributes-H": {
|
|
4021
|
-
"match": "(?i)(:)(hwnd|html-title-end|html-title-begin|html-header-end|html-header-begin|html-frame-end|html-frame-begin|html-end-of-page|html-end-of-line|html-charset|horizontal|horizonta|horizont|horizon|horizo|horiz|hori|hidden|help|height-pixels|height-pixel|height-pixe|height-pix|height-pi|height-p|height-chars|height-char|height-cha|height-ch|height-c|has-records|has-lobs|handler|handle)\\
|
|
4128
|
+
"match": "(?i)(:)(hwnd|html-title-end|html-title-begin|html-header-end|html-header-begin|html-frame-end|html-frame-begin|html-end-of-page|html-end-of-line|html-charset|horizontal|horizonta|horizont|horizon|horizo|horiz|hori|hidden|help|height-pixels|height-pixel|height-pixe|height-pix|height-pi|height-p|height-chars|height-char|height-cha|height-ch|height-c|has-records|has-lobs|handler|handle)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4022
4129
|
"captures": {
|
|
4023
4130
|
"1": {
|
|
4024
4131
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4029,7 +4136,7 @@
|
|
|
4029
4136
|
}
|
|
4030
4137
|
},
|
|
4031
4138
|
"handle-attributes-I": {
|
|
4032
|
-
"match": "(?i)(:)(items-per-row|is-xml|is-partitioned|is-partitione|is-parameter-set|is-open|is-multi-tenant|is-json|is-class|is-clas|internal-entries|instantiating-procedure|input-value|inner-lines|inner-chars|initial|inherit-fgcolor|inherit-fgcolo|inherit-fgcol|inherit-fgco|inherit-fgc|inherit-bgcolor|inherit-bgcolo|inherit-bgcol|inherit-bgco|inherit-bgc|index-information|index-informatio|index-informati|index-informat|index-informa|index-inform|index-infor|index-info|index|in-handle|immediate-display|image-up|image-insensitive|image-down|image|ignore-current-modified|ignore-current-modifie|ignore-current-modifi|ignore-current-modif|ignore-current-modi|ignore-current-mod|icon|icfparameter|icfparamete|icfparamet|icfparame|icfparam)\\
|
|
4139
|
+
"match": "(?i)(:)(items-per-row|is-xml|is-partitioned|is-partitione|is-parameter-set|is-open|is-multi-tenant|is-json|is-class|is-clas|internal-entries|instantiating-procedure|input-value|inner-lines|inner-chars|initial|inherit-fgcolor|inherit-fgcolo|inherit-fgcol|inherit-fgco|inherit-fgc|inherit-bgcolor|inherit-bgcolo|inherit-bgcol|inherit-bgco|inherit-bgc|index-information|index-informatio|index-informati|index-informat|index-informa|index-inform|index-infor|index-info|index|in-handle|immediate-display|image-up|image-insensitive|image-down|image|ignore-current-modified|ignore-current-modifie|ignore-current-modifi|ignore-current-modif|ignore-current-modi|ignore-current-mod|icon|icfparameter|icfparamete|icfparamet|icfparame|icfparam)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4033
4140
|
"captures": {
|
|
4034
4141
|
"1": {
|
|
4035
4142
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4040,7 +4147,7 @@
|
|
|
4040
4147
|
}
|
|
4041
4148
|
},
|
|
4042
4149
|
"handle-attributes-K": {
|
|
4043
|
-
"match": "(?i)(:)(keys|key|keep-security-cache|keep-frame-z-order|keep-frame-z-orde|keep-frame-z-ord|keep-frame-z-or|keep-frame-z-o|keep-frame-z-|keep-frame-z|keep-connection-open)\\
|
|
4150
|
+
"match": "(?i)(:)(keys|key|keep-security-cache|keep-frame-z-order|keep-frame-z-orde|keep-frame-z-ord|keep-frame-z-or|keep-frame-z-o|keep-frame-z-|keep-frame-z|keep-connection-open)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4044
4151
|
"captures": {
|
|
4045
4152
|
"1": {
|
|
4046
4153
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4051,7 +4158,7 @@
|
|
|
4051
4158
|
}
|
|
4052
4159
|
},
|
|
4053
4160
|
"handle-attributes-L": {
|
|
4054
|
-
"match": "(?i)(:)(login-state|login-host|login-expiration-timestamp|logging-level|logfile-name|log-threshold|log-entry-types|locked|locator-type|locator-system-id|locator-public-id|locator-line-number|locator-column-number|local-version-info|local-port|local-name|local-host|literal-question|listings|list-items|list-item-pairs|line|library-calling-convention|library|length|last-tab-item|last-tab-ite|last-tab-it|last-tab-i|last-socket|last-server-socket|last-server|last-serve|last-serv|last-procedure|last-procedur|last-procedu|last-proced|last-proce|last-object|last-form|last-child|last-batch|last-async-request|last-async-reques|last-async-reque|last-async-requ|last-async-req|last-async-re|last-async-r|last-async-|last-async|large-to-small|large|languages|language|labels-have-colons|labels|label-font|label-fgcolor|label-fgcolo|label-fgcol|label-fgco|label-fgc|label-dcolor|label-dcolo|label-dcol|label-dco|label-dc|label-bgcolor|label-bgcolo|label-bgcol|label-bgco|label-bgc|label)\\
|
|
4161
|
+
"match": "(?i)(:)(login-state|login-host|login-expiration-timestamp|logging-level|logfile-name|log-threshold|log-entry-types|locked|locator-type|locator-system-id|locator-public-id|locator-line-number|locator-column-number|local-version-info|local-port|local-name|local-host|literal-question|listings|list-items|list-item-pairs|line|library-calling-convention|library|length|last-tab-item|last-tab-ite|last-tab-it|last-tab-i|last-socket|last-server-socket|last-server|last-serve|last-serv|last-procedure|last-procedur|last-procedu|last-proced|last-proce|last-object|last-form|last-child|last-batch|last-async-request|last-async-reques|last-async-reque|last-async-requ|last-async-req|last-async-re|last-async-r|last-async-|last-async|large-to-small|large|languages|language|labels-have-colons|labels|label-font|label-fgcolor|label-fgcolo|label-fgcol|label-fgco|label-fgc|label-dcolor|label-dcolo|label-dcol|label-dco|label-dc|label-bgcolor|label-bgcolo|label-bgcol|label-bgco|label-bgc|label)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4055
4162
|
"captures": {
|
|
4056
4163
|
"1": {
|
|
4057
4164
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4062,7 +4169,7 @@
|
|
|
4062
4169
|
}
|
|
4063
4170
|
},
|
|
4064
4171
|
"handle-attributes-M": {
|
|
4065
|
-
"match": "(?i)(:)(must-understand|multitasking-interval|multiple|multi-compile|movable|mouse-pointer|mouse-pointe|mouse-point|mouse-poin|mouse-poi|mouse-po|mouse-p|modified|min-width-pixels|min-width-pixel|min-width-pixe|min-width-pix|min-width-pi|min-width-p|min-width-chars|min-width-char|min-width-cha|min-width-ch|min-width-c|min-value|min-valu|min-val|min-schema-marshal|min-height-pixels|min-height-pixel|min-height-pixe|min-height-pix|min-height-pi|min-height-p|min-height-chars|min-height-char|min-height-cha|min-height-ch|min-height-c|min-column-width-pixels|min-column-width-pixel|min-column-width-pixe|min-column-width-pix|min-column-width-pi|min-column-width-p|min-column-width-chars|min-column-width-char|min-column-width-cha|min-column-width-ch|min-column-width-c|min-button|message-area-font|message-area|merge-by-field|menu-mouse|menu-mous|menu-mou|menu-mo|menu-m|menu-key|menu-ke|menu-k|menu-bar|maximum-level|max-width-pixels|max-width-pixel|max-width-pixe|max-width-pix|max-width-pi|max-width-p|max-width-chars|max-width-char|max-width-cha|max-width-ch|max-width-c|max-value|max-valu|max-val|max-height-pixels|max-height-pixel|max-height-pixe|max-height-pix|max-height-pi|max-height-p|max-height-chars|max-height-char|max-height-cha|max-height-ch|max-height-c|max-data-guess|max-chars|max-button|manual-highlight|mandatory)\\
|
|
4172
|
+
"match": "(?i)(:)(must-understand|multitasking-interval|multiple|multi-compile|movable|mouse-pointer|mouse-pointe|mouse-point|mouse-poin|mouse-poi|mouse-po|mouse-p|modified|min-width-pixels|min-width-pixel|min-width-pixe|min-width-pix|min-width-pi|min-width-p|min-width-chars|min-width-char|min-width-cha|min-width-ch|min-width-c|min-value|min-valu|min-val|min-schema-marshal|min-height-pixels|min-height-pixel|min-height-pixe|min-height-pix|min-height-pi|min-height-p|min-height-chars|min-height-char|min-height-cha|min-height-ch|min-height-c|min-column-width-pixels|min-column-width-pixel|min-column-width-pixe|min-column-width-pix|min-column-width-pi|min-column-width-p|min-column-width-chars|min-column-width-char|min-column-width-cha|min-column-width-ch|min-column-width-c|min-button|message-area-font|message-area|merge-by-field|menu-mouse|menu-mous|menu-mou|menu-mo|menu-m|menu-key|menu-ke|menu-k|menu-bar|maximum-level|max-width-pixels|max-width-pixel|max-width-pixe|max-width-pix|max-width-pi|max-width-p|max-width-chars|max-width-char|max-width-cha|max-width-ch|max-width-c|max-value|max-valu|max-val|max-height-pixels|max-height-pixel|max-height-pixe|max-height-pix|max-height-pi|max-height-p|max-height-chars|max-height-char|max-height-cha|max-height-ch|max-height-c|max-data-guess|max-chars|max-button|manual-highlight|mandatory)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4066
4173
|
"captures": {
|
|
4067
4174
|
"1": {
|
|
4068
4175
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4073,7 +4180,7 @@
|
|
|
4073
4180
|
}
|
|
4074
4181
|
},
|
|
4075
4182
|
"handle-attributes-N": {
|
|
4076
|
-
"match": "(?i)(:)(numeric-separator|numeric-separato|numeric-separat|numeric-separa|numeric-separ|numeric-sepa|numeric-sep|numeric-format|numeric-forma|numeric-form|numeric-for|numeric-fo|numeric-f|numeric-decimal-point|numeric-decimal-poin|numeric-decimal-poi|numeric-decimal-po|numeric-decimal-p|numeric-decimal-|numeric-decimal|numeric-decima|numeric-decim|numeric-deci|numeric-dec|num-visible-columns|num-visible-column|num-visible-colum|num-visible-colu|num-visible-col|num-top-buffers|num-to-retain|num-tabs|num-source-buffers|num-selected-widgets|num-selected-rows|num-results|num-replaced|num-replace|num-replac|num-repla|num-repl|num-relations|num-references|num-parameters|num-messages|num-log-files|num-locked-columns|num-locked-column|num-locked-colum|num-locked-colu|num-locked-col|num-lines|num-iterations|num-items|num-header-entries|num-formats|num-fields|num-entries|num-dropped-files|num-columns|num-column|num-colum|num-colu|num-col|num-children|num-child-relations|num-buttons|num-button|num-butto|num-butt|num-but|num-buffers|nonamespace-schema-location|node-value|no-validate|no-validat|no-valida|no-valid|no-vali|no-val|no-schema-marshal|no-focus|no-empty-space|no-current-value|next-tab-item|next-tab-ite|next-sibling|next-rowid|next-column|next-colum|next-colu|next-col|new-row|new|nested|needs-prompt|needs-appserver-prompt|namespace-uri|namespace-prefix|name)\\
|
|
4183
|
+
"match": "(?i)(:)(numeric-separator|numeric-separato|numeric-separat|numeric-separa|numeric-separ|numeric-sepa|numeric-sep|numeric-format|numeric-forma|numeric-form|numeric-for|numeric-fo|numeric-f|numeric-decimal-point|numeric-decimal-poin|numeric-decimal-poi|numeric-decimal-po|numeric-decimal-p|numeric-decimal-|numeric-decimal|numeric-decima|numeric-decim|numeric-deci|numeric-dec|num-visible-columns|num-visible-column|num-visible-colum|num-visible-colu|num-visible-col|num-top-buffers|num-to-retain|num-tabs|num-source-buffers|num-selected-widgets|num-selected-rows|num-results|num-replaced|num-replace|num-replac|num-repla|num-repl|num-relations|num-references|num-parameters|num-messages|num-log-files|num-locked-columns|num-locked-column|num-locked-colum|num-locked-colu|num-locked-col|num-lines|num-iterations|num-items|num-header-entries|num-formats|num-fields|num-entries|num-dropped-files|num-columns|num-column|num-colum|num-colu|num-col|num-children|num-child-relations|num-buttons|num-button|num-butto|num-butt|num-but|num-buffers|nonamespace-schema-location|node-value|no-validate|no-validat|no-valida|no-valid|no-vali|no-val|no-schema-marshal|no-focus|no-empty-space|no-current-value|next-tab-item|next-tab-ite|next-sibling|next-rowid|next-column|next-colum|next-colu|next-col|new-row|new|nested|needs-prompt|needs-appserver-prompt|namespace-uri|namespace-prefix|name)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4077
4184
|
"captures": {
|
|
4078
4185
|
"1": {
|
|
4079
4186
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4084,7 +4191,7 @@
|
|
|
4084
4191
|
}
|
|
4085
4192
|
},
|
|
4086
4193
|
"handle-attributes-O": {
|
|
4087
|
-
"match": "(?i)(:)(owner-document|owner|overlay|origin-rowid|origin-handle|ordinal|options|on-frame-border|on-frame-borde|on-frame-bord|on-frame-bor|on-frame-bo|on-frame-b|on-frame-|on-frame)\\
|
|
4194
|
+
"match": "(?i)(:)(owner-document|owner|overlay|origin-rowid|origin-handle|ordinal|options|on-frame-border|on-frame-borde|on-frame-bord|on-frame-bor|on-frame-bo|on-frame-b|on-frame-|on-frame)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4088
4195
|
"captures": {
|
|
4089
4196
|
"1": {
|
|
4090
4197
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4095,7 +4202,7 @@
|
|
|
4095
4202
|
}
|
|
4096
4203
|
},
|
|
4097
4204
|
"handle-attributes-P": {
|
|
4098
|
-
"match": "(?i)(:)(published-events|public-id|proxy-userid|proxy-password|proxy|progress-source|progress-sourc|progress-sour|progress-sou|progress-so|progress-s|profiling|procedure-type|procedure-name|private-data|private-dat|private-da|private-d|printer-port|printer-name|printer-hdc|printer-control-handle|primary-passphrase|primary|prev-tab-item|prev-tab-ite|prev-tab-it|prev-tab-i|prev-sibling|prev-column|prev-colum|prev-colu|prev-col|prepared|prepare-string|prefer-dataset|position|popup-only|popup-onl|popup-on|popup-o|popup-menu|popup-men|popup-me|popup-m|pixels-per-row|pixels-per-column|pixels-per-colum|pixels-per-colu|pixels-per-col|pfcolor|pfcolo|pfcol|pfco|pfc|persistent-procedure|persistent-cache-disabled|persistent|persisten|persiste|persist|pbe-key-rounds|pbe-hash-algorithm|pbe-hash-algorith|pbe-hash-algorit|pbe-hash-algori|pbe-hash-algor|pbe-hash-algo|pbe-hash-alg|pathname|password-field|parse-status|parent-relation|parent-relatio|parent-relati|parent-relat|parent-rela|parent-rel|parent-id-relation|parent-fields-before|parent-fields-after|parent-buffer|parent|parameter|paramete|paramet|parame|param|page-top|page-bottom|page-botto|page-bott|page-bot)\\
|
|
4205
|
+
"match": "(?i)(:)(published-events|public-id|proxy-userid|proxy-password|proxy|progress-source|progress-sourc|progress-sour|progress-sou|progress-so|progress-s|profiling|procedure-type|procedure-name|private-data|private-dat|private-da|private-d|printer-port|printer-name|printer-hdc|printer-control-handle|primary-passphrase|primary|prev-tab-item|prev-tab-ite|prev-tab-it|prev-tab-i|prev-sibling|prev-column|prev-colum|prev-colu|prev-col|prepared|prepare-string|prefer-dataset|position|popup-only|popup-onl|popup-on|popup-o|popup-menu|popup-men|popup-me|popup-m|pixels-per-row|pixels-per-column|pixels-per-colum|pixels-per-colu|pixels-per-col|pfcolor|pfcolo|pfcol|pfco|pfc|persistent-procedure|persistent-cache-disabled|persistent|persisten|persiste|persist|pbe-key-rounds|pbe-hash-algorithm|pbe-hash-algorith|pbe-hash-algorit|pbe-hash-algori|pbe-hash-algor|pbe-hash-algo|pbe-hash-alg|pathname|password-field|parse-status|parent-relation|parent-relatio|parent-relati|parent-relat|parent-rela|parent-rel|parent-id-relation|parent-fields-before|parent-fields-after|parent-buffer|parent|parameter|paramete|paramet|parame|param|page-top|page-bottom|page-botto|page-bott|page-bot)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4099
4206
|
"captures": {
|
|
4100
4207
|
"1": {
|
|
4101
4208
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4106,7 +4213,7 @@
|
|
|
4106
4213
|
}
|
|
4107
4214
|
},
|
|
4108
4215
|
"handle-attributes-Q": {
|
|
4109
|
-
"match": "(?i)(:)(quit|query-off-end|query|qualified-user-id)\\
|
|
4216
|
+
"match": "(?i)(:)(quit|query-off-end|query|qualified-user-id)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4110
4217
|
"captures": {
|
|
4111
4218
|
"1": {
|
|
4112
4219
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4117,7 +4224,7 @@
|
|
|
4117
4224
|
}
|
|
4118
4225
|
},
|
|
4119
4226
|
"handle-attributes-R": {
|
|
4120
|
-
"match": "(?i)(:)(rowid|row-state|row-resizable|row-markers|row-marker|row-marke|row-mark|row-mar|row-ma|row-height-pixels|row-height-pixel|row-height-pixe|row-height-pix|row-height-pi|row-height-p|row-height-chars|row-height-char|row-height-cha|row-height-ch|row-height-c|row|rounded|roles|role|return-value-dll-type|return-value-data-type|return-value|return-valu|return-val|return-inserted|return-inserte|return-insert|return-inser|return-inse|return-ins|retain-shape|retain-shap|retain-sha|retain-sh|retain-s|restart-rowid|restart-row|response-info|resize|resizable|resizabl|resizab|resiza|request-info|reposition|remote-port|remote-host|remote|relations-active|relation-fields|relation-field|relation-fiel|relation-fie|relation-fi|rejected|refreshable|recursive|record-length|record-lengt|record-leng|record-len|recid|read-only|radio-buttons)\\
|
|
4227
|
+
"match": "(?i)(:)(rowid|row-state|row-resizable|row-markers|row-marker|row-marke|row-mark|row-mar|row-ma|row-height-pixels|row-height-pixel|row-height-pixe|row-height-pix|row-height-pi|row-height-p|row-height-chars|row-height-char|row-height-cha|row-height-ch|row-height-c|row|rounded|roles|role|return-value-dll-type|return-value-data-type|return-value|return-valu|return-val|return-inserted|return-inserte|return-insert|return-inser|return-inse|return-ins|retain-shape|retain-shap|retain-sha|retain-sh|retain-s|restart-rowid|restart-row|response-info|resize|resizable|resizabl|resizab|resiza|request-info|reposition|remote-port|remote-host|remote|relations-active|relation-fields|relation-field|relation-fiel|relation-fie|relation-fi|rejected|refreshable|recursive|record-length|record-lengt|record-leng|record-len|recid|read-only|radio-buttons)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4121
4228
|
"captures": {
|
|
4122
4229
|
"1": {
|
|
4123
4230
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4128,7 +4235,7 @@
|
|
|
4128
4235
|
}
|
|
4129
4236
|
},
|
|
4130
4237
|
"handle-attributes-S": {
|
|
4131
|
-
"match": "(?i)(:)(system-id|system-alert-boxes|system-alert-boxe|system-alert-box|system-alert-bo|system-alert-b|system-alert-|system-alert|symmetric-support|symmetric-encryption-key|symmetric-encryption-iv|symmetric-encryption-algorithm|symmetric-encryption-aad|suppress-warnings-list|suppress-warnings|suppress-warning|suppress-warnin|suppress-warni|suppress-warn|suppress-war|suppress-wa|suppress-w|suppress-namespace-processing|super-procedures|super-procedure|super-procedur|super-procedu|super-proced|super-proce|super-proc|subtype|strict-entity-resolution|strict|stretch-to-fit|stream|stopped|stoppe|stop-object|stop|status-area-font|status-area|statistics|state-detail|startup-parameters|standalone|ssl-server-name|sort-number|sort-ascending|sort|soap-version|soap-fault-subcode|soap-fault-string|soap-fault-role|soap-fault-node|soap-fault-misunderstood-header|soap-fault-detail|soap-fault-code|soap-fault-actor|small-title|small-icon|skip-deleted-record|skip-deleted-recor|skip-deleted-reco|skip-deleted-rec|singleton|single-run|signature-value|side-labels|side-label-handle|side-label-handl|side-label-hand|side-label-han|side-label-ha|side-label-h|show-in-taskbar|show-in-taskba|show-in-taskb|show-in-task|session-id|session-end|server-operating-mode|server-connection-id|server-connection-context|server-connection-contex|server-connection-conte|server-connection-cont|server-connection-con|server-connection-co|server-connection-bound-request|server-connection-bound-reques|server-connection-bound-reque|server-connection-bound-requ|server-connection-bound-req|server-connection-bound-re|server-connection-bound|server-connection-boun|server-connection-bou|server-connection-bo|server|serialize-name|serialize-hidden|separators|separator-fgcolor|separator-fgcolo|separator-fgcol|separator-fgco|separator-fgc|sensitive|selection-text|selection-start|selection-end|selected|selectable|seal-timestamp|scrollbar-vertical|scrollbar-vertica|scrollbar-vertic|scrollbar-verti|scrollbar-vert|scrollbar-ver|scrollbar-ve|scrollbar-v|scrollbar-horizontal|scrollbar-horizonta|scrollbar-horizont|scrollbar-horizon|scrollbar-horizo|scrollbar-horiz|scrollbar-hori|scrollbar-hor|scrollbar-ho|scrollbar-h|scrollable|scroll-bars|screen-value|screen-valu|screen-val|screen-lines|schema-path|schema-marshal|schema-location|schema-change|save-where-string)\\
|
|
4238
|
+
"match": "(?i)(:)(system-id|system-alert-boxes|system-alert-boxe|system-alert-box|system-alert-bo|system-alert-b|system-alert-|system-alert|symmetric-support|symmetric-encryption-key|symmetric-encryption-iv|symmetric-encryption-algorithm|symmetric-encryption-aad|suppress-warnings-list|suppress-warnings|suppress-warning|suppress-warnin|suppress-warni|suppress-warn|suppress-war|suppress-wa|suppress-w|suppress-namespace-processing|super-procedures|super-procedure|super-procedur|super-procedu|super-proced|super-proce|super-proc|subtype|strict-entity-resolution|strict|stretch-to-fit|stream|stopped|stoppe|stop-object|stop|status-area-font|status-area|statistics|state-detail|startup-parameters|standalone|ssl-server-name|sort-number|sort-ascending|sort|soap-version|soap-fault-subcode|soap-fault-string|soap-fault-role|soap-fault-node|soap-fault-misunderstood-header|soap-fault-detail|soap-fault-code|soap-fault-actor|small-title|small-icon|skip-deleted-record|skip-deleted-recor|skip-deleted-reco|skip-deleted-rec|singleton|single-run|signature-value|side-labels|side-label-handle|side-label-handl|side-label-hand|side-label-han|side-label-ha|side-label-h|show-in-taskbar|show-in-taskba|show-in-taskb|show-in-task|session-id|session-end|server-operating-mode|server-connection-id|server-connection-context|server-connection-contex|server-connection-conte|server-connection-cont|server-connection-con|server-connection-co|server-connection-bound-request|server-connection-bound-reques|server-connection-bound-reque|server-connection-bound-requ|server-connection-bound-req|server-connection-bound-re|server-connection-bound|server-connection-boun|server-connection-bou|server-connection-bo|server|serialize-name|serialize-hidden|separators|separator-fgcolor|separator-fgcolo|separator-fgcol|separator-fgco|separator-fgc|sensitive|selection-text|selection-start|selection-end|selected|selectable|seal-timestamp|scrollbar-vertical|scrollbar-vertica|scrollbar-vertic|scrollbar-verti|scrollbar-vert|scrollbar-ver|scrollbar-ve|scrollbar-v|scrollbar-horizontal|scrollbar-horizonta|scrollbar-horizont|scrollbar-horizon|scrollbar-horizo|scrollbar-horiz|scrollbar-hori|scrollbar-hor|scrollbar-ho|scrollbar-h|scrollable|scroll-bars|screen-value|screen-valu|screen-val|screen-lines|schema-path|schema-marshal|schema-location|schema-change|save-where-string)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4132
4239
|
"captures": {
|
|
4133
4240
|
"1": {
|
|
4134
4241
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4139,7 +4246,7 @@
|
|
|
4139
4246
|
}
|
|
4140
4247
|
},
|
|
4141
4248
|
"handle-attributes-T": {
|
|
4142
|
-
"match": "(?i)(:)(type|transparent|transparen|transpare|transpar|transaction|transactio|transacti|transact|trans-init-procedure|trans-init-procedur|trans-init-procedu|trans-init-proced|trans-init-proce|trans-init-proc|tracking-changes|tracing|trace-filter|top-only|top-nav-query|tooltips|tooltip|toggle-box|title-font|title-fon|title-fo|title-fgcolor|title-fgcolo|title-fgcol|title-fgco|title-fgc|title-dcolor|title-dcolo|title-dcol|title-dco|title-dc|title-bgcolor|title-bgcolo|title-bgcol|title-bgco|title-bgc|title|timezone|time-source|tic-marks|three-d|thread-safe|text-selected|temp-directory|temp-director|temp-directo|temp-direct|temp-direc|temp-dire|temp-dir|table-number|table-numbe|table-numb|table-num|table-list|table-handle|table-crc-list|table|tab-stop|tab-position)\\
|
|
4249
|
+
"match": "(?i)(:)(type|transparent|transparen|transpare|transpar|transaction|transactio|transacti|transact|trans-init-procedure|trans-init-procedur|trans-init-procedu|trans-init-proced|trans-init-proce|trans-init-proc|tracking-changes|tracing|trace-filter|top-only|top-nav-query|tooltips|tooltip|toggle-box|title-font|title-fon|title-fo|title-fgcolor|title-fgcolo|title-fgcol|title-fgco|title-fgc|title-dcolor|title-dcolo|title-dcol|title-dco|title-dc|title-bgcolor|title-bgcolo|title-bgcol|title-bgco|title-bgc|title|timezone|time-source|tic-marks|three-d|thread-safe|text-selected|temp-directory|temp-director|temp-directo|temp-direct|temp-direc|temp-dire|temp-dir|table-number|table-numbe|table-numb|table-num|table-list|table-handle|table-crc-list|table|tab-stop|tab-position)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4143
4250
|
"captures": {
|
|
4144
4251
|
"1": {
|
|
4145
4252
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4150,7 +4257,7 @@
|
|
|
4150
4257
|
}
|
|
4151
4258
|
},
|
|
4152
4259
|
"handle-attributes-U": {
|
|
4153
|
-
"match": "(?i)(:)(user-id|url-userid|url-password|url|unique-match|unique-id|undo-throw-scope|undo)\\
|
|
4260
|
+
"match": "(?i)(:)(user-id|url-userid|url-password|url|unique-match|unique-id|undo-throw-scope|undo)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4154
4261
|
"captures": {
|
|
4155
4262
|
"1": {
|
|
4156
4263
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4161,7 +4268,7 @@
|
|
|
4161
4268
|
}
|
|
4162
4269
|
},
|
|
4163
4270
|
"handle-attributes-V": {
|
|
4164
|
-
"match": "(?i)(:)(visible|virtual-width-pixels|virtual-width-pixel|virtual-width-pixe|virtual-width-pix|virtual-width-pi|virtual-width-p|virtual-width-chars|virtual-width-char|virtual-width-cha|virtual-width-ch|virtual-width-c|virtual-height-pixels|virtual-height-pixel|virtual-height-pixe|virtual-height-pix|virtual-height-pi|virtual-height-p|virtual-height-chars|virtual-height-char|virtual-height-cha|virtual-height-ch|virtual-height-c|view-first-column-on-reopen|view-as|version|value|validation-enabled|validate-xml|validate-message|validate-expression|validate-expressio|v6display)\\
|
|
4271
|
+
"match": "(?i)(:)(visible|virtual-width-pixels|virtual-width-pixel|virtual-width-pixe|virtual-width-pix|virtual-width-pi|virtual-width-p|virtual-width-chars|virtual-width-char|virtual-width-cha|virtual-width-ch|virtual-width-c|virtual-height-pixels|virtual-height-pixel|virtual-height-pixe|virtual-height-pix|virtual-height-pi|virtual-height-p|virtual-height-chars|virtual-height-char|virtual-height-cha|virtual-height-ch|virtual-height-c|view-first-column-on-reopen|view-as|version|value|validation-enabled|validate-xml|validate-message|validate-expression|validate-expressio|v6display)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4165
4272
|
"captures": {
|
|
4166
4273
|
"1": {
|
|
4167
4274
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4172,7 +4279,7 @@
|
|
|
4172
4279
|
}
|
|
4173
4280
|
},
|
|
4174
4281
|
"handle-attributes-W": {
|
|
4175
|
-
"match": "(?i)(:)(write-status|work-area-y|work-area-x|work-area-width-pixels|work-area-width-pixel|work-area-width-pixe|work-area-width-pix|work-area-width-pi|work-area-width-p|work-area-height-pixels|work-area-height-pixel|work-area-height-pixe|work-area-height-pix|work-area-height-pi|work-area-height-p|word-wrap|window-system|window-syste|window-syst|window-sys|window-state|window-stat|window-sta|window|width-pixels|width-pixel|width-pixe|width-pix|width-pi|width-p|width-chars|width-char|width-cha|width-ch|width-c|widget-leave|widget-leav|widget-lea|widget-le|widget-l|widget-id|widget-enter|widget-ente|widget-ent|widget-en|widget-e|where-string|wc-admin-app|warning)\\
|
|
4282
|
+
"match": "(?i)(:)(write-status|work-area-y|work-area-x|work-area-width-pixels|work-area-width-pixel|work-area-width-pixe|work-area-width-pix|work-area-width-pi|work-area-width-p|work-area-height-pixels|work-area-height-pixel|work-area-height-pixe|work-area-height-pix|work-area-height-pi|work-area-height-p|word-wrap|window-system|window-syste|window-syst|window-sys|window-state|window-stat|window-sta|window|width-pixels|width-pixel|width-pixe|width-pix|width-pi|width-p|width-chars|width-char|width-cha|width-ch|width-c|widget-leave|widget-leav|widget-lea|widget-le|widget-l|widget-id|widget-enter|widget-ente|widget-ent|widget-en|widget-e|where-string|wc-admin-app|warning)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4176
4283
|
"captures": {
|
|
4177
4284
|
"1": {
|
|
4178
4285
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4183,7 +4290,7 @@
|
|
|
4183
4290
|
}
|
|
4184
4291
|
},
|
|
4185
4292
|
"handle-attributes-X": {
|
|
4186
|
-
"match": "(?i)(:)(xml-suppress-namespace-processing|xml-strict-entity-resolution|xml-schema-path|xml-schema-pat|xml-node-type|xml-node-name|xml-entity-expansion-limit|xml-data-type|xcode-session-key|x-document|x)\\
|
|
4293
|
+
"match": "(?i)(:)(xml-suppress-namespace-processing|xml-strict-entity-resolution|xml-schema-path|xml-schema-pat|xml-node-type|xml-node-name|xml-entity-expansion-limit|xml-data-type|xcode-session-key|x-document|x)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4187
4294
|
"captures": {
|
|
4188
4295
|
"1": {
|
|
4189
4296
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -4194,7 +4301,7 @@
|
|
|
4194
4301
|
}
|
|
4195
4302
|
},
|
|
4196
4303
|
"handle-attributes-Y": {
|
|
4197
|
-
"match": "(?i)(:)(year-offset|y)\\
|
|
4304
|
+
"match": "(?i)(:)(year-offset|y)\\b(?![\\#\\$\\-\\_\\%\\&])",
|
|
4198
4305
|
"captures": {
|
|
4199
4306
|
"1": {
|
|
4200
4307
|
"name": "punctuation.separator.colon.abl"
|
|
@@ -5073,7 +5180,7 @@
|
|
|
5073
5180
|
},
|
|
5074
5181
|
"abl-functions-S": {
|
|
5075
5182
|
"name": "meta.function-call.abl",
|
|
5076
|
-
"begin": "(?i)\\s*(super|substring|substrin|substri|substr|substitute|substitut|substitu|substit|substi|subst|string|ssl-server-name|sqrt|sha1-digest|setuserid|setuseri|setuser|set-size|set-effective-tenant|set-db-client|seek|search|sdbname|screen-lines)\\s*(?=\\()",
|
|
5183
|
+
"begin": "(?i)\\s*(super|substring|substrin|substri|substr|substitute|substitut|substitu|substit|substi|subst|string|ssl-server-name|sqrt|skip|sha1-digest|setuserid|setuseri|setuser|set-size|set-effective-tenant|set-db-client|seek|search|sdbname|screen-lines)\\s*(?=\\()",
|
|
5077
5184
|
"beginCaptures": {
|
|
5078
5185
|
"1": {
|
|
5079
5186
|
"name": "support.function.abl"
|