Skip to content

Commit aa68c08

Browse files
committed
Moved .= into cv32 tonsky#670
1 parent 2cf5e1b commit aa68c08

File tree

8 files changed

+98
-90
lines changed

8 files changed

+98
-90
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ Removed:
2525

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

3031
Added (variants):
3132

FiraCode.glyphs

Lines changed: 78 additions & 87 deletions
Large diffs are not rendered by default.

deps.edn

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{:paths ["clojure"]
22
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
33
org.flatland/ordered {:mvn/version "1.5.7"}
4-
fipp/fipp {:mvn/version "0.6.18"}}}
4+
fipp/fipp {:mvn/version "0.6.18"}}
5+
:aliases {
6+
:nrepl {
7+
:extra-deps {
8+
nrepl/nrepl {:mvn/version "0.8.3"}
9+
}}}}

extras/ligature_variants.png

2.22 KB
Loading

features/cv25.fea

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
lookup period_hyphen {
44
ignore sub period period' hyphen;
55
ignore sub period' hyphen hyphen;
6-
sub period.spacer hyphen' by period_hyphen.cv25;
6+
sub period.spacer hyphen' by period_hyphen.cv32;
77
sub period' hyphen by period.spacer;
88
} period_hyphen;

features/cv32.fea

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Name: .= as ligature
2+
3+
lookup period_equal {
4+
ignore sub period period' equal;
5+
ignore sub period' equal equal;
6+
sub period.spacer equal' by period_equal.cv25;
7+
sub period' equal by period.spacer;
8+
} period_equal;

script/nrepl.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
clj -A:nrepl -M -m nrepl.cmdline --interactive
File renamed without changes.

0 commit comments

Comments
 (0)