dashboard / erock/vaxis / feat(vxfw.list): add arrow key events #50 rss

accepted · opened on 2025-03-12T16:16:57Z by erock
Help
checkout latest patchset:
ssh pr.pico.sh print pr-50 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 50
add review to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add --review 50
accept PR:
ssh pr.pico.sh pr accept 50
close PR:
ssh pr.pico.sh pr close 50

Logs

erock created pr with ps-108 on 2025-03-12T16:16:57Z
erock changed status on 2025-03-13T14:53:20Z {"status":"accepted"}

Patchsets

ps-108 by erock on 2025-03-12T16:16:57Z

Patchset ps-108

feat(vxfw.list): add arrow key events

Eric Bower
2025-03-12T16:16:12Z
Back to top

feat(vxfw.list): add arrow key events

vxfw/list/list.go link
+2 -2
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/vxfw/list/list.go b/vxfw/list/list.go
index a9bf5ef..5c29a18 100644
--- a/vxfw/list/list.go
+++ b/vxfw/list/list.go
@@ -60,14 +60,14 @@ func (d *Dynamic) CaptureEvent(ev vaxis.Event) (vxfw.Command, error) {
 	// We capture key events
 	switch ev := ev.(type) {
 	case vaxis.Key:
-		if ev.Matches('j') {
+		if ev.Matches('j') || ev.Matches(vaxis.KeyDown) {
 			cmd := d.NextItem()
 			if cmd == nil {
 				return nil, nil
 			}
 			return vxfw.ConsumeAndRedraw(), nil
 		}
-		if ev.Matches('k') {
+		if ev.Matches('k') || ev.Matches(vaxis.KeyUp) {
 			cmd := d.PrevItem()
 			if cmd == nil {
 				return nil, nil