restore delete shortcut

mine
derailed 2023-11-11 23:16:14 -07:00
parent 7af4b2d890
commit eb7460e8d8
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ func (b *Browser) refreshActions() {
aa[ui.KeyE] = ui.NewKeyAction("Edit", b.editCmd, true)
}
if client.Can(b.meta.Verbs, "delete") {
aa[ui.KeyZ] = ui.NewKeyAction("Delete", b.deleteCmd, true)
aa[tcell.KeyCtrlD] = ui.NewKeyAction("Delete", b.deleteCmd, true)
}
}
}