feat: auto-execute simple slash commands on Enter (#13985)

This commit is contained in:
Jack Wotherspoon
2025-12-01 12:29:03 -05:00
committed by GitHub
parent 844d3a4dfa
commit f918af82fe
38 changed files with 393 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ export const vimCommand: SlashCommand = {
name: 'vim',
description: 'Toggle vim mode on/off',
kind: CommandKind.BUILT_IN,
autoExecute: true,
action: async (context, _args) => {
const newVimState = await context.ui.toggleVimEnabled();