StartifyHeader region: fix off-by-one

This commit is contained in:
Marco Hinz 2013-07-11 14:05:22 +02:00
parent 687ee156f8
commit 9e69cb28f9

View file

@ -18,7 +18,7 @@ execute 'syntax match StartifySlash /\'. s:sep .'/'
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
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
highlight link StartifyHeader Normal