VScode Ruby Monokai 상수 색상을 넣고 싶어요.
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
Reference
이 문제에 관하여(VScode Ruby Monokai 상수 색상을 넣고 싶어요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mokoaki/items/c68af4b5a541032ae078텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)