()
| 315 | } |
| 316 | |
| 317 | async load() { |
| 318 | if (SUPPORT_NVIM) { |
| 319 | const m = await import('../neovim/neovim'); |
| 320 | this.nvim = new m.NeovimWrapper(); |
| 321 | } |
| 322 | |
| 323 | if (SUPPORT_IME_SWITCHER) { |
| 324 | const ime = await import('../actions/plugins/imswitcher'); |
| 325 | this.inputMethodSwitcher = new ime.InputMethodSwitcher(); |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | dispose() { |
| 330 | this.nvim?.dispose(); |
no outgoing calls
no test coverage detected