Moved `.=` into `cv32` #670

This commit is contained in:
Nikita Prokopov 2021-11-29 15:12:07 +01:00
parent 2cf5e1b3ed
commit aa68c08f1c
8 changed files with 98 additions and 90 deletions

View File

@ -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):

File diff suppressed because one or more lines are too long

View File

@ -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 not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -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
features/cv32.fea Normal file
View File

@ -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
script/nrepl.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
clj -A:nrepl -M -m nrepl.cmdline --interactive