We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3080b99 commit eabd222Copy full SHA for eabd222
1 file changed
cli/src/commonMain/kotlin/com/linuxcommandlibrary/nativecli/screens/BasicCategoriesScreen.kt
@@ -56,7 +56,7 @@ class BasicCategoriesScreen : Screen {
56
ScreenResult.Stay
57
}
58
59
- "Enter" -> {
+ "Enter", "l" -> {
60
val selected = list.selectedValue
61
if (selected != null) {
62
ScreenResult.Navigate(BasicDetailScreen(selected.id, selected.title))
@@ -65,7 +65,7 @@ class BasicCategoriesScreen : Screen {
65
66
67
68
- "q", "Escape" -> ScreenResult.Back
+ "q", "Escape", "h" -> ScreenResult.Back
69
70
else -> {
71
// Handle number keys for direct selection
0 commit comments