From 49044099dd9df0ad1a2de6dc54a4a5df2f898580 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Sat, 11 Dec 2010 00:07:19 -0600 Subject: [PATCH] Change format of report. --- autoload/delimitMate.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 745c4a3..96c593e 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -473,9 +473,9 @@ endfunction " }}} " Tools: {{{ function! delimitMate#TestMappings() "{{{ let options = sort(keys(delimitMate#OptionsList())) - let optoutput = ['delimitMate Report', '==================', '', '* Options: (-) unset, (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.'))' + exec 'call add(optoutput, ''('.(exists('b:delimitMate_'.option) ? 'b' : exists('g:delimitMate_'.option) ? 'g' : ' ').') delimitMate_''.option.'' = ''.string(b:_l_delimitMate_'.option.'))' endfor call append(line('$'), optoutput + ['--------------------',''])