vim: Remove duplicate bracket pair (#38560)

CharlesChen0823 created

remove depulicate code, this same with line: 556-562

Release Notes:

- N/A

Change summary

crates/vim/src/surrounds.rs | 7 -------
1 file changed, 7 deletions(-)

Detailed changes

crates/vim/src/surrounds.rs 🔗

@@ -602,13 +602,6 @@ fn all_support_surround_pair() -> Vec<BracketPair> {
             surround: true,
             newline: false,
         },
-        BracketPair {
-            start: "{".into(),
-            end: "}".into(),
-            close: true,
-            surround: true,
-            newline: false,
-        },
         BracketPair {
             start: "<".into(),
             end: ">".into(),