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 04a5026 commit 9b6178bCopy full SHA for 9b6178b
1 file changed
cli/src/commonMain/kotlin/com/linuxcommandlibrary/nativecli/screens/TipsScreen.kt
@@ -56,7 +56,7 @@ class TipsScreen : Screen {
56
ScreenResult.Stay
57
}
58
59
- "Enter" -> {
+ "Enter", "l" -> {
60
val selected = list.selectedValue
61
if (selected != null) {
62
ScreenResult.Navigate(TipDetailScreen(selected))
@@ -65,7 +65,7 @@ class TipsScreen : 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