We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
My VSCode does not work well on highlight syntax with python function annotation. Details are following:
Editor name and version: VSCode version 1.62.3
Platform: Windows 10
Color scheme: Any (primary using Tokyo Night theme)
MagicPython version: latest
A sreenshot:
5-10 lines of surrounding code:
def gcd(a: int, b: int) -> int: if a == b: return a else: if a > b: return gcd(a-b, b) else: return gcd(a, b-a) def gcd2(a: int, b: int): if b == 0: return a else: return gcd2(b, a % b)
Any ideas?
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
My VSCode does not work well on highlight syntax with python function annotation. Details are following:
Editor name and version: VSCode version 1.62.3
Platform: Windows 10
Color scheme: Any (primary using Tokyo Night theme)
MagicPython version: latest
A sreenshot:
5-10 lines of surrounding code:
Any ideas?
Thanks
The text was updated successfully, but these errors were encountered: