Skip to content

Commit

Permalink
Merge pull request #418 from DopplerHQ/andre/fix-editing-navigation
Browse files Browse the repository at this point in the history
Fix navigating within secret values
  • Loading branch information
apazzolini authored Jul 10, 2023
2 parents fc0fcbf + 257fd0f commit c667d71
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions pkg/tui/gui/cmp_secrets.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,6 @@ func CreateSecretsComponent(gui *Gui) (*SecretsComponent, error) {
gui.bindKey("Secrets", 'l', gocui.ModNone, func(v *gocui.View) error {
return cmp.ToggleNameValue()
})

gui.bindKey("Secrets", gocui.KeyArrowDown, gocui.ModNone, func(v *gocui.View) error {
return cmp.SelectDelta(1)
})
gui.bindKey("Secrets", gocui.KeyArrowUp, gocui.ModNone, func(v *gocui.View) error {
return cmp.SelectDelta(-1)
})
gui.bindKey("Secrets", gocui.KeyArrowLeft, gocui.ModNone, func(v *gocui.View) error {
return cmp.ToggleNameValue()
})
gui.bindKey("Secrets", gocui.KeyArrowRight, gocui.ModNone, func(v *gocui.View) error {
return cmp.ToggleNameValue()
})

gui.bindKey("Secrets", gocui.KeyTab, gocui.ModNone, func(v *gocui.View) error {
return cmp.ToggleNameValue()
})
Expand Down

0 comments on commit c667d71

Please sign in to comment.