tweekmonster / braceless.vim

:snake: Text objects, folding, and more for Python and other indented languages.
395 stars 13 forks source link

`:` key dedents incorrectly #17

Closed beaugunderson closed 8 years ago

beaugunderson commented 8 years ago

In a blank file, if I type this:

def foo(bar,
        baz,
        buzz)

and then hit the : key, I end up with this:

def foo(bar,
        baz,
    buzz):

(it dedents the last line incorrectly)

tweekmonster commented 8 years ago

Thanks I'll look into this.