Fira 코드를 적용하면 화살표가 정상적으로 변경되어야 합니다.
하지만 그렇지 않은 경우도 있습니다.
이 경우 setting.json 설정에 문제가 있습니다.
editor.tokenColorCustomizations의 textMateRules에서 “memory”를 건드렸을 가능성이 큽니다.
"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"
}
}
)
},
상수를 변경하고 부분을 이탤릭체로 하고 싶었는데 메모리를 만지는 순간 화살표도 바뀝니다.
화살표 또는 변수 표기법?
둘 중 하나를 선택하거나 vscode의 자체 CSS를 터치해야 합니다.