Vlad Ankudinov
Vlad Ankudinov

Reputation: 2046

How to show integrated terminals in VS Code as tabs rather then dropdown, how to rename them?

I am wandering to find the way to show integrated terminals in VS Code as tabs rather then dropdown, and give them names. Its a habit that come from WebStrom as on pic 1. Is it possible to do so? Now it looks like on pic 2, and there is no way to rename tabs which is also desirable.

pic 1 WebStorm way to show terminals

pic 2 VS Code way to show terminals

Upvotes: 2

Views: 1845

Answers (1)

Suraj Rao
Suraj Rao

Reputation: 29624

Showing it as tabs is not possible currently according to this github issue. However, you can use an extension which shows terminal tabs at the bottom.

Inorder to rename a terminal,

Open the command palette by clicking CTRL+Shift+p and type "Terminal:Rename"

Terminal:Rename

Click Enter you will get:

enter image description here

Enter the name you need and press Enter

Upvotes: 3

Related Questions