claude-code-best/src/commands/vim/index.ts
claude-code-best f90eee85d8 feat: build
2026-03-31 19:22:47 +08:00

12 lines
273 B
TypeScript

import type { Command } from '../../commands.js'
const command = {
name: 'vim',
description: 'Toggle between Vim and Normal editing modes',
supportsNonInteractive: false,
type: 'local',
load: () => import('./vim.js'),
} satisfies Command
export default command