From f5c2e4b49e5126d29cbee05733072f7ed769304e Mon Sep 17 00:00:00 2001 From: CharlesChen0823 Date: Sun, 21 Sep 2025 02:01:55 +0800 Subject: [PATCH] vim: Remove duplicate bracket pair (#38560) remove depulicate code, this same with line: 556-562 Release Notes: - N/A --- crates/vim/src/surrounds.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/vim/src/surrounds.rs b/crates/vim/src/surrounds.rs index 5e25b08dd8656887b2013df52a5e7d62fce5dbe0..3ce4e6a2e94b1090714a81195c5562374efb95eb 100644 --- a/crates/vim/src/surrounds.rs +++ b/crates/vim/src/surrounds.rs @@ -602,13 +602,6 @@ fn all_support_surround_pair() -> Vec { surround: true, newline: false, }, - BracketPair { - start: "{".into(), - end: "}".into(), - close: true, - surround: true, - newline: false, - }, BracketPair { start: "<".into(), end: ">".into(),