Feed the filename generation line module names from a $zmodules array. This allows for:
Load order determination
Load control via excluding modules from the array
Load order is important for modules like completion and syntax-highlighting that depend on settings introduced by other modules. This can not be achieved currently, as straight filename generation produces a strictly lexicographical load order. Alternatively, modules could just be named like ##-name similar to some linux rc files, but I don't exactly find this method to be "clean".
Feed the filename generation line module names from a
$zmodules
array. This allows for:Load order is important for modules like
completion
andsyntax-highlighting
that depend on settings introduced by other modules. This can not be achieved currently, as straight filename generation produces a strictly lexicographical load order. Alternatively, modules could just be named like##-name
similar to some linux rc files, but I don't exactly find this method to be "clean".