]> git.lizzy.rs Git - rust.git/blobdiff - editors/code/language-configuration.json
Auto merge of #13545 - Veykril:adjustment-hints, r=Veykril
[rust.git] / editors / code / language-configuration.json
index 855b9966bb50a31c761dfe1b616f5b03a436ca03..b1ee0843e3e69d0d13c9e660aad3891c8d2bea5f 100644 (file)
@@ -1,19 +1,18 @@
 {
     "comments": {
         "lineComment": "//",
-        "blockComment": [ "/*", "*/" ]
+        "blockComment": ["/*", "*/"]
     },
     "brackets": [
         ["{", "}"],
         ["[", "]"],
-        ["(", ")"],
-        ["<", ">"]
+        ["(", ")"]
     ],
     "colorizedBracketPairs": [
-               ["{", "}"],
-               ["[", "]"],
-               ["(", ")"]
-       ],
+        ["{", "}"],
+        ["[", "]"],
+        ["(", ")"]
+    ],
     "autoClosingPairs": [
         { "open": "{", "close": "}" },
         { "open": "[", "close": "]" },
@@ -28,8 +27,7 @@
         ["(", ")"],
         ["<", ">"],
         ["\"", "\""],
-        ["'", "'"],
-        ["|", "|"]
+        ["'", "'"]
     ],
     "indentationRules": {
         "increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",