| 23 | let lastClosedModeHandler: ModeHandler | null = null; |
| 24 | |
| 25 | interface ICodeKeybinding { |
| 26 | after?: string[]; |
| 27 | commands?: Array<{ command: string; args: any[] }>; |
| 28 | } |
| 29 | |
| 30 | export async function getAndUpdateModeHandler( |
| 31 | forceSyncAndUpdate = false, |
nothing calls this directly
no outgoing calls
no test coverage detected