Using nvim with noice, if you try to rename the variable ``` _name ``` in the below code, it doesn't work ``` class Car: _name def __init__(self, name) -> None: self._name = name def show_name(self): return self._name benz = Car("benz") print(benz.show_name()) ```
Using nvim with noice, if you try to rename the variable
in the below code, it doesn't work