You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some Python functions that accept SQL statements, so I have some templates that insert a triple quoted string. For example, the result I'm trying to achive is:
cnxn.execute(
"""
| # <-- caret here
""")
I have a template with key "execute" and it usually works, but not always:
With this, entering "cnxn.execute" at column 0 results in:
cnxn.execute(
"""
|
""")
Within a function they are lined up however.
I've tried combinations of indentation markers, fixed, auto, nil, etc. and cannot find a
combination that works at column 0 and at other columns. Each either ends up like this or
reversed where the closing quotes are indented before the opening.
the behavior I'm looking for is almost fixed with a marker:
The line with "execute" is already indented correctly so it shouldn't change.
The opening quotes should be lined up according to mode. They could be much further back if
"execute" is at the end of a long line.
The empty line with $0 and the closing quote need to be lined with the closing, disregarding
the mode. Basically like fixed, but fixed from the first indented line.
Am I missing a combination or a feature?
Thanks.
The text was updated successfully, but these errors were encountered:
I have some Python functions that accept SQL statements, so I have some templates that insert a triple quoted string. For example, the result I'm trying to achive is:
I have a template with key "execute" and it usually works, but not always:
With this, entering "cnxn.execute" at column 0 results in:
Within a function they are lined up however.
I've tried combinations of indentation markers, fixed, auto, nil, etc. and cannot find a
combination that works at column 0 and at other columns. Each either ends up like this or
reversed where the closing quotes are indented before the opening.
the behavior I'm looking for is almost fixed with a marker:
"execute" is at the end of a long line.
the mode. Basically like fixed, but fixed from the first indented line.
Am I missing a combination or a feature?
Thanks.
The text was updated successfully, but these errors were encountered: