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 f58ed70 commit a4be1abCopy full SHA for a4be1ab
grammar.js
@@ -1189,7 +1189,7 @@ module.exports = grammar({
1189
$._backtick_identifier,
1190
),
1191
1192
- _alpha_identifier: $ => /[\p{L}_][\p{L}\p{Nd}_]*/,
+ _alpha_identifier: $ => /[a-zA-Z_][a-zA-Z_0-9]*/,
1193
1194
_backtick_identifier: $ => /`[^\r\n`]+`/,
1195
src/grammar.json
@@ -6077,7 +6077,7 @@
6077
},
6078
"_alpha_identifier": {
6079
"type": "PATTERN",
6080
- "value": "[\\p{L}_][\\p{L}\\p{Nd}_]*"
+ "value": "[a-zA-Z_][a-zA-Z_0-9]*"
6081
6082
"_backtick_identifier": {
6083
0 commit comments