Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.77.3
- OS Version: Ubuntu 22.04
Steps to Reproduce:
- Set
constant.language.boolean.false and constant.language.boolean.true in your theme or json settings,
Example:
{
"scope": "constant.language.boolean.false",
"settings": {
"foreground": "#ff0054", // Red
}
},
{
"scope": "constant.language.boolean.true",
"settings": {
"foreground": "#41D046", // Green
}
}
- Check highlight for true/false in
.py and .js files

To support this it seems constant.language.boolean.<true/false>.py patterns need to be defined in MagicPython.tmLanguage.json like in the js case. .json files also don't have this feature.
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
constant.language.boolean.falseandconstant.language.boolean.truein your theme or json settings,Example:
.pyand.jsfilesTo support this it seems
constant.language.boolean.<true/false>.pypatterns need to be defined in MagicPython.tmLanguage.json like in thejscase..jsonfiles also don't have this feature.