Moved `.=` into `cv32` #670

pull/1323/head
Nikita Prokopov 2021-11-29 15:12:07 +01:00
rodzic 2cf5e1b3ed
commit aa68c08f1c
8 zmienionych plików z 98 dodań i 90 usunięć

Wyświetl plik

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

Wyświetl plik

@ -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"}
}}}}

Plik binarny nie jest wyświetlany.

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 52 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 54 KiB

Wyświetl plik

@ -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;

Wyświetl plik

@ -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 100755
Wyświetl plik

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