type HotkeySequence = Hotkey[];
Defined in: sequence.ts:30
A sequence of hotkeys for Vim-style shortcuts.
const gotoTop: HotkeySequence = ['G', 'G'] // gg
const deleteLine: HotkeySequence = ['D', 'D'] // dd
const deleteWord: HotkeySequence = ['D', 'I', 'W'] // diw