MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isVSCodeIde

Function isVSCodeIde

src/utils/ide.ts:259–263  ·  view source on GitHub ↗
(ide: IdeType | null)

Source from the content-addressed store, hash-verified

257}
258
259export function isVSCodeIde(ide: IdeType | null): boolean {
260 if (!ide) return false
261 const config = supportedIdeConfigs[ide]
262 return config && config.ideKind === 'vscode'
263}
264
265export function isJetBrainsIde(ide: IdeType | null): boolean {
266 if (!ide) return false

Callers 4

ide.tsFile · 0.85
isIDEExtensionInstalledFunction · 0.85
installIDEExtensionFunction · 0.85
initializeIdeIntegrationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected