Bläddra i källkod

Avoids updating context if value matches

main
Eric Amodio 1 år sedan
förälder
incheckning
95b2a99cd7
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. +2
    -0
      src/system/context.ts

+ 2
- 0
src/system/context.ts Visa fil

@ -14,6 +14,8 @@ export function getContext(key: ContextKeys, defaultValue?: T): T | undefined
}
export async function setContext(key: ContextKeys, value: unknown): Promise<void> {
if (contextStorage.get(key) === value) return;
contextStorage.set(key, value);
void (await executeCoreCommand('setContext', key, value));
_onDidChangeContext.fire(key);

Laddar…
Avbryt
Spara