ソースを参照

Avoids updating context if value matches

main
Eric Amodio 1年前
コミット
95b2a99cd7
1個のファイルの変更2行の追加0行の削除
  1. +2
    -0
      src/system/context.ts

+ 2
- 0
src/system/context.ts ファイルの表示

@ -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);

読み込み中…
キャンセル
保存