VimInsertModeKey
Unofficial
A keystroke recorded while insert mode was active, so the insertion can be replayed by . or by a macro.
Import:
import type { VimInsertModeKey } from '@obsidian-typings/obsidian-public-latest';Signature:
export interface VimInsertModeKeyProperties
| Property | Type | Description | |
|---|---|---|---|
| altKey | boolean | Whether the Alt modifier was held. | |
| ctrlKey | boolean | Whether the Control modifier was held. | |
| key | string | The key value of the originating keyboard event. | |
| keyName | string | The Vim-style name of the key, such as <C-a>. | |
| metaKey | boolean | Whether the Meta modifier was held. | |
| shiftKey | boolean | Whether the Shift modifier was held. |
Links to this page: