zsh.cpp: allow completion of submodules as well for module-type options

(this allows -A and -V to complete the dummy module
parent fbc81b72
...@@ -158,13 +158,13 @@ mmap PrintModuleList( vlc_t *p_vlc ) ...@@ -158,13 +158,13 @@ mmap PrintModuleList( vlc_t *p_vlc )
/* Exclude empty plugins (submodules don't have config options, they /* Exclude empty plugins (submodules don't have config options, they
* are stored in the parent module) */ * are stored in the parent module) */
if( p_module->b_submodule )
continue;
if( strcmp( p_module->psz_object_name, "main" ) ) if( strcmp( p_module->psz_object_name, "main" ) )
{ {
modules_cap.insert( mpair( p_module->psz_capability, modules_cap.insert( mpair( p_module->psz_capability,
p_module->psz_object_name ) ); p_module->psz_object_name ) );
if( p_module->b_submodule )
continue;
printf( "%s ", p_module->psz_object_name ); printf( "%s ", p_module->psz_object_name );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment