()
| 525 | editorManager.editor.execCommand("cut"); |
| 526 | }, |
| 527 | paste() { |
| 528 | editorManager.editor.execCommand("paste"); |
| 529 | }, |
| 530 | "select-all"() { |
| 531 | const { editor } = editorManager; |
| 532 | selectAll(editor); |
nothing calls this directly
no test coverage detected