From 8129727c220d9315e0916e040fb3b99145f3b59e Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Wed, 19 Feb 2020 18:34:36 -0500 Subject: [PATCH] Bind to shift+tab to cycle through fields in reverse --- examples/inputs/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/inputs/main.go b/examples/inputs/main.go index de9289c..1ccad94 100644 --- a/examples/inputs/main.go +++ b/examples/inputs/main.go @@ -54,7 +54,7 @@ func update(msg tea.Msg, model tea.Model) (tea.Model, tea.Cmd) { // Cycle between inputs case "tab": fallthrough - case "esc": // note: shift+tab sends an escape + case "shift+tab": fallthrough case "enter": fallthrough