Skip to content

Commit 822adc6

Browse files
authored
feat: Add shift+tab as alias for tab to switch panels (#109)
Adds `shift+tab` as an additional key binding for switching panels, so it behaves identically to `tab`. Fixes #108
1 parent 4a31deb commit 822adc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/ui/keys.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ var keys = &KeyMap{
7878
key.WithHelp("y", "copy file path"),
7979
),
8080
SwitchPanel: key.NewBinding(
81-
key.WithKeys("tab"),
81+
key.WithKeys("tab", "shift+tab"),
8282
key.WithHelp("tab", "switch panel"),
8383
),
8484
OpenInEditor: key.NewBinding(

0 commit comments

Comments
 (0)