Освоение пользовательского заголовка и описания в VS Code: повышение производительности

# Web Scraping Script: Extract data from a website and save it to a CSV file

в корневом каталоге вашего рабочего пространства и добавьте файл settings.json. Внутри этого файла вы можете установить свойства window.titleи window.titleDescriptionна нужные значения.

{
  "window.title": "${activeEditorLong}${separator}${rootName}${separator}${appName}",
  "window.titleDescription": "${activeEditorShort}${separator}${folder}"
}
{
  "label": "Build Project",
  "type": "shell",
  "command": "npm run build",
  "presentation": {
    "echo": true,
    "reveal": "always",
    "focus": false,
    "panel": "shared",
    "showReuseMessage": false,
    "clear": true,
    "statusBar": {
      "text": "$(pencil) Building project...",
      "tooltip": "Building project..."
    },
    "task": {
      "type": "shell",
      "label": "Build Project",
      "detail": "Builds the project",
      "description": "Compiles the source code and generates the output files"
    }
  }
}