Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for more italic style & TypeScript .ts / .tsx #5

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions themes/Subliminal-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,31 @@
}
},
{
"scope": "source.js entity.other.attribute-name.js",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "text.html.basic entity.other.attribute-name.html",
"name": "Italic font style",
"scope": [
"entity.name.function.ts",
"entity.name.function.tsx",
"support.type.primitive",
"entity.other.attribute-name",
"entity.name.tag.custom",
"source.js.jsx keyword.control.flow.js",
"support.type.property.css",
"support.function.basic_functions",
"variable.assignment.coffee",
"support.function.basic_functions",
"keyword.operator.type.annotation",
"punctuation.section.embedded",
"assignment.coffee",
"entity.name.type.ts",
"italic",
"quote",
"type .function",
"type.function",
"storage.type.class",
"keyword.control",
"modifier",
"this"
],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this change needs to come as a separate PR with before & after screenshots for all of the scopes modified, as we need to check/review first if all the changes look ok or not. Thanks!

"settings": {
"fontStyle": "italic"
}
Expand Down