@monaco-neovim-wasm/lib 0.1.11 → 0.1.12
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 +1024 -549
- package/dist/monacoNeovim.d.ts +28 -0
- package/package.json +1 -1
package/dist/monacoNeovim.d.ts
CHANGED
|
@@ -118,7 +118,14 @@ export declare class MonacoNeovimClient {
|
|
|
118
118
|
private visualSelectionActive;
|
|
119
119
|
private visualDecorationIds;
|
|
120
120
|
private visualStyleEl;
|
|
121
|
+
private visualVirtualOverlayEl;
|
|
122
|
+
private visualVirtualRawRanges;
|
|
123
|
+
private visualVirtualActive;
|
|
121
124
|
private visualBgCss;
|
|
125
|
+
private monacoPrevOccurrencesHighlight;
|
|
126
|
+
private monacoPrevSelectionHighlight;
|
|
127
|
+
private monacoPrevSelectionHighlightMultiline;
|
|
128
|
+
private monacoHighlightsSuppressed;
|
|
122
129
|
private cursorRefreshTimer;
|
|
123
130
|
private cursorRefreshInFlight;
|
|
124
131
|
private cursorRefreshPending;
|
|
@@ -164,11 +171,18 @@ export declare class MonacoNeovimClient {
|
|
|
164
171
|
private compositionActive;
|
|
165
172
|
private pendingResyncAfterComposition;
|
|
166
173
|
private ignoreNextInputEvent;
|
|
174
|
+
private pendingEscAfterComposition;
|
|
167
175
|
private exitingInsertMode;
|
|
168
176
|
private pendingKeysAfterExit;
|
|
169
177
|
private exitInsertTimer;
|
|
170
178
|
private dotRepeatKeys;
|
|
171
179
|
private dotRepeatBackspaces;
|
|
180
|
+
private delegatedInsertReplayPossible;
|
|
181
|
+
private recentNormalKeys;
|
|
182
|
+
private lastDelegatedInsertPrefix;
|
|
183
|
+
private lastDelegatedDotRepeat;
|
|
184
|
+
private ignoreInsertExitCursor;
|
|
185
|
+
private ignoreMonacoCursorSyncToNvimUntil;
|
|
172
186
|
private ignoreTextKeydownUntil;
|
|
173
187
|
private lastImeCommitAt;
|
|
174
188
|
private lastImeCommitText;
|
|
@@ -179,14 +193,18 @@ export declare class MonacoNeovimClient {
|
|
|
179
193
|
private optimisticCursorPos;
|
|
180
194
|
private optimisticCursorPrevPos;
|
|
181
195
|
private delegateInsertToMonaco;
|
|
196
|
+
private editorReadOnly;
|
|
182
197
|
private applyingFromNvim;
|
|
183
198
|
private buffers;
|
|
184
199
|
private buffersByName;
|
|
185
200
|
private cursorSyncTimer;
|
|
201
|
+
private ignoreSelectionSyncUntil;
|
|
202
|
+
private ignoreActiveBufLinesEventsUntil;
|
|
186
203
|
private modelContentDisposable;
|
|
187
204
|
private originalOptions;
|
|
188
205
|
private resyncTimer;
|
|
189
206
|
private debugLog;
|
|
207
|
+
private nowMs;
|
|
190
208
|
private scheduleRecordingRefresh;
|
|
191
209
|
private refreshRecordingState;
|
|
192
210
|
private sendCmdlineImeText;
|
|
@@ -205,6 +223,7 @@ export declare class MonacoNeovimClient {
|
|
|
205
223
|
resize(cols: number, rows: number): void;
|
|
206
224
|
resizeToEditor(): void;
|
|
207
225
|
private attachEditorListeners;
|
|
226
|
+
private handleActiveModelChanged;
|
|
208
227
|
private computeGridSize;
|
|
209
228
|
private scheduleResizeToEditor;
|
|
210
229
|
private ensurePreeditUi;
|
|
@@ -245,6 +264,9 @@ export declare class MonacoNeovimClient {
|
|
|
245
264
|
private applyBuffer;
|
|
246
265
|
private ensureVisualStyle;
|
|
247
266
|
private setVisualBgCss;
|
|
267
|
+
private ensureVisualVirtualOverlay;
|
|
268
|
+
private clearVisualVirtualOverlay;
|
|
269
|
+
private renderVisualVirtualOverlay;
|
|
248
270
|
private clearVisualDecorations;
|
|
249
271
|
private ensureSearchStyle;
|
|
250
272
|
private clearSearchHighlights;
|
|
@@ -253,7 +275,12 @@ export declare class MonacoNeovimClient {
|
|
|
253
275
|
private applySearchHighlights;
|
|
254
276
|
private applyVisualDecorations;
|
|
255
277
|
private applyNvimMode;
|
|
278
|
+
private setEditorReadOnly;
|
|
256
279
|
private armInsertExit;
|
|
280
|
+
private finalizeDelegatedInsertDotRepeat;
|
|
281
|
+
private exitDelegatedInsertMode;
|
|
282
|
+
private performDelegatedInsertExit;
|
|
283
|
+
private flushPendingMonacoSyncBlocking;
|
|
257
284
|
private syncDotRepeatToNvim;
|
|
258
285
|
private handleKey;
|
|
259
286
|
private handleMouse;
|
|
@@ -286,6 +313,7 @@ export declare class MonacoNeovimClient {
|
|
|
286
313
|
private updateVisualSelection;
|
|
287
314
|
private fetchVisualRanges;
|
|
288
315
|
private syncVisualSelectionColor;
|
|
316
|
+
private setMonacoHighlightsSuppressed;
|
|
289
317
|
private fetchVisualBg;
|
|
290
318
|
private seedBuffer;
|
|
291
319
|
}
|