We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'elif' indentation is forced to deepest 'if' one as follows. before indent:
if True: if True: pass elif: pass
after indent:
expected after indent:
On the other hand, 'else' indentation performs as I expected. before indent:
if True: if True: pass else: pass
The text was updated successfully, but these errors were encountered:
Fix outer "elif" with inner "if"
c1e32ba
Fixes Vimjas#135.
Thanks for the report - I've noticed this myself, but now took the time to fix it: #136.
Sorry, something went wrong.
Fix outer "elif" with inner "if" (#136)
60ba5e1
Fixes #135.
Thank you for your quick fixing. I confirmed expected behavior.
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
'elif' indentation is forced to deepest 'if' one as follows.
before indent:
after indent:
expected after indent:
On the other hand, 'else' indentation performs as I expected.
before indent:
after indent:
The text was updated successfully, but these errors were encountered: