Open
Description
In #110, I requested code similar to the following;
if exists('g:loaded_css_color')
finish
endif
let g:loaded_css_color = 1
to allow globally disabling this plugin from the user config files.
There seem to be two options:
- If
g:loaded_css_color
is set, define the autoload functions to do nothing (like in the version check), so that all other scripts will be sourced but do nothing. - Check for
g:loaded_css_color
in all scripts.
If there is another/better way, I'd love to hear about it.