Awesome to have syntax highlighting for PEP 695 type aliases. However, type parameter are still missing unfortunately.

from typing import Generic, TypeVar
T = TypeVar("T")
class X(Generic[T]):
def __init__(self, var: T) -> None: ...
class Y[T]:
def __init__(self, var: T) -> None: ...
Originally posted by @cdce8p in #5541