Now you can customize your Visual Studio code to always show parent folder names in tabs!
Here's what it looks like with init/views.js , init/routes.js and plugins/modal.js :

Add this line to your user settings:
"workbench.editor.labelFormat": "short"
Note:
Another useful tool for displaying the exact path to the current file is using breadCrumbs. Add this to your user settings:
"breadcrumbs.enabled": true

For your information: To open custom settings for Visual Studio code: File β Settings β Settings β User Settings. To view user preferences in JSON format, click the "{}" icon in the upper right corner.
source share