Skip to content

Commit

Permalink
Better Icon for Enter on PC
Browse files Browse the repository at this point in the history
  • Loading branch information
youseeus authored Sep 20, 2022
1 parent eb0fe11 commit dbd3780
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions projects/ngneat/hotkeys/src/lib/hotkeys-shortcut.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,22 @@ const symbols = {
left: '←',
right: '→',
up: '↑',
down: '↓',
enter: '⌤'
down: '↓'
};

const appleSymbols = {
meta: '⌘',
altleft: '⌥',
control: '⌃',
escape: '⎋'
escape: '⎋',
enter: '⌤'
};

const pcSymbols = {
control: 'Ctrl',
altleft: 'Alt',
escape: 'Esc'
escape: 'Esc',
enter: 'Enter'
};

@Pipe({
Expand Down

0 comments on commit dbd3780

Please sign in to comment.