()
| 78 | } |
| 79 | |
| 80 | function canEnableCut(): boolean { |
| 81 | const sel = window.getSelection(); |
| 82 | if (document.activeElement?.classList.contains("xterm-helper-textarea")) { |
| 83 | return false; |
| 84 | } |
| 85 | return !util.isBlank(sel?.toString()) && canEnablePaste(); |
| 86 | } |
| 87 | |
| 88 | async function getClipboardURL(): Promise<URL> { |
| 89 | try { |
no test coverage detected