so I've recently started using git work trees and they are magical.
but when using with vsc
, you will have the current branch name shown on the top (my_branch
), so when you've opened more than 1 project (in my case I have 4 different projects interacting with each other) with the same branch name, you would get confused and have to browse the files to know which project you've opened.
is there a way I can show 2 levels of folder names, like my_project.git/my_branch
?
If I understood correctly, you want to edit VSCode's window title. Please correct me in comments if I am mistaken. The window title can be edited as follows
settings.json
, in either workspace or use scope"window.title": "${rootPath}${separator}${activeEditorMedium}"
and save the file. This will result in a rather long title, but AFAIK there is no pretty way to get just the parent folder's name into the title.Available variables in the title are (copied from VSCode):