// Imported from: // https://github.com/samuelcolvin/jinjahtml-vscode/blob/b8fe444cbd838afb4962bb2446e67c85e0443675/language-configuration.json { "comments": { // symbols used for start and end a block comment. Remove this entry if your language does not support block comments "blockComment": [ "{#", "#}" ] }, // symbols used as brackets "brackets": [ ["{", "}"], ["[", "]"], ["(", ")"] ], // symbols that are auto closed when typing "autoClosingPairs": [ ["[", "]"], ["(", ")"], ["\"", "\""], ["'", "'"], ["{#", "#}"], ["{{", "}}"], ["{%", "%}"] ], // symbols that that can be used to surround a selection "surroundingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], ["\"", "\""], ["'", "'"] ] }