From 90d07a68be3106b2c205931321c67342e5884a97 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Fri, 21 Jun 2013 22:42:41 -0400 Subject: [PATCH] Update options list. --- autoload/delimitMate.vim | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 64b93f6..9f7afda 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -689,11 +689,23 @@ function! delimitMate#TestMappings() "{{{ endfunction "}}} function! delimitMate#OptionsList() "{{{ - return {'autoclose' : 1,'matchpairs': &matchpairs, 'quotes' : '" '' `', - \ 'nesting_quotes' : [], 'expand_cr' : 0, 'expand_space' : 0, - \ 'smart_quotes' : 1, 'smart_matchpairs' : '\w', - \ 'balance_matchpairs' : 0, 'excluded_regions' : 'Comment', - \ 'excluded_ft' : '', 'eol_marker': '', 'apostrophes' : ''} + return { + \ 'apostrophes' : '', + \ 'autoclose' : 1, + \ 'balance_matchpairs' : 0, + \ 'jump_expansion' : 0, + \ 'eol_marker' : '', + \ 'excluded_ft' : '', + \ 'excluded_regions' : 'Comment', + \ 'expand_cr' : 0, + \ 'expand_space' : 0, + \ 'matchpairs' : &matchpairs, + \ 'nesting_quotes' : [], + \ 'offByDefault' : 0 + \ 'quotes' : '" '' `', + \ 'smart_matchpairs' : '\w', + \ 'smart_quotes' : 1, + } endfunction " delimitMate#OptionsList }}} "}}}