MCPcopy
hub / github.com/VSCodeVim/Vim / load

Method load

src/state/vimState.ts:317–327  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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();

Callers 9

loadConfigurationFunction · 0.45
reloadConfigurationFunction · 0.45
baseAction.test.tsFile · 0.45
register.test.tsFile · 0.45
vimState.test.tsFile · 0.45
vimrc.test.tsFile · 0.45
createMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected