UNPKG

@ryusei/code

Version:

<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>

14 lines (11 loc) 305 B
import { KeyMatcher } from '@ryusei/code'; /** * The collection of shortcuts for the Indentation extension. * * @since 0.1.0 */ export const KEYMAP: Record<string, KeyMatcher | KeyMatcher[]> = { indent : [ 'Tab' ], unindent : [ 'Tab', false, true ], toggleTabMode: [ 'M', true ], };