@monaco-neovim-wasm/lib 0.1.11 → 0.1.13
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 +1046 -561
- package/dist/monacoNeovim.d.ts +29 -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,19 @@ 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 lastClipboardText;
|
|
185
|
+
private ignoreInsertExitCursor;
|
|
186
|
+
private ignoreMonacoCursorSyncToNvimUntil;
|
|
172
187
|
private ignoreTextKeydownUntil;
|
|
173
188
|
private lastImeCommitAt;
|
|
174
189
|
private lastImeCommitText;
|
|
@@ -179,14 +194,18 @@ export declare class MonacoNeovimClient {
|
|
|
179
194
|
private optimisticCursorPos;
|
|
180
195
|
private optimisticCursorPrevPos;
|
|
181
196
|
private delegateInsertToMonaco;
|
|
197
|
+
private editorReadOnly;
|
|
182
198
|
private applyingFromNvim;
|
|
183
199
|
private buffers;
|
|
184
200
|
private buffersByName;
|
|
185
201
|
private cursorSyncTimer;
|
|
202
|
+
private ignoreSelectionSyncUntil;
|
|
203
|
+
private ignoreActiveBufLinesEventsUntil;
|
|
186
204
|
private modelContentDisposable;
|
|
187
205
|
private originalOptions;
|
|
188
206
|
private resyncTimer;
|
|
189
207
|
private debugLog;
|
|
208
|
+
private nowMs;
|
|
190
209
|
private scheduleRecordingRefresh;
|
|
191
210
|
private refreshRecordingState;
|
|
192
211
|
private sendCmdlineImeText;
|
|
@@ -205,6 +224,7 @@ export declare class MonacoNeovimClient {
|
|
|
205
224
|
resize(cols: number, rows: number): void;
|
|
206
225
|
resizeToEditor(): void;
|
|
207
226
|
private attachEditorListeners;
|
|
227
|
+
private handleActiveModelChanged;
|
|
208
228
|
private computeGridSize;
|
|
209
229
|
private scheduleResizeToEditor;
|
|
210
230
|
private ensurePreeditUi;
|
|
@@ -245,6 +265,9 @@ export declare class MonacoNeovimClient {
|
|
|
245
265
|
private applyBuffer;
|
|
246
266
|
private ensureVisualStyle;
|
|
247
267
|
private setVisualBgCss;
|
|
268
|
+
private ensureVisualVirtualOverlay;
|
|
269
|
+
private clearVisualVirtualOverlay;
|
|
270
|
+
private renderVisualVirtualOverlay;
|
|
248
271
|
private clearVisualDecorations;
|
|
249
272
|
private ensureSearchStyle;
|
|
250
273
|
private clearSearchHighlights;
|
|
@@ -253,7 +276,12 @@ export declare class MonacoNeovimClient {
|
|
|
253
276
|
private applySearchHighlights;
|
|
254
277
|
private applyVisualDecorations;
|
|
255
278
|
private applyNvimMode;
|
|
279
|
+
private setEditorReadOnly;
|
|
256
280
|
private armInsertExit;
|
|
281
|
+
private finalizeDelegatedInsertDotRepeat;
|
|
282
|
+
private exitDelegatedInsertMode;
|
|
283
|
+
private performDelegatedInsertExit;
|
|
284
|
+
private flushPendingMonacoSyncBlocking;
|
|
257
285
|
private syncDotRepeatToNvim;
|
|
258
286
|
private handleKey;
|
|
259
287
|
private handleMouse;
|
|
@@ -286,6 +314,7 @@ export declare class MonacoNeovimClient {
|
|
|
286
314
|
private updateVisualSelection;
|
|
287
315
|
private fetchVisualRanges;
|
|
288
316
|
private syncVisualSelectionColor;
|
|
317
|
+
private setMonacoHighlightsSuppressed;
|
|
289
318
|
private fetchVisualBg;
|
|
290
319
|
private seedBuffer;
|
|
291
320
|
}
|