我正在尝试创建一个简单的扩展来切换VS Code中测试文件的可见性。这是我目前的做法:
const testGlobs = [
'**/__tests__',
'**/__mocks__',
'**/*.spec.js',
]
function hideTests() {
const exclude = workspace.getConfiguration('files.exclude', vscode.ConfigurationTarget.Global)
testGlobs.forEach(glob => exclude.update(glob, true, vscode.ConfigurationTarget.Global));
console.log(exclude) // does not reflect the updated values
}
这似乎没有影响。文件模式的设置在我的用户设置文件中保留false
,就像在代码段末尾注销exclude
的值一样。
如何通过扩展程序代码正确更新设置?
答案 0 :(得分:2)
解决了它。我发布的代码实际上是抛出一个错误,但update
方法是异步的,因此错误被吞噬了。通过在函数上使用async / await,我能够看到错误,类似于:
'files.exclude.**/__tests__' is not a registered configuration.
基本上,我必须完整更新exclude
配置,而不是其下的单个密钥,因为这些密钥只是配置值的一部分 - 它们本身不是实际的配置密钥。工作解决方案:
async function hideTests() {
const files = workspace.getConfiguration('files', ConfigurationTarget.Global)
const exclude = files.get('exclude')
testGlobs.forEach(g => exclude[g] = true)
await files.update('exclude', exclude, ConfigurationTarget.Global)
}