@monaco-neovim-wasm/lib 0.1.10 → 0.1.11
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.
- package/dist/monaco-neovim-wasm.es.js +385 -349
- package/dist/monacoNeovim.d.ts +0 -1
- package/dist/neovimWasmSession.d.ts +1 -0
- package/package.json +2 -2
package/dist/monacoNeovim.d.ts
CHANGED
|
@@ -164,7 +164,6 @@ export declare class MonacoNeovimClient {
|
|
|
164
164
|
private compositionActive;
|
|
165
165
|
private pendingResyncAfterComposition;
|
|
166
166
|
private ignoreNextInputEvent;
|
|
167
|
-
private ignoreNvimBufLinesUntil;
|
|
168
167
|
private exitingInsertMode;
|
|
169
168
|
private pendingKeysAfterExit;
|
|
170
169
|
private exitInsertTimer;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monaco-neovim-wasm/lib",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Core library for running Neovim (WASM) behind Monaco via msgpack-RPC.",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"fflate": "^0.8.2"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"monaco-editor": "
|
|
17
|
+
"monaco-editor": ">=0.44.0 <1.0.0"
|
|
18
18
|
},
|
|
19
19
|
"main": "./dist/monaco-neovim-wasm.es.js",
|
|
20
20
|
"module": "./dist/monaco-neovim-wasm.es.js",
|