diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-01-18 07:55:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-18 07:55:56 +0000 |
| commit | ac8806df0846ccc62ee396f38de41310ed1d9934 (patch) | |
| tree | e768e572c99f47d5daa22e1998eabb99514bdadb | |
| parent | 477b654f4f4896dab766a398cf1f2955146088d5 (diff) | |
| parent | c18ee35ce84ea42aa16f9d9754f628b5cfe2e94e (diff) | |
| download | rust-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.json | 3 |
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": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$", |
