Launch VS Code IDE Integration (#6063)

This commit is contained in:
Shreya Keshive 2025-08-12 17:08:07 -04:00 committed by GitHub
parent d219f90132
commit 3a87712c1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 21 additions and 121 deletions

View file

@ -115,7 +115,7 @@ async function getIdeStatusMessageWithFiles(ideClient: IdeClient): Promise<{
}
export const ideCommand = (config: Config | null): SlashCommand | null => {
if (!config || !config.getIdeModeFeature()) {
if (!config) {
return null;
}
const ideClient = config.getIdeClient();