8000
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 8e5e499 commit d9f9b1aCopy full SHA for d9f9b1a
src/python.ts
@@ -34,6 +34,7 @@ export const pythonLanguage = LRLanguage.define({
34
"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression": delimitedIndent({closing: ")"}),
35
"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression": delimitedIndent({closing: "}"}),
36
"ArrayExpression ArrayComprehensionExpression": delimitedIndent({closing: "]"}),
37
+ "String FormatString": () => null,
38
Script: context => {
39
if (context.pos + /\s*/.exec(context.textAfter)![0].length >= context.node.to) {
40
let endBody = null
0 commit comments