source dump of claude code
at main 11 lines 273 B view raw
1import type { Command } from '../../commands.js' 2 3const 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 11export default command