Skip to content

Commit

Permalink
allow escape key
Browse files Browse the repository at this point in the history
  • Loading branch information
lekoala committed Jan 20, 2022
1 parent e46c822 commit d5c0027
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,11 @@ class Tags {
this.#hideSuggestions();
}
break;
case 27:
case "Escape":
// We may wish to not use the suggestions
this.#hideSuggestions();
break;
}
});
}
Expand Down

0 comments on commit d5c0027

Please sign in to comment.