※ このメモは .rb 以外の事は全く考慮されていません
VSCode にデフォで入っている Monokai は定数に色が付いてくれない
半泣きで試行錯誤したら出来たのでメモ
他にも方法がありそう
{
"editor.tokenColorCustomizations": {
"[Monokai]": {
"textMateRules": [
{
"scope": "variable.other.constant",
"settings": {
"foreground": "#ae81ff"
}
}
]
}
}
}
参考
https://code.visualstudio.com/docs/extensions/themes-snippets-colorizers#_textmate-theme-rules
https://macromates.com/manual/ja/language_grammars
https://www.sublimetext.com/docs/3/scope_naming.html