From 31049a53ddc2856ca3232164c092928efa1e6297 Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Tue, 25 Nov 2025 18:07:23 -0500 Subject: [PATCH] Update help doc --- src/ui.rs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/ui.rs b/src/ui.rs index df721af..c60e754 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -346,10 +346,31 @@ fn render_config_help(frame: &mut Frame, app: &App) { " When true, only allows projects from the 'projects' list", " When false, any project name can be used", "", + "multi_column: true/false", + " Default: true", + " When true, sections with many items display in two columns", + " When false, always use single column with scrolling", + "", + "show_permanent: true/false", + " Default: true", + " Show the 'Permanent Items' section", + "", + "show_recurring: true/false", + " Default: true", + " Show the 'Recurring Items' section", + "", + "show_recent: true/false", + " Default: true", + " Show the 'Ad-Hoc Items' section", + "", "Example configuration:", "---", "show_help_hint: true", "strict_projects: false", + "multi_column: true", + "show_permanent: true", + "show_recurring: true", + "show_recent: false", "projects:", " - work", " - personal",