From 7e10cc3b00bf5b20f2f48a703ed99d13fc475757 Mon Sep 17 00:00:00 2001 From: Miao Jiang Date: Tue, 22 Jan 2019 16:16:40 +0800 Subject: [PATCH] Support ``` ''' """ by default, #234 --- 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 72a1424..e72b2e5 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:AutoPairsMapBS')