Disable navigation in the source tree when a button is clicked - Visual Studio Code

Is there a way to prevent navigation in the source tree when clicking on any tab?

I work on 5 tabs, and every time I click on a specific tab, VS Code takes me to the location of this file in the source tree. I want to prevent this.

+4
source share
1 answer

This is what you are looking for:

"explorer.autoReveal": false

Regarding this GitHub issue

+1
source

Source: https://habr.com/ru/post/1664912/


All Articles