1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

Add syntactic highlights for editors' settings.

秋纫 2019-10-10 08:51:33 +09:00
parent de85b85640
commit 886e9a85d5

@ -10,7 +10,7 @@ You can enable stylistic sets **only if your editor supports it.**
Go to `Atom` -> `Stylesheet`, add: Go to `Atom` -> `Stylesheet`, add:
``` ```css
atom-text-editor { atom-text-editor {
font-feature-settings: "ss01", "ss02", "ss03", "ss04", "ss05", "ss06", "zero", "onum"; font-feature-settings: "ss01", "ss02", "ss03", "ss04", "ss05", "ss06", "zero", "onum";
} }
@ -20,7 +20,7 @@ atom-text-editor {
Go to `Sublime Text` -> `Preferences` -> `Settings`, add: Go to `Sublime Text` -> `Preferences` -> `Settings`, add:
``` ```json
"font_options": ["ss01", "ss02", "ss03", "ss04", "ss05", "ss06", "ss19", "ss20"] "font_options": ["ss01", "ss02", "ss03", "ss04", "ss05", "ss06", "ss19", "ss20"]
``` ```
@ -38,7 +38,7 @@ in `settings.json` without hacking the editor's CSS. It is not clear that this f
# CSS # CSS
``` ```css
.monaco-editor { .monaco-editor {
font-feature-settings: "ss01", "ss02", "ss03", "ss04", "ss05", "ss06", "zero", "onum"; font-feature-settings: "ss01", "ss02", "ss03", "ss04", "ss05", "ss06", "zero", "onum";
} }