We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518506d commit 9e2e714Copy full SHA for 9e2e714
extension/src/fetch.ts
@@ -38,7 +38,9 @@ export async function fetchAndUpdate(ctx: ExtensionContext, prompt = true) {
38
if (shouldUpdate) {
39
const config = workspace.getConfiguration()
40
config.update('explorer.experimental.fileNesting.enabled', true, true)
41
- config.update('explorer.experimental.fileNesting.expand', false, true)
+ if(config.inspect('explorer.experimental.fileNesting.expand').globalValue === undefined) {
42
+ config.update('explorer.experimental.fileNesting.expand', false, true)
43
+ }
44
config.update('explorer.experimental.fileNesting.patterns', {
45
'//': `Last update at ${new Date().toLocaleString()}`,
46
...patterns,
0 commit comments