/ commands / vim / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const command = {
 4    name: 'vim',
 5    description: 'Toggle between Vim and Normal editing modes',
 6    supportsNonInteractive: false,
 7    type: 'local',
 8    load: () => import('./vim.js'),
 9  } satisfies Command
10  
11  export default command