From 4891a04258c33f018369303c3e8f56cd5ca89a14 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Sat, 11 Dec 2010 00:10:21 -0600 Subject: [PATCH] Fix double space. --- autoload/delimitMate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 3cf959f..f567a25 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -473,7 +473,7 @@ endfunction " }}} " Tools: {{{ function! delimitMate#TestMappings() "{{{ let options = sort(keys(delimitMate#OptionsList())) - let optoutput = ['delimitMate Report', '==================', '', '* Options: ( ) default, (g) global, (b) buffer',''] + let optoutput = ['delimitMate Report', '==================', '', '* Options: ( ) default, (g) global, (b) buffer',''] for option in options exec 'call add(optoutput, ''('.(exists('b:delimitMate_'.option) ? 'b' : exists('g:delimitMate_'.option) ? 'g' : ' ').') delimitMate_''.option.'' = ''.string(b:_l_delimitMate_'.option.'))' endfor