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