StartifyHeader region: fix off-by-one
This commit is contained in:
parent
687ee156f8
commit
9e69cb28f9
|
@ -18,7 +18,7 @@ execute 'syntax match StartifySlash /\'. s:sep .'/'
|
||||||
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
|
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
|
||||||
|
|
||||||
if exists('g:startify_custom_header')
|
if exists('g:startify_custom_header')
|
||||||
execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_custom_header) + 1) .'l/'
|
execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_custom_header) + 2) .'l/'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
highlight link StartifyHeader Normal
|
highlight link StartifyHeader Normal
|
||||||
|
|
Loading…
Reference in a new issue