mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 12:26:58 +10:00
12 lines
273 B
TypeScript
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
|