Skip to content

Commit

Permalink
Moved .= into cv32 #670
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Nov 29, 2021
1 parent 2cf5e1b commit aa68c08
Show file tree
Hide file tree
Showing 8 changed files with 98 additions and 90 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ Removed:

- C-style compound assignment `>>=` `<<=` `||=` `|=` are not combined with equal sign by default. Old behavior is moved into `ss09` #974
- Restored short `|` by default, long one moved to `cv30` #843 #1160
- Moved `.-` into `cv25` #860 #1103
- Moved `.-` into `cv25` #670 #860 #1103
- Moved `.=` into `cv32` #670

Added (variants):

Expand Down
165 changes: 78 additions & 87 deletions FiraCode.glyphs

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion deps.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{:paths ["clojure"]
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.flatland/ordered {:mvn/version "1.5.7"}
fipp/fipp {:mvn/version "0.6.18"}}}
fipp/fipp {:mvn/version "0.6.18"}}
:aliases {
:nrepl {
:extra-deps {
nrepl/nrepl {:mvn/version "0.8.3"}
}}}}
Binary file modified extras/ligature_variants.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion features/cv25.fea
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
lookup period_hyphen {
ignore sub period period' hyphen;
ignore sub period' hyphen hyphen;
sub period.spacer hyphen' by period_hyphen.cv25;
sub period.spacer hyphen' by period_hyphen.cv32;
sub period' hyphen by period.spacer;
} period_hyphen;
8 changes: 8 additions & 0 deletions features/cv32.fea
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Name: .= as ligature

lookup period_equal {
ignore sub period period' equal;
ignore sub period' equal equal;
sub period.spacer equal' by period_equal.cv25;
sub period' equal by period.spacer;
} period_equal;
3 changes: 3 additions & 0 deletions script/nrepl.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

clj -A:nrepl -M -m nrepl.cmdline --interactive
File renamed without changes.

0 comments on commit aa68c08

Please sign in to comment.