(key = {})
| 663 | * @returns {KeyboardEventInit} |
| 664 | */ |
| 665 | export function getKeys(key = {}) { |
| 666 | return { |
| 667 | ...key, |
| 668 | shiftKey: state.shift, |
| 669 | altKey: state.alt, |
| 670 | ctrlKey: state.ctrl, |
| 671 | metaKey: state.meta, |
| 672 | }; |
| 673 | } |
| 674 | |
| 675 | function getActiveTerminalComponent() { |
| 676 | const { activeFile } = editorManager; |
no outgoing calls
no test coverage detected