filNaj / tree-setter

A treesitter-module which will place equals, semicolons, commas and double points automatically for you!
122 stars 6 forks source link

Feature Request: Python - Add `.` access support #9

Closed ColinKennedy closed 1 year ago

ColinKennedy commented 1 year ago

At the moment, if you have a class like this:

class Foo:
    def __init__(self):
        super().__init__()

        thing
        self._thing

Pressing space after thing correctly expands to thing = but pressing space after self._thing does not expand to self._thing =