* 设置选区
(anchor: number, head: number)
| 1820 | * 设置选区 |
| 1821 | */ |
| 1822 | setSelection(anchor: number, head: number): void { |
| 1823 | this.cm.focus(); |
| 1824 | this.cm.dispatch({ |
| 1825 | selection: { anchor, head }, |
| 1826 | }); |
| 1827 | } |
| 1828 | |
| 1829 | /** |
| 1830 | * 选区是否在此节点内 |
no test coverage detected