VimInsertModeChanges
Unofficial
The edits made during one insert-mode session, kept so that . and macros can replay them.
Import:
import type { VimInsertModeChanges } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface VimInsertModeChangesProperties
| Property | Type | Description | |
|---|---|---|---|
| changes | VimInsertModeChange[] | The recorded edits, in the order they were made. | |
| expectCursorActivityForChange | boolean | Whether a change has been made that has not yet been followed by a cursor activity event. | |
| ignoreCount? | number | How many of the recorded changes are skipped when the insertion is replayed. | |
| maybeReset? | boolean | Whether the recording is discarded and started over on the next change. | |
| visualBlock? | number | How many lines the insertion spanned, when it was made in visual block mode. |
Links to this page: