> Awesome to have syntax highlighting for PEP 695 type aliases. However, type parameter are still missing unfortunately. > >  > > ```py > 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](https://github.com/microsoft/pylance-release/issues/5541#issuecomment-2596876544)_