mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-14 19:20:28 +03:00
* Add ESC btn to toolbar to quickly exit formatting * add horizontal scroll to toolbar item * make editor toolbar usable in touch device * fix editor hotkeys not working in window * remove unused import
9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
export enum KeySymbol {
|
|
Command = '⌘',
|
|
Shift = '⇧',
|
|
Option = '⌥',
|
|
Control = '⌃',
|
|
Hyper = '✦',
|
|
Super = '❖',
|
|
Escape = '⎋',
|
|
}
|