Skip to content

Commit

Permalink
fix: keybinds that cause just don't work
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Jun 6, 2024
1 parent 8038b15 commit df6eb85
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cmd/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ func (m Model) handleKeys(msg tea.KeyMsg) (Model, tea.Cmd) {
case "enter":
m = m.loadSearchValues()

case "ctrl+c":
case "esc":
case "/":
case "ctrl+c", "esc", "/":
m = m.loadContent(m.table.Cursor())
m.table.Focus()
m.filter.Blur()
Expand Down

0 comments on commit df6eb85

Please sign in to comment.