mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 11:51:31 +03:00
6426478c97
Copying nodes: - Multiple nodes supported. - Node comments and user-specified colors included. - Google Sheets data can be pasted to produce a `Table` node, handled the same way as Excel data. # Important Notes - Fix E2E tests on OS X. - Add E2E and unit tests for clipboard. - Use the lexer to test text escaping; fix text escaping issues and inconsistencies.
5 lines
174 B
TypeScript
5 lines
174 B
TypeScript
import os from 'os'
|
|
|
|
export const CONTROL_KEY = os.platform() === 'darwin' ? 'Meta' : 'Control'
|
|
export const DELETE_KEY = os.platform() === 'darwin' ? 'Backspace' : 'Delete'
|