Терминал VSCode: показать URL-адрес синим цветом - PullRequest
0 голосов
/ 20 июня 2020

Я бы хотел, чтобы терминал vscode форматировал URL-адреса так же, как это делает PyCharm: enter image description here

VSCode shows instead an un-formatted URL: enter image description here

So far i have played with workbench.colorCustomizations, but I can't find the name of the attribute which manages the url. It looks like url's are recognized as when hovering above them, it proposes to open/follow the link. The best I can achieve so far is to change the color of the popup which appears when you hover over a url (changed to red in that example): I have tried as well a few themas, but with no more success.

    "workbench.colorCustomizations": {
        "textLink.foreground": "#ff0000"
    }

I have checked the bellow links without success, but let me know if i missed something:

  1. stackflow
  2. stackflow
  3. веб-сайт vscode
  4. поток стека - генерировать цвет по умолчанию
...