From 1ed5220ae987ab5680bd6326a2896c6f043a74b3 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sat, 21 Aug 2021 01:02:19 +0800 Subject: [PATCH] Do not auto-pair <> for C++ --- after/ftplugin/cpp.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/after/ftplugin/cpp.vim b/after/ftplugin/cpp.vim index 4779a0e..170aa5f 100644 --- a/after/ftplugin/cpp.vim +++ b/after/ftplugin/cpp.vim @@ -39,3 +39,6 @@ function s:create_term_buf(_type, size) abort endif execute 'resize ' . a:size endfunction + +" For delimitMate +let b:delimitMate_matchpairs = "(:),[:],{:}"