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

Add customization tips

Jake Russo 2015-12-22 08:46:11 -06:00
parent 795fa931e6
commit 33b86f2e5d

@ -8,4 +8,15 @@ atom-text-editor {
Youll need Atom 1.1 or newer.
Beware that in some syntaxes **selected ligatures might not work**. This is usually a syntax parser/tokenization issue (e.g. `->` breaks into two symbols by JS/Ruby syntax highlighter). See issues [#63](https://github.com/tonsky/FiraCode/issues/63) and [#69](https://github.com/tonsky/FiraCode/issues/69)
Beware that in some syntaxes **selected ligatures might not work**. This is usually a syntax parser/tokenization issue (e.g. `->` breaks into two symbols by JS/Ruby syntax highlighter). See issues [#63](https://github.com/tonsky/FiraCode/issues/63) and [#69](https://github.com/tonsky/FiraCode/issues/69)
To turn off ligatures inside of strings and regular expressions you can add this to your stylesheet:
```
atom-text-editor::shadow .string.quoted,
atom-text-editor::shadow .string.regexp {
-webkit-font-feature-settings: "liga" off, "calt" off;
}
```
If there is any other place that you find you do not want to see ligatures, place your cursor on the location, hit `Ctrl+Alt+Shift+P` and add the bottom-most selector listed in the popup notification to the rule above.