Hi,
I’m trying to get language variables in the Python syntax definition to also be parsed as language variables when parameters - i.e. the current system highlights
self.colour = "blue"
^^^^
but not
def cool_method(self, name):
^^^^
I went into Python.sublime-syntax and added the line
- include: language-variables
at line 550 (under - include: illegal-names, inside function-parameters).
When I try to load my modified syntax definition, I get this dialog:
Error loading syntax file “Packages/Python/Python.sublime-syntax”: Unable to read Packages/Python/Python.sublime-syntax
What am I doing wrong?
