In Visual Studio Code (or VSCodium), when using the (relatively new?) Window Title Bar Style (window.titleBarStyle
) set to custom
(which is the new default), the title bar of the window appears to ignore the setting of Window Title (window.title
).
Specifically, and previously, one could change the title of the window to show the entire path to the workspace by adjusting the setting thusly:
“window.title”: “${activeEditorLong}${separator}${rootName}”
.. but that is clearly ignored, so all I'm getting in my title bar now is the name of workspace, which is the last component of the path.
Is there a different setting I should be adjusting? Is this setting now theme dependent?