From c18ee35ce84ea42aa16f9d9754f628b5cfe2e94e Mon Sep 17 00:00:00 2001 From: Chris Price Date: Mon, 17 Jan 2022 20:08:39 +0000 Subject: [PATCH] fix: remove pipe from surroundingPairs Closes https://github.com/rust-analyzer/rust-analyzer/issues/11192 --- editors/code/language-configuration.json | 3 +-- 1 file changed, 1 insertion(+), 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": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",