Change Integrated Terminal title in vscode

前端 未结 3 1579
情歌与酒
情歌与酒 2021-01-03 20:23

We can open command prompt in vscode by using the Integrated Terminal feature in View menu.

We can even open multiple terminals as shown be

3条回答
  •  醉梦人生
    2021-01-03 20:51

    In v1.41 there is a new command which can be used like so:

    {
      "key": "ctrl+t",
      "command": "workbench.action.terminal.renameWithArg",
      "args": {
          "name": "remote"
      }
    }
    

    if you have some frequently used name, like "remote" or "build" that you use often.

提交回复
热议问题