From 6637da84360445d9582ed8a842bc475f0d9f7449 Mon Sep 17 00:00:00 2001 From: Nate Kane Date: Sun, 17 Apr 2016 21:07:43 +1000 Subject: [PATCH] Formatting --- autoload/indent_guides.vim | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/autoload/indent_guides.vim b/autoload/indent_guides.vim index 3843a15..482d0ad 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -50,13 +50,11 @@ function! indent_guides#enable() " define the higlight patterns and add to matches list if g:indent_guides_space_guides - let l:soft_pattern = indent_guides#indent_highlight_pattern( - \ g:indent_guides_soft_pattern, l:column_start, s:guide_size) + let l:soft_pattern = indent_guides#indent_highlight_pattern(g:indent_guides_soft_pattern, l:column_start, s:guide_size) call add(w:indent_guides_matches, matchadd(l:group, l:soft_pattern)) end if g:indent_guides_tab_guides - let l:hard_pattern = indent_guides#indent_highlight_pattern( - \ '\t', l:column_start, s:indent_size) + let l:hard_pattern = indent_guides#indent_highlight_pattern('\t', l:column_start, s:indent_size) call add(w:indent_guides_matches, matchadd(l:group, l:hard_pattern)) end endfor