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

Function detectRunningIDEsCached

src/utils/ide.ts:1164–1169  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1162 * Use this for performance-sensitive paths like tips where fresh results aren't needed.
1163 */
1164export async function detectRunningIDEsCached(): Promise<IdeType[]> {
1165 if (cachedRunningIDEs === null) {
1166 return detectRunningIDEs()
1167 }
1168 return cachedRunningIDEs
1169}
1170
1171/**
1172 * Resets the cache for detectRunningIDEsCached.

Callers 1

isRelevantFunction · 0.85

Calls 1

detectRunningIDEsFunction · 0.85

Tested by

no test coverage detected