forked from
oppi.li/claude-code
source dump of claude code
1import type { Command } from '../../commands.js'
2import { isKeybindingCustomizationEnabled } from '../../keybindings/loadUserBindings.js'
3
4const keybindings = {
5 name: 'keybindings',
6 description: 'Open or create your keybindings configuration file',
7 isEnabled: () => isKeybindingCustomizationEnabled(),
8 supportsNonInteractive: false,
9 type: 'local',
10 load: () => import('./keybindings.js'),
11} satisfies Command
12
13export default keybindings