Skip to content

Commit

Permalink
fix: use the enter character \u21a9 (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaoei authored May 20, 2022
1 parent a87accd commit 7fd02ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/keybinding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const KeyCodeString: Partial<{ [key in KeyCode]: string }> = {
[KeyCode.Unknown]: '',
[KeyCode.Backspace]: '⌫',
[KeyCode.Tab]: '⇥',
[KeyCode.Enter]: '↩',
[KeyCode.Enter]: '↩',
[KeyCode.PageUp]: '↑',
[KeyCode.PageDown]: '↓',
[KeyCode.Digit0]: '0',
Expand Down

0 comments on commit 7fd02ab

Please sign in to comment.