(content: string)
| 69 | const SGR_MOUSE_RE = /^\x1b\[<(\d+);(\d+);(\d+)([Mm])$/ |
| 70 | |
| 71 | function createPasteKey(content: string): ParsedKey { |
| 72 | return { |
| 73 | kind: 'key', |
| 74 | name: '', |
| 75 | fn: false, |
| 76 | ctrl: false, |
| 77 | meta: false, |
| 78 | shift: false, |
| 79 | option: false, |
| 80 | super: false, |
| 81 | sequence: content, |
| 82 | raw: content, |
| 83 | isPasted: true, |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | /** DECRPM status values (response to DECRQM) */ |
| 88 | export const DECRPM_STATUS = { |
no outgoing calls
no test coverage detected