From 0083e4e0dbc5b949a3cf4cd8b64af4f698ed9d33 Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Fri, 19 Jun 2026 14:21:52 -0400 Subject: [PATCH] fix(scan): Fixed a bug preventing TUI from working. --- cli.odin | 4 ++-- docs/cli/envr.md | 4 ++-- prompt.odin | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli.odin b/cli.odin index b32d74f..5410a3e 100644 --- a/cli.odin +++ b/cli.odin @@ -217,11 +217,11 @@ find_command :: proc(name: string) -> (CommandInfo, bool) { write_usage :: proc(w: io.Writer) { fmt.wprintf( w, - `envr keeps your .env synced to a local, age encrypted database. + `envr keeps your .env synced to a local, encrypted database. Is a safe and easy way to gather all your .env files in one place where they can easily be backed by another tool such as restic or git. -All your data is stored in ~/data.age +All your data is stored in ~/.envr/data.envr Getting started is easy: diff --git a/docs/cli/envr.md b/docs/cli/envr.md index 71141c5..96fb938 100644 --- a/docs/cli/envr.md +++ b/docs/cli/envr.md @@ -4,11 +4,11 @@ Manage your .env files. ### Synopsis -envr keeps your .env synced to a local, age encrypted database. +envr keeps your .env synced to a local, encrypted database. Is a safe and eay way to gather all your .env files in one place where they can easily be backed by another tool such as restic or git. -All your data is stored in ~/data.age +All your data is stored in ~/.envr/data.envr Getting started is easy: diff --git a/prompt.odin b/prompt.odin index e39c33a..0ccd525 100644 --- a/prompt.odin +++ b/prompt.odin @@ -36,7 +36,7 @@ multi_select :: proc( return } - selected = make([dynamic]bool, 0, len(options)) + selected = make([dynamic]bool, len(options)) cursor: int = 0 scroll_offset: int = 0