@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) • 324 B
text/typescript
import { KeyMatcher } from '@ryusei/code';
/**
* The collection of shortcuts for the Search extension.
*
* @since 0.1.0
*/
export const KEYMAP: Record<string, KeyMatcher | KeyMatcher[]> = {
search : [ 'F', true ],
searchNext: [ 'F3' ],
searchPrev: [ 'F3', false, true ],
replace : [ 'F', true, true ],
};