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>

15 lines (12 loc) 323 B
import { KeyMatcher } from '@ryusei/code'; /** * The collection of shortcuts for the Shortcut extension. * * @since 0.1.0 */ export const KEYMAP: Record<string, KeyMatcher | KeyMatcher[]> = { cutLine : [ 'X', true ], copyLine: [ 'C', true ], moveUp : [ 'ArrowUp', true ], moveDown: [ 'ArrowDown', true ], };