In the most recent version of Sublime Text, I have encountered what I think is a syntax highlighting error when writing in Python. Whenever I create a dictionary that has a key/value pair where the variable that represents the value starts with “for”, the comma at the end of the line and all subsequent lines in the dictionary is highlighted pink. For instance:
{
"test": fordgtths,
}
In my editor, the comma in the above text is highlighted pink. When I change the variable so that it does not start with “for”, the highlighting error goes away. Is this in fact an error, or is there something obvious I’m missing? Is there a way to fix it, or do I just need to wait for a patch?