Blog
It's a Wonderful Life
How to make the vscode title bar show full file path
“I know that the path is displayed when I hover on the filename on the tab just above the code, but this means mucking about with the mouse when I am keyboarding, and is therefore a real nuisance.” — https://github.com/Microsoft/vscode/issues/12625
Code:
_“window.title”_: “${activeEditorLong}${separator}${rootName}”
How To:
- Open Settings: hit:
Command
+,
- Search for “title”
- In the input replace
activeEditorShort
withactiveEditorLong
- Save.