VScode Show Full Path in Title Bar

Rio Weber
riow
Published in
1 min readJan 16, 2018

“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:

  1. Open Settings: hit: Command+ ,
  2. Search for “title”
  3. In the input replace activeEditorShort with activeEditorLong
  4. Save.

Result:

--

--