summaryrefslogtreecommitdiff
path: root/src/til.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/til.c')
-rw-r--r--src/til.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/til.c b/src/til.c
index d006c08..2fa0978 100644
--- a/src/til.c
+++ b/src/til.c
@@ -279,7 +279,13 @@ int til_module_setup(const til_settings_t *settings, til_setting_t **res_setting
int r;
for (unsigned i = 0, j = 0; i < nelems(modules); i++) {
- if ((modules[i]->flags & TIL_MODULE_EXPERIMENTAL))
+ /* XXX: This only skips experimental modules when no module setting was pre-specified,
+ * which allows accessing the experimental modules via the CLI without showing them
+ * in the interactive setup where the desc provides the displayed list of values before
+ * the module setting gets added. It seems a big kludge-y and fragile, but works well
+ * enough for now to get at the experimental modules during testing/development.
+ */
+ if (!name && (modules[i]->flags & TIL_MODULE_EXPERIMENTAL))
continue;
values[j] = modules[i]->name;
© All Rights Reserved