From 13e52d42aee98f95ffd107ede3c2bc30777d7382 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Fri, 2 Jan 2015 12:08:16 -0500 Subject: [PATCH] Do not consider quotes for smart_matchpairs. Closes #200. --- plugin/delimitMate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/delimitMate.vim b/plugin/delimitMate.vim index 5c32b5d..5974e48 100644 --- a/plugin/delimitMate.vim +++ b/plugin/delimitMate.vim @@ -103,7 +103,7 @@ function! s:init() "{{{ " jump_expansion call s:option_init("jump_expansion", 0) " smart_matchpairs - call s:option_init("smart_matchpairs", '^\%(\w\|\!\|£\|\$\|_\|["'']\s*\S\)') + call s:option_init("smart_matchpairs", '^\%(\w\|\!\|£\|\$\|_\)') " smart_quotes " XXX: backward compatibility. Ugly, should go the way of the dodo soon. let quotes = escape(join(s:g('quotes_list'), ''), '\-^[]')