From 752f77a426730a479633167073e8c8c736287cde Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 21 Dec 2015 16:47:41 +0800 Subject: [PATCH] add '<':'>' to g:AutoPairs Signed-off-by: Justin --- plugin/auto-pairs.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/auto-pairs.vim b/plugin/auto-pairs.vim index 0ffaf9a..c0818e2 100644 --- a/plugin/auto-pairs.vim +++ b/plugin/auto-pairs.vim @@ -13,7 +13,7 @@ end let g:AutoPairsLoaded = 1 if !exists('g:AutoPairs') - let g:AutoPairs = {'(':')', '[':']', '{':'}',"'":"'",'"':'"', '`':'`'} + let g:AutoPairs = {'(':')', '[':']', '{':'}', '<':'>', "'":"'",'"':'"', '`':'`'} end if !exists('g:AutoPairsParens')