src/internal/ui/zoxide/README.md
This is for the Zoxide navigation modal of superfile
Handles user input for zoxide queries, integrates with the go-zoxide library, and returns navigation actions to the model.
The zoxide modal is opened by pressing the z hotkey and allows users to:
Model: Main zoxide modal state and behaviorHandleUpdate(): Processes keyboard input and zoxide queriesRender(): Displays search interface and suggestions*zoxidelib.Client for zoxide database queriesCurrent test coverage: 0%
No tests have been implemented yet for this package. The package is functional and integrated, but lacks unit test coverage.
cd /path/to/ui/zoxide
# Basic coverage (when tests exist)
go test -cover
# HTML report (when tests exist)
go test -coverprofile=coverage.out && go tool cover -html=coverage.out -o coverage.html