FiraCode/README.md

129 wiersze
3.8 KiB
Markdown
Czysty Zwykły widok Historia

2014-11-11 19:47:04 +00:00
## Fira Code: monospaced font with programming ligatures
2015-07-30 12:27:45 +00:00
<img src="https://dl.dropboxusercontent.com/u/561580/imgs/fira_code_logo.svg">
2015-08-09 20:36:48 +00:00
#### [Download Fira Code v0.6](https://github.com/tonsky/FiraCode/releases/download/0.6/FiraCode-Regular.otf)
2015-05-07 14:41:30 +00:00
2014-11-11 19:47:04 +00:00
### Problem
2015-05-22 13:30:32 +00:00
Programmers use a lot of symbols, often encoded with several characters. For human brain sequences like `->`, `<=` or `:=` are single logical token, even if they take two or three places on the screen. Your eye spends 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-11 19:47:04 +00:00
### Solution
Fira Code is a Fira Mono font extended with 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.
### Fira Code (with ligatures):
2015-05-25 19:52:15 +00:00
<img src="./showcases/all_ligatures.png" />
2014-11-11 19:47:04 +00:00
Compare to Fira Mono (without ligatures):
2015-05-25 19:52:15 +00:00
<img src="./showcases/no_ligatures.png" />
2014-11-11 19:47:04 +00:00
### Editor support
Do **not** work:
- Atom ([bug](https://github.com/atom/atom/issues/6055))
- SublimeText ([vote here](http://sublimetext.userecho.com/topic/433445-opentype-support-ligatures-curly-quotes-contextual-and-alternate-symbols/))
- Intellij Idea ([vote here](https://youtrack.jetbrains.com/issue/IDEA-127539))
- XCode
- iTerm 2 ([feature request](https://gitlab.com/gnachman/iterm2/issues/3568))
- OS X Terminal.app
- Emacs
- gVim, MacVim
2015-08-09 20:36:48 +00:00
- Eclipse ([vote here](https://bugs.eclipse.org/bugs/show_bug.cgi?id=398656))
Do work:
- Visual Studio
- TextMate 2
- QtCreator
- LightTable ([instructions](https://github.com/LightTable/LightTable/issues/1459#issuecomment-57366504))
- BBEdit ([instructions](https://github.com/i-tu/Hasklig/issues/3#issue-46601683))
2015-08-09 20:36:48 +00:00
- RStudio
- Chocolat
Should work (copied from [Hasklig README](https://github.com/i-tu/Hasklig)):
- Geany
- gEdit
- Kate
- Konsole
- KWrite
- Smultron
- Vico
2014-11-11 19:47:04 +00:00
2015-05-07 14:41:30 +00:00
_Note:_ Im not a font designer, and Fira Code is built in sort of [a hacky way](https://github.com/mozilla/Fira/issues/62) from OTF version of Fira Mono. Please forgive me if it doesnt work for you. Help will be greatly appreciated.
### Code examples
2014-11-18 06:27:41 +00:00
2015-05-25 20:04:21 +00:00
Ruby:
<img src="./showcases/ruby.png" />
JavaScript:
<img src="./showcases/javascript.png" />
2014-11-18 06:27:41 +00:00
Erlang:
2015-05-25 19:52:15 +00:00
<img src="./showcases/erlang.png" />
2014-11-18 06:27:41 +00:00
Go:
2015-05-25 19:52:15 +00:00
<img src="./showcases/go.png" />
2014-11-18 06:27:41 +00:00
Haskell:
2015-05-25 19:52:15 +00:00
<img src="./showcases/haskell.png" />
2014-11-18 06:27:41 +00:00
### Alternatives
Another 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-11 19:47:04 +00:00
### Credits
2015-08-09 20:36:48 +00: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
2014-11-11 19:47:04 +00:00
Fira Code was inspired by [Hasklig font](https://github.com/i-tu/Hasklig): Ligatures for Haskell code
### Changelog
2015-08-09 20:36:48 +00:00
**0.6**:
`**` `***` `+++` `--` `---` `?:`
`/=` `/==` `.=` `^=` `=~` `?=` `||=` `|=`
`<<<` `<=<` `-<<` `-<` `>-` `>>-` `>=>` `>>>`
`<*>` `<|>` `<$>` `<+>`
`<!--` `{-` `-}` `/**`
`..<` `??` `|||` `&&&` `<||>`
and Powerline support
2015-05-26 16:34:51 +00:00
**0.5**: `#{` `~-` `-~` `<==` `==>` `///` `;;` `</`
2015-05-25 19:52:15 +00:00
**0.4**:
- Added `~=` `~~` `#[`
- Rolled back `&&` and `||` to more traditional look
- `===` and `!==` are now rendered with 3 horisontal bars
2015-05-11 09:23:03 +00:00
**0.3**: `~@` `#?` `=:=` `=<`
2015-05-07 15:57:07 +00:00
**0.2.1**: Fixed width of `&&` and `||`
2015-05-07 15:57:07 +00:00
2015-05-11 09:23:03 +00:00
**0.2**: `-->` `<--` `&&` `||` `=>>` `=/=`
2015-05-07 14:41:30 +00:00
2015-05-11 09:23:03 +00:00
**0.1**
2014-11-11 19:47:04 +00:00
`>>=` `=<<` `<<=` `->>` `->` `=>` `<<-` `<-`
`===` `==` `<=>` `>=` `<=` `>>` `<<` `!==` `!=` `<>`
`:=` `++` `#(` `#_`
`::` `...` `..` `!!` `//` `/*` `*/` `/>`