Closed ghost closed 9 years ago
Can you provide a sample python code for me just to see the difference? I just created another branch called issue-2. If it's fine I'm going to merge it into the main branch.
Please compare this Python code
a = a + b/c
if a == b:
a += b
if a <= b:
a = b % 2
With analogous C++ code:
int main() {
a = a + b/c
if (a == b)
a += b
if (a <= b)
a = b % 2
}
in Sublime Text 3.
Just tested this on my secondary machine and I can see the difference. I'll merge your patch. Thanks!
@Trismegistos84 Try to upgrade your package. Is the problem fixed now?
Much better! Thank you.
In this theme arithmetical operators (=,+, etc) are higlighted in Python code while they are not higlighted in C++. Visual Studio does not highlight operators so I have done modification to fix situation for Python. Unfortunately I can not attach any file so I appended code to the end of message. Please incorporate the fix.
This code should be added to file starting from line 67