I find the popup in the VS Code integrated terminal menu tree to be annoying. Is there a way to turn this off?
Steps to reproduce:
- Open VS Code.
- Open at least two integrated terminals in VS Code.
- In the integrated terminal menu tree, hover over one of the entries.
- A popup display that shows some information about the process that is running the integrated terminal.
Desired result:
- Open VS Code.
- Open at least two integrated terminals in VS Code.
- In the integrated terminal menu tree, hover over one of the entries.
- No popup is displayed.
I’d expect if there was a setting to control this, it’d be prefixed by terminal.integrated.tabs.
. And there is no such setting with such a prefix.
I think related source code is in src/vs/workbench/contrib/terminal/browser/terminalTabsList.ts (not 100% sure).
As a really stupid workaround, you could disable tabs altogether and just have the dropdown instead: "terminal.integrated.tabs.enabled": false,
.