File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,11 @@ function! indent_guides#enable()
50
50
51
51
" define the higlight patterns and add to matches list
52
52
if g: indent_guides_space_guides
53
- let l: soft_pattern = indent_guides#indent_highlight_pattern (
54
- \ g: indent_guides_soft_pattern , l: column_start , s: guide_size )
53
+ let l: soft_pattern = indent_guides#indent_highlight_pattern (g: indent_guides_soft_pattern , l: column_start , s: guide_size )
55
54
call add (w: indent_guides_matches , matchadd (l: group , l: soft_pattern ))
56
55
end
57
56
if g: indent_guides_tab_guides
58
- let l: hard_pattern = indent_guides#indent_highlight_pattern (
59
- \ ' \t' , l: column_start , s: indent_size )
57
+ let l: hard_pattern = indent_guides#indent_highlight_pattern (' \t' , l: column_start , s: indent_size )
60
58
call add (w: indent_guides_matches , matchadd (l: group , l: hard_pattern ))
61
59
end
62
60
endfor
You can’t perform that action at this time.
0 commit comments