Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code - display project name first on Alt+Tab window

Following little issue:

My ustal workflow consist of several VS Code windows opened

When switching between them via Alt+Tab, Windows 10/11 displays their instances name in format file_name - project_name. Names might get capped as well, so usually I'm ending in format like file_n.... It's kinda annoying to guess, what from list like:

  • index...
  • index.js - pr...
  • index... is the one, that I'm searching for.

The question: Is there a way to change display format of VS Code windows in Alt+Tab view, preferably to show project name first?

like image 475
Tomas Avatar asked Oct 28 '25 23:10

Tomas


1 Answers

The setting window.title contains the file location first.

Change it to:

"window.title": "${rootName}${separator}${dirty}${activeEditorShort}${separator}${appName}"
like image 150
rioV8 Avatar answered Oct 30 '25 16:10

rioV8