I just found a useful configuration for the Visual Studio Code terminal tabs. If you don’t like this new configuration to manage the tabs you see in the gif below:

You can configure the older configuration to manage the tabs in ‘Users/YOURUSER/Library/Application Support/Code/User/settings.json‘ you can configure “terminal.integrated.tabs.enabled”:false to switch back to the older management.

Here is an example configuration is the settings.json file.
{
"git.autofetch": true,
"editor.fontSize": 20,
"terminal.integrated.fontSize":18,
"maven.executable.path": "/Users/MYUSER/Documents/USER/dev/apache-maven-3.3.9/bin/mvn",
"maven.pomfile.autoUpdateEffectivePOM": true,
"git.enableSmartCommit": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Visual Studio Light",
"window.zoomLevel": -1,
"java.semanticHighlighting.enabled": true,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"git.confirmSync": true,
"terminal.integrated.tabs.enabled":false
}
I hope this was useful for you and let’s see what’s next?
Greetings,
Thomas
#visualstudiocode
Leave a Reply