VimOption
Unofficial
One registered Vim option.
The global registry holds the fully described option; an editor’s own copy carries only the value that overrides it.
Import:
import type { VimOption } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface VimOptionProperties
| Property | Type | Description | |
|---|---|---|---|
| callback? | VimOptionCallback | Invoked to read and write the option, for options not backed by a stored value. | |
| defaultValue? | VimOptionValue | The value the option takes until it is set. | |
| type? | VimOptionType | The kind of value the option holds. Defaults to string when the option was defined without one. | |
| value? | VimOptionValue | The option's current value. |
Links to this page: