Files
godot-vscode-plugin/syntaxes
Daelon Suzuka 5bfe853f8c Multiple highlighting improvements (#506)
* binary int notation
* `_` spacers in numeric literals
* fixed several instances of incorrect case insensitivity
* @"a", &"b", ^"c", and r"d" style string literals
2023-10-13 01:06:25 -04:00
..

Helpful resources

You can find the regex syntax that VSCode uses here.

Creating and debugging regex

When creating regexes it is sometimes useful to test against a data set.

Regex101 allows for pretty good match testing. Unfortunately, it does not support the regex (Ruby) version that TextMate uses.

ExtendsClass's regex engine does support the Ruby variant, but the match testing experience is not as good. However, it automatically generates an FSM for your regex, which is very useful when debugging.