sullyj3 / vim-ftplugin-python

1 stars 4 forks source link

Prevent jumping through non definitions ex: async with #7

Closed nramirezuy closed 8 years ago

nramirezuy commented 8 years ago

Where each red line represents a stop.

Current:

async def function(): ------------
    async with foo: ------------
        pass

With this patch:

async def function(): ------------
    async with foo:
        pass