let &t_RB="\e]11;?\e\\" " set background option automatically
colorscheme gruvbox
...gruvbox overrides background to light. The issue appears to be this bit, added in issue #7 :
if s:is_dark
set background=dark
else
set background=light
endif
...presumably because the t_RB machinery does not run until after this does, by which time it’s too late. For what it’s worth, I do not see issue #7 come back in macOS Terminal.app (256 color) after removing it.
If I write this in my vimrc:
...gruvbox overrides
background
tolight
. The issue appears to be this bit, added in issue #7 :...presumably because the
t_RB
machinery does not run until after this does, by which time it’s too late. For what it’s worth, I do not see issue #7 come back in macOS Terminal.app (256 color) after removing it.