about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-01-18 07:55:56 +0000
committerGitHub <noreply@github.com>2022-01-18 07:55:56 +0000
commitac8806df0846ccc62ee396f38de41310ed1d9934 (patch)
treee768e572c99f47d5daa22e1998eabb99514bdadb
parent477b654f4f4896dab766a398cf1f2955146088d5 (diff)
parentc18ee35ce84ea42aa16f9d9754f628b5cfe2e94e (diff)
downloadrust-ac8806df0846ccc62ee396f38de41310ed1d9934.tar.gz
rust-ac8806df0846ccc62ee396f38de41310ed1d9934.zip
Merge #11310
11310: fix: remove pipe from surroundingPairs r=lnicola a=chrisprice

Closes https://github.com/rust-analyzer/rust-analyzer/issues/11192

Co-authored-by: Chris Price <price.c@gmail.com>
-rw-r--r--editors/code/language-configuration.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/editors/code/language-configuration.json b/editors/code/language-configuration.json
index 855b9966bb5..2d772952a81 100644
--- a/editors/code/language-configuration.json
+++ b/editors/code/language-configuration.json
@@ -28,8 +28,7 @@
         ["(", ")"],
         ["<", ">"],
         ["\"", "\""],
-        ["'", "'"],
-        ["|", "|"]
+        ["'", "'"]
     ],
     "indentationRules": {
         "increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",