I want to highlight everything after "print" as a string, the problem is that this leads to no highlighting even though the regex, in theory, should work.
As an example replacing "match":
with "begin":"somestring"
and typing somestring
into vscode, works.
This is the JSON for the specific section:
"afterprint": {
"patterns": [
{
"name": "string.quoted.double",
"match": "(?<=print)(?s)(.*$)"
}
]
}