From 5a84c1a746cad05288a7bf9c7e0739c1ac56b420 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Sun, 15 Apr 2012 20:16:44 -0400 Subject: [PATCH] Update `:DelimitMateTest` for eol_marker. --- autoload/delimitMate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 60d630e..00ae6ed 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -621,7 +621,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, 'smart_matchpairs' : '\w', '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' : '\w', 'balance_matchpairs' : 0, 'excluded_regions' : 'Comment', 'excluded_ft' : '', 'eol_marker': '', 'apostrophes' : ''} endfunction " delimitMate#OptionsList }}} "}}}