简体   繁体   中英

Highlight of the current open file in VSCode

Is there a way to highlight the current file open selected for edition in VSCode? Some themes show a underline in diferent color. But I want that caractheristic in the default theme

在此处输入图像描述

You can modify any themes for Visual Studio Code.

  1. Open the settings.json file.
  • Open the command palette using F1
  • Type " open user settings json "
  1. Add the following parameters in the opened file:

    "workbench.colorCustomizations": { "tab.activeBorderTop": "yourColor" }

  2. Save the changes

在此处输入图像描述

PS You could see in the attached screenshot that the color of the top border in my active tab already changed. You could find many different options to modify visual stuff.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM