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.
1 parent 3049f47 commit 52640aeCopy full SHA for 52640ae
src/python.ts
@@ -76,11 +76,12 @@ export const pythonLanguage = LRLanguage.define({
76
"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression": delimitedIndent({closing: ")"}),
77
"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression": delimitedIndent({closing: "}"}),
78
"ArrayExpression ArrayComprehensionExpression": delimitedIndent({closing: "]"}),
79
+ MemberExpression: cx => cx.baseIndent + cx.unit,
80
"String FormatString": () => null,
81
Script: context => {
82
let inner = innerBody(context)
83
return (inner && indentBody(context, inner)) ?? context.continue()
- }
84
+ },
85
}),
86
87
foldNodeProp.add({
0 commit comments