The full list is disabled by default. To enable the full list simply add the following code to your child theme:
add_action( 'init', 'remove_my_action');
function remove_my_action() {
remove_action( 'vc_after_init','vc_after_init_actions', 20 ); }
}