You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This plugin requires ① a Vim 7 or higher ② with syntax support
③ capable of displaying enough colours. With the conditional as
previously written, has('syntax') being true would short-circuit out
of checking for enough colours, effectively removing the check for ③.
Factoring out the negations in the conditional turns the NORs into ANDs,
which makes its structure much more obvious.
This fixes#110.
0 commit comments