반응형
Fira code를 적용하면 정상적으로 화살표가 바뀌어야 합니다.
그런데 안되는 경우가 있습니다.
그럴 때는 setting.json의 설정의 문제가 있어서 입니다.
바로 "editor.tokenColorCustomizations"의 textMateRules에서 "storage"를 건드렸을 확률이 높습니다.
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"entity.name.class", // class name
"keyword", // import,
"constant", // String, number, boolean, this, super
// "storage", // String, let
"storage.modifier", // static words
"storage.type.class.js",
// JSX, TSX attribute and values
"entity.other.attribute-name.tsx",
// "meta.tag.attributes.tsx",
"entity.other.attribute-name.js.jsx", // label, sx, onChange..
// "meta.tag.attributes.js.jsx"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
저는 const, let 부분을 이탈릭체로 바꾸고 싶었는데 storage를 건드리자마자 화살표가 같이 변합니다.
화살표냐 변수표기냐...
둘 중에 하나만 선택하시거나 vscode의 자체 CSS를 건드려야 합니다.
반응형