VScode Ruby Monokai 상수 색상을 넣고 싶어요.

2583 단어 VSCodeRuby
※ 이 노트는.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

좋은 웹페이지 즐겨찾기