Formatting
This commit is contained in:
parent
67f3020a31
commit
6637da8436
@ -50,13 +50,11 @@ function! indent_guides#enable()
|
|||||||
|
|
||||||
" define the higlight patterns and add to matches list
|
" define the higlight patterns and add to matches list
|
||||||
if g:indent_guides_space_guides
|
if g:indent_guides_space_guides
|
||||||
let l:soft_pattern = indent_guides#indent_highlight_pattern(
|
let l:soft_pattern = indent_guides#indent_highlight_pattern(g:indent_guides_soft_pattern, l:column_start, s:guide_size)
|
||||||
\ g:indent_guides_soft_pattern, l:column_start, s:guide_size)
|
|
||||||
call add(w:indent_guides_matches, matchadd(l:group, l:soft_pattern))
|
call add(w:indent_guides_matches, matchadd(l:group, l:soft_pattern))
|
||||||
end
|
end
|
||||||
if g:indent_guides_tab_guides
|
if g:indent_guides_tab_guides
|
||||||
let l:hard_pattern = indent_guides#indent_highlight_pattern(
|
let l:hard_pattern = indent_guides#indent_highlight_pattern('\t', l:column_start, s:indent_size)
|
||||||
\ '\t', l:column_start, s:indent_size)
|
|
||||||
call add(w:indent_guides_matches, matchadd(l:group, l:hard_pattern))
|
call add(w:indent_guides_matches, matchadd(l:group, l:hard_pattern))
|
||||||
end
|
end
|
||||||
endfor
|
endfor
|
||||||
|
Loading…
Reference in New Issue
Block a user