ソースを参照

Avoids adding settings for defaults

main
Eric Amodio 6年前
コミット
4bd4e71704
1個のファイルの変更7行の追加1行の削除
  1. +7
    -1
      src/pageProvider.ts

+ 7
- 1
src/pageProvider.ts ファイルの表示

@ -52,7 +52,13 @@ export class PageProvider extends Disposable implements TextDocumentContentProvi
Logger.log(`PageProvider.save: changes=${JSON.stringify(changes)}`);
for (const key in changes) {
await configuration.update(key, changes[key], ConfigurationTarget.Global);
const inspect = await configuration.inspect(key)!;
if (inspect.defaultValue === changes[key]) {
await configuration.update(key, undefined, ConfigurationTarget.Global);
}
else {
await configuration.update(key, changes[key], ConfigurationTarget.Global);
}
}
}

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