garaemon / vscode-emacs-tab

BSD 3-Clause "New" or "Revised" License
14 stars 11 forks source link

Does not unindent with Python #29

Open tluchko opened 1 year ago

tluchko commented 1 year ago

Tabbing doesn't work correctly for Python.

E.g., in the code below, hitting <tab> will always indent the third line. In emacs, hitting tab will toggle between all tab options. In this case no indent and one level of indent.

if foo:
    a = 1
b = 1

Is this something that can be fixed?