We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d732575 commit d10fcd5Copy full SHA for d10fcd5
syntaxes/delphi.tmLanguage.json
@@ -13,6 +13,9 @@
13
},
14
{
15
"include": "#strings"
16
+ },
17
+ {
18
+ "include": "#constants"
19
}
20
],
21
"repository": {
@@ -23,15 +26,23 @@
23
26
}]
24
27
25
28
"strings": {
- "name": "string.quoted.double.delphi",
- "begin": "\"",
- "end": "\"",
29
+ "name": "string.quoted.single.dfm",
30
+ "begin": "'",
31
+ "end": "'",
32
"patterns": [
- {
- "name": "constant.character.escape.delphi",
- "match": "\\\\."
33
- }
+
34
]
35
36
+ "constants": {
37
+ "patterns": [{
38
+ "name": "constant.numeric.dfm",
39
+ "match": "\\W\\d+"
40
41
42
+ "name": "constant.language.dfm",
43
+ "match": "([Tt]rue|[Ff]alse)"
44
+ }
45
+ ]
46
47
48
"scopeName": "source.dfm"
0 commit comments