Representation of special characters in console/Editor

Issue #126 resolved
Oliver Schwanke created an issue

Hi,

python 3.5 defines the @ operator for matrix multiplication,

for the moment this one and the following chars get colored yellowish, like decorators, which looks somewhat weird.

And python allows thousandseparators, which also dont get colored correctly, see pictures attached.

import numpy as np
T=np.eye(3)
v = np.array([1,2,3])
T@v # v is yellowish here
array([1., 2., 3.])
T @ v # this one is colored correctly
array([1., 2., 3.])

only first “1” is colored, rest is black.

1_000_000.5

Comments (3)

  1. Log in to comment