1
0
Fork 0
mirror of synced 2024-05-20 12:33:29 +12:00
FiraCode/README.md

212 lines
6.6 KiB
Markdown
Raw Normal View History

2014-11-12 08:47:04 +13:00
## Fira Code: monospaced font with programming ligatures
2015-07-31 00:27:45 +12:00
<img src="https://dl.dropboxusercontent.com/u/561580/imgs/fira_code_logo.svg">
2014-11-12 08:47:04 +13:00
### Problem
2016-03-24 14:24:28 +13:00
Programmers use a lot of symbols, often encoded with several characters. For the human brain, sequences like `->`, `<=` or `:=` are interpreted as single logical tokens, even if they take two or three characters on the screen. Your eye spends a non-zero amount of energy to scan, parse and join multiple characters into a single logical one. Ideally, all programming languages should be designed with full-fledged Unicode symbols for operators, but thats not the case yet.
2014-11-12 08:47:04 +13:00
### Solution
2015-12-27 03:44:28 +13:00
#### Download [Fira Code v1.102](https://github.com/tonsky/FiraCode/releases/download/1.102/FiraCode_1.102.zip) | Follow updates 📢 [@FiraCode](https://twitter.com/FiraCode)
2015-12-21 20:29:09 +13:00
2016-03-24 14:24:28 +13:00
Fira Code is an extension of the Fira Mono font containing a set of ligatures for common programming multi-character combinations. This is just a font rendering feature: underlying code remains ASCII-compatible. This helps to read and understand code faster. For some frequent sequences like `..` or `//`, ligatures allow us to correct spacing.
2014-11-12 08:47:04 +13:00
2015-05-26 07:52:15 +12:00
<img src="./showcases/all_ligatures.png" />
2014-11-12 08:47:04 +13:00
2016-03-24 14:24:28 +13:00
### Terminal support
2015-12-21 03:51:56 +13:00
2015-12-21 03:52:48 +13:00
Work | Dont work
2015-12-21 03:51:56 +13:00
------- | ---------------
**Terminal.app** (OS X default terminal) | **iTerm 2** ([feature request](https://gitlab.com/gnachman/iterm2/issues/3568))
**Konsole** | **GNOME Terminal**
**Termux** (Android terminal emulator) | **rxvt**
**Black Screen** | **xfce4-terminal**
2015-12-21 03:51:56 +13:00
2014-11-12 08:47:04 +13:00
### Editor support
2015-12-21 03:52:48 +13:00
Work | Dont work
2015-12-21 03:51:56 +13:00
--------|----------------
**Anjuta** (ligatures rendered unless last char is at the end of file) | **Arduino IDE**
**Atom** 1.1 or newer ([instructions](https://github.com/tonsky/FiraCode/wiki/Atom-instructions)) | **Eclipse** (Mac and Win, [vote here](https://bugs.eclipse.org/bugs/show_bug.cgi?id=398656))
2016-01-18 09:06:37 +13:00
**BBEdit** ([instructions](https://github.com/tonsky/FiraCode/wiki/BBEdit-instructions)) | Standalone **Emacs** ([workaround](https://github.com/tonsky/FiraCode/wiki/Setting-up-Emacs))
**Brackets** (with [this plugin](https://github.com/polo2ro/firacode-in-brackets)) | **gVim**
**Chocolat** | **IDLE**
**Coda 2** | **KDevelop 4**
**Code::Blocks IDE** | **Monkey Studio IDE**
**CodeLite** | **Notepad++**
**Eclipse** (Linux) | **Spyder IDE**
**Geany** | **SublimeText** ([vote here](http://sublimetext.userecho.com/topic/1030059-does-sublimetext-support-programming-ligatures-fontlike-fira-code/))
2016-01-18 09:06:37 +13:00
**gEdit / Pluma** |
2015-12-21 03:51:56 +13:00
**GNOME Builder** |
**IntelliJ products** (IDEA etc, [instructions](https://github.com/tonsky/FiraCode/wiki/Intellij-products-instructions)) |
**Kate, KWrite** |
2015-12-21 03:51:56 +13:00
**Leafpad** |
**LibreOffice** |
**LightTable** ([instructions](https://github.com/tonsky/FiraCode/wiki/LightTable-instructions)) |
**MacVim** 7.4 or newer ([instructions](https://github.com/tonsky/FiraCode/wiki/MacVim-instructions)) |
**Mancy** |
**Meld** |
**Mousepad** |
**Notepad** (Win) |
**QtCreator** |
**RStudio** ([instructions](https://github.com/tonsky/FiraCode/wiki/RStudio-instructions)) |
2016-02-17 21:37:32 +13:00
**Scratch** |
**TextAdept** (Linux, Mac) |
**TextMate 2** |
**Visual Studio 2015** |
2016-02-09 21:38:53 +13:00
**Visual Studio Code** ([instructions](https://github.com/tonsky/FiraCode/wiki/VS-Code-Instructions)) |
**Xamarin Studio/Monodevelop** |
**Xcode** (with [this plugin](https://github.com/robertvojta/LigatureXcodePlugin)) |
2016-01-18 09:06:37 +13:00
Probably work: **Smultron, Vico** |
2014-11-12 08:47:04 +13:00
### Browser support
2015-05-08 02:41:30 +12:00
2015-12-21 00:15:24 +13:00
- IE 10+, Edge: enable with `font-feature-settings: "calt" 1;`
- Firefox
2015-12-20 21:20:33 +13:00
- Safari
- Chromium-based browsers: enable with `font-variant-ligatures: contextual;` or `text-rendering: optimizeLegibility` (see [571246](https://code.google.com/p/chromium/issues/detail?q=font-variant-ligatures&id=571246&thanks=571246&ts=1450553433&))
2015-12-22 09:12:16 +13:00
- ACE
- CodeMirror
2015-05-08 02:41:30 +12:00
### Code examples
2014-11-18 19:27:41 +13:00
2015-05-26 08:04:21 +12:00
Ruby:
<img src="./showcases/ruby.png" />
JavaScript:
<img src="./showcases/javascript.png" />
2014-11-18 19:27:41 +13:00
Erlang:
2015-05-26 07:52:15 +12:00
<img src="./showcases/erlang.png" />
2014-11-18 19:27:41 +13:00
Go:
2015-05-26 07:52:15 +12:00
<img src="./showcases/go.png" />
2014-11-18 19:27:41 +13:00
Haskell:
2015-05-26 07:52:15 +12:00
<img src="./showcases/haskell.png" />
2014-11-18 19:27:41 +13:00
### Alternatives
2016-02-09 17:15:29 +13:00
Other monospaced fonts with ligatures:
- [Hasklig](https://github.com/i-tu/Hasklig) (free)
- [PragmataPro](http://www.fsd.it/fonts/pragmatapro.htm) (€59)
- [Monoid](http://larsenwork.com/monoid/) (free)
2014-11-12 08:47:04 +13:00
### Credits
2015-12-27 03:44:28 +13:00
My name is Nikita Prokopov ([@nikitonsky](https://twitter.com/nikitonsky)).
Official Fira Code twitter: [@FiraCode](https://twitter.com/FiraCode) (subscribe for updates & announcements)
2015-12-19 01:36:42 +13:00
This work is based on OFL-licensed [Fira Mono font](https://github.com/mozilla/Fira). Original Fira Mono font was not changed, only extended.
Fira Code was inspired by [Hasklig font](https://github.com/i-tu/Hasklig): Ligatures for Haskell code.
2014-11-12 08:47:04 +13:00
2015-12-19 01:36:42 +13:00
Thanks Georg Seifert for providing a [Glyphs 2](https://glyphsapp.com) license.
2014-11-12 08:47:04 +13:00
### Changelog
2015-12-27 03:44:28 +13:00
#### 1.102
2015-12-27 03:51:05 +13:00
- Support for IntelliJ-based IDEs ([instructions](https://github.com/tonsky/FiraCode/wiki/Intellij-products-instructions))
2015-12-27 03:44:28 +13:00
- Turned on autohinting
#### 1.101
- Added Light weight
- Adjusted rules when vertical centering of `:`, `-`, `*` and `+` occurs
2015-12-20 06:26:39 +13:00
#### 1.100
- Fixed calt table conflicts (`----` would incorrectly render as `<!--`)
- Added centered `:` (between digits, e.g. `10:40`)
- Added lowercase-aligned `-`, `*` and `+` (only between lowercase letters, e.g. kebab case `var-name`, pointers `*ptr` etc)
2015-12-19 01:48:45 +13:00
#### 1.000
2015-12-19 01:36:42 +13:00
Added weights:
2015-12-19 01:48:45 +13:00
- Retina (just slightly heavier than Regular)
2015-12-19 01:36:42 +13:00
- Medium
- Bold
Switched to `calt` instead of `liga`. You can now “step inside” the ligature in text editors.
Fira Code is now drawn and built in Glyps 2 app (should improve compatibility).
Added:
2015-12-19 01:43:42 +13:00
`<->` `<~~` `<~` `~~~` `~>` `~~>`
`<$` `<+` `<*` `*>` `+>` `$>`
`;;;` `:::` `!!!` `???` `%%` `%%%` `##` `###` `####`
2015-12-20 06:26:39 +13:00
`.-` `#_(` `=<` `**/` `0x` `www` `[]`
2015-12-19 01:36:42 +13:00
Redrawn:
`{-` `-}` `~=` `=~` `=<<` `>>=` `<$>` `<=>` `.=`
Removed: `?:`
Total ligatures count: 115
2015-12-19 01:48:45 +13:00
#### 0.6
2015-08-10 08:36:48 +12:00
2015-08-10 08:56:41 +12:00
Redrawn from Fira Mono 3.204 (slightly heavier weight)
2015-08-10 08:36:48 +12:00
2015-08-10 08:56:41 +12:00
Added:
`**` `***` `+++` `--` `---` `?:`
`/=` `/==` `.=` `^=` `=~` `?=` `||=` `|=`
`<<<` `<=<` `-<<` `-<` `>-` `>>-` `>=>` `>>>`
`<*>` `<|>` `<$>` `<+>`
2015-08-10 19:58:48 +12:00
`<!--` `{-` `-}` `/**` `\\` `\\\`
`..<` `??` `|||` `&&&` `<|` `|>`
2015-08-10 08:56:41 +12:00
2015-12-19 01:48:45 +13:00
Added support for Powerline
2015-08-10 08:36:48 +12:00
2015-12-19 01:48:45 +13:00
#### 0.5
2015-05-27 04:34:51 +12:00
2015-12-19 01:48:45 +13:00
Added: `#{` `~-` `-~` `<==` `==>` `///` `;;` `</`
#### 0.4
2015-05-26 07:52:15 +12:00
- Added `~=` `~~` `#[`
- Rolled back `&&` and `||` to more traditional look
- `===` and `!==` are now rendered with 3 horisontal bars
2015-05-08 03:57:07 +12:00
2015-12-19 01:48:45 +13:00
#### 0.3
Added: `~@` `#?` `=:=` `=<`
#### 0.2.1
Fixed width of `&&` and `||`
#### 0.2
Added: `-->` `<--` `&&` `||` `=>>` `=/=`
2015-05-08 03:57:07 +12:00
2015-05-08 02:41:30 +12:00
2015-12-19 01:48:45 +13:00
#### 0.1
2014-11-12 08:47:04 +13:00
`>>=` `=<<` `<<=` `->>` `->` `=>` `<<-` `<-`
`===` `==` `<=>` `>=` `<=` `>>` `<<` `!==` `!=` `<>`
`:=` `++` `#(` `#_`
`::` `...` `..` `!!` `//` `/*` `*/` `/>`