0
someone knows how to change the color of that PHP variable symbol, the dollar sign ($). I’ve searched and found nothing about it, nor in the documentation.
0
someone knows how to change the color of that PHP variable symbol, the dollar sign ($). I’ve searched and found nothing about it, nor in the documentation.
1
Searching the package.json of other themes, I discovered, follow the code below.
"editor.tokenColorCustomizations": {
    "textMateRules": [
        {
            "name": "Variaveis",
            "scope": "punctuation.definition.variable.php",
            "settings": {
                "foreground": "#ff8a04",
                "fontStyle": "italic bold"
            }
        }
    ]
}
							Browser other questions tagged php variables visual-studio-code
You are not signed in. Login or sign up in order to post.