@net-vim/core 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +445 -414
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -27,7 +27,7 @@ The editor can be initialized into any HTML element without requiring a specific
27
27
  import { initNetVim } from '@net-vim/core';
28
28
 
29
29
  const container = document.getElementById('editor-container');
30
- const { vim, dispose } = initNetVim(container);
30
+ const { vim, dispose } = await initNetVim(container);
31
31
 
32
32
  // Access the Vim API
33
33
  vim.getAPI().registerCommand('hello', () => {