Skip to content

Underscore prefixed variable cannot be renamed in neovim with noice #77

@tahseenjamal

Description

@tahseenjamal

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())

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions