Vim augroup for hitrail doesn't include s: in name

This caused errors when hitrail was enabled and you switched to a different
colorscheme.
This commit is contained in:
Dag Odenhall 2013-05-19 22:40:38 +02:00
parent 644d4db64e
commit 9e7ca21a5b

View file

@ -1003,7 +1003,7 @@ augroup SolarizedHiTrail
autocmd!
if g:solarized_hitrail==1
autocmd! Syntax * call s:SolarizedHiTrail()
autocmd! ColorScheme * if g:colors_name == "solarized" | call s:SolarizedHiTrail() | else | augroup! s:SolarizedHiTrail | endif
autocmd! ColorScheme * if g:colors_name == "solarized" | call s:SolarizedHiTrail() | else | augroup! SolarizedHiTrail | endif
endif
augroup END
" }}}