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 }