diff --git a/mlir/utils/vscode/language-configuration.json b/mlir/utils/vscode/language-configuration.json index 8a34cc83a53cb..ded00a40bab70 100644 --- a/mlir/utils/vscode/language-configuration.json +++ b/mlir/utils/vscode/language-configuration.json @@ -5,18 +5,27 @@ "brackets": [ ["{", "}"], ["[", "]"], - ["(", ")"] + ["(", ")"], + ["<", ">"] + ], + "colorizedBracketPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["<", ">"] ], "autoClosingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], + ["<", ">"], ["\"", "\""] ], "surroundingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], + ["<", ">"], ["\"", "\""] ] } diff --git a/mlir/utils/vscode/package.json b/mlir/utils/vscode/package.json index 0f419279f2346..2087330f4a1ad 100644 --- a/mlir/utils/vscode/package.json +++ b/mlir/utils/vscode/package.json @@ -2,7 +2,7 @@ "name": "vscode-mlir", "displayName": "MLIR", "description": "MLIR Language Extension", - "version": "0.0.12", + "version": "0.0.13", "publisher": "llvm-vs-code-extensions", "homepage": "https://mlir.llvm.org/", "icon": "icon.png",