From eb778be64b15ebf26c4738c9530cf454e834b579 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Sat, 6 Nov 2010 22:47:05 -0500 Subject: [PATCH] Update OptionsList(). --- autoload/delimitMate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index cdb77df..c4c7ca4 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -531,7 +531,7 @@ function! delimitMate#TestMappings() "{{{ endfunction "}}} function! delimitMate#OptionsList() "{{{ - return {'autoclose' : 1,'matchpairs': &matchpairs, 'quotes' : '" '' `', 'nesting_quotes' : [], 'expand_cr' : 0, 'expand_space' : 0, 'smart_quotes' : 1, 'balance_matchpairs' : 0, 'excluded_regions' : 'Comment', 'excluded_ft' : '', 'apostrophes' : ''} + return {'autoclose' : 1,'matchpairs': &matchpairs, 'quotes' : '" '' `', 'nesting_quotes' : [], 'expand_cr' : 0, 'expand_space' : 0, 'smart_quotes' : 1, 'smart_matchpairs' : 1, 'balance_matchpairs' : 0, 'excluded_regions' : 'Comment', 'excluded_ft' : '', 'apostrophes' : ''} endfunction " delimitMate#OptionsList }}} "}}}