Reputation: 1157
If I open the following files in Visual Studio Code: style.css, comments.php, archive.php, footer.php
VS Code shows the tabs in the following way:
archive.php | comments.php | footer.php | style.css
I need to show it in the order that I open it, that is: style.css | comments.php | archive.php | footer.php
In other editors, it works like this.
How can I configure to show me the tabs in the order that I open the files?
Try this but you do not have that option "explorer.sortOrder": "modified"
Upvotes: 1
Views: 4323
Reputation: 180915
workbench.editor.openPositioning: right
should work for you.
Workbench › Editor: Open Positioning
Controls where editors open. Select
left
orright
to open editors to the left or right of the currently active one. Selectfirst
orlast
to open editors independently from the currently active one.
Upvotes: 3