Create the Normal highlight if it doesn't exist

This can happen in versions of vim built without X support, like vim.nox
in Debian.

Fixes #9
This commit is contained in:
Matt Wozniski 2013-07-26 23:41:55 -04:00
parent 7f0186d6bc
commit 7981dac51d

View File

@ -378,6 +378,11 @@ endfunction
" {>1} Top-level control
" If the normal group doesn't exist yet, create it
if hlID('Normal') == 0
hi clear Normal
endif
" Cache the highlight ID of the normal group; it's used often and won't change
let s:hlid_normal = hlID('Normal')