You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to be able to display the parent directory name of the CWD in the terminal tab, to be able to differentiate between folders with the same name
Exemple:
Tabs opened in folders such as :
.../Composables/Common
.../Components/Common
.../Directives/Common
all display : "bash Common"
We could change this by using "terminal.integrated.tabs.description" and a new ${cwdParentFolder} variable and use it like so :
"${cwdParentFolder}/${cwdFolder}"
to display : "bash Components/Common"
${cwd} overflows most of the time and is not really usable in that case
Thank you for your help
The text was updated successfully, but these errors were encountered:
It would be useful to be able to display the parent directory name of the CWD in the terminal tab, to be able to differentiate between folders with the same name
Exemple:
Tabs opened in folders such as :
all display : "bash Common"
We could change this by using "terminal.integrated.tabs.description" and a new ${cwdParentFolder} variable and use it like so :
"${cwdParentFolder}/${cwdFolder}"
to display : "bash Components/Common"
${cwd} overflows most of the time and is not really usable in that case
Thank you for your help
The text was updated successfully, but these errors were encountered: