diff --git a/grammars/tree-sitter-python.cson b/grammars/tree-sitter-python.cson index 4490d74..09dea81 100644 --- a/grammars/tree-sitter-python.cson +++ b/grammars/tree-sitter-python.cson @@ -56,6 +56,16 @@ folds: [ { start: {type: '{', index: 0} end: {type: '}', index: -1} + }, + { + type: 'string' + start: {type: '"\\"\\"\\""', index: 0} + end: {type: '"\\"\\"\\""', index: -1} + }, + { + type: 'string' + start: {type: '"\\\'\\\'\\\'"', index: 0} + end: {type: '"\\\'\\\'\\\'"', index: -1} } ]