/ commands / keybindings / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  import { isKeybindingCustomizationEnabled } from '../../keybindings/loadUserBindings.js'
 3  
 4  const 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  
13  export default keybindings