mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 10:38:33 -04:00
fix(scan): Fixed a bug preventing TUI from working.
This commit is contained in:
4
cli.odin
4
cli.odin
@@ -217,11 +217,11 @@ find_command :: proc(name: string) -> (CommandInfo, bool) {
|
|||||||
write_usage :: proc(w: io.Writer) {
|
write_usage :: proc(w: io.Writer) {
|
||||||
fmt.wprintf(
|
fmt.wprintf(
|
||||||
w,
|
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
|
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.
|
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:
|
Getting started is easy:
|
||||||
|
|
||||||
|
|||||||
@@ -4,11 +4,11 @@ Manage your .env files.
|
|||||||
|
|
||||||
### Synopsis
|
### 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
|
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.
|
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:
|
Getting started is easy:
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ multi_select :: proc(
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
selected = make([dynamic]bool, 0, len(options))
|
selected = make([dynamic]bool, len(options))
|
||||||
cursor: int = 0
|
cursor: int = 0
|
||||||
scroll_offset: int = 0
|
scroll_offset: int = 0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user