Entl_
Entl_

Reputation: 53

VS Code Opens Folder of Modules

I, probably, have a weird question but it really annoys me. I have created Venv and installed some modules. When I click the module file to scroll it, VS code shows the location of module file in the side explorer. I guess this feature can be turned off in preferences; but, unfortunately, I cannot find it.

enter image description here

enter image description here

Upvotes: 0

Views: 686

Answers (1)

MingJie-MSFT
MingJie-MSFT

Reputation: 9437

Add the following code to your setting.json:

"explorer.autoReveal": false

Then vscode will not open the floder when you open or click a tab or other things.

Upvotes: 1

Related Questions