edfff680b3
TUI fullscreen con dos tabs: Pipelines (lista filtrable del registry, lanzamiento como subproceso, registro automático en operations.db) y History (historial de ejecuciones con status, duración y detalles). Incluye launcher.sh en la raíz para ejecución rápida. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
263 B
Go
15 lines
263 B
Go
package views
|
|
|
|
// Navigation key constants.
|
|
const (
|
|
KeyQuit = "ctrl+c"
|
|
KeyEsc = "esc"
|
|
KeyBack = "0"
|
|
KeyTab = "tab"
|
|
)
|
|
|
|
// IsBack returns true if the key should trigger back navigation.
|
|
func IsBack(key string) bool {
|
|
return key == KeyEsc || key == KeyBack
|
|
}
|