@monaco-neovim-wasm/lib 0.1.6 → 0.1.7
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.
|
@@ -873,21 +873,21 @@ class se {
|
|
|
873
873
|
minRows: e.minRows ?? 5,
|
|
874
874
|
autoResize: e.autoResize ?? !0,
|
|
875
875
|
resizeDebounceMs: e.resizeDebounceMs ?? 50,
|
|
876
|
-
syncWrap: e.syncWrap ?? !
|
|
876
|
+
syncWrap: e.syncWrap ?? !0,
|
|
877
877
|
wrapStrategy: e.wrapStrategy ?? "simple",
|
|
878
878
|
syncTabstop: e.syncTabstop ?? !0,
|
|
879
|
-
wrappedLineMotions: e.wrappedLineMotions ??
|
|
880
|
-
scrollMotions: e.scrollMotions ?? !
|
|
879
|
+
wrappedLineMotions: e.wrappedLineMotions ?? !0,
|
|
880
|
+
scrollMotions: e.scrollMotions ?? !0,
|
|
881
881
|
scrolloff: Number.isFinite(e.scrolloff) ? Math.max(0, Number(e.scrolloff)) : void 0,
|
|
882
|
-
syncScrolloff: e.syncScrolloff ??
|
|
882
|
+
syncScrolloff: e.syncScrolloff ?? !0,
|
|
883
883
|
ctrlKeysForNormalMode: e.ctrlKeysForNormalMode,
|
|
884
884
|
ctrlKeysForInsertMode: e.ctrlKeysForInsertMode,
|
|
885
885
|
altKeysForNormalMode: e.altKeysForNormalMode,
|
|
886
886
|
altKeysForInsertMode: e.altKeysForInsertMode,
|
|
887
887
|
metaKeysForNormalMode: e.metaKeysForNormalMode,
|
|
888
888
|
metaKeysForInsertMode: e.metaKeysForInsertMode,
|
|
889
|
-
searchHighlights: e.searchHighlights ?? !
|
|
890
|
-
hostCommands: e.hostCommands ??
|
|
889
|
+
searchHighlights: e.searchHighlights ?? !0,
|
|
890
|
+
hostCommands: e.hostCommands ?? !!(e.onHostCommand || e.fileSystem),
|
|
891
891
|
fileSystem: e.fileSystem,
|
|
892
892
|
onHostCommand: e.onHostCommand,
|
|
893
893
|
status: e.status ?? (() => {
|
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.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Core library for running Neovim (WASM) behind Monaco via msgpack-RPC.",
|
|
@@ -31,4 +31,3 @@
|
|
|
31
31
|
"package.json"
|
|
32
32
|
]
|
|
33
33
|
}
|
|
34
|
-
|