Skip to content

Commit e8430a4

Browse files
changelog
1 parent ac40431 commit e8430a4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

CHANGES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,22 @@ profile. This started with version 0.26.0.
100100
let a = 3
101101
```
102102

103+
- \* Infix apply docking behaviour from --ocp-indent-compat is promoted to
104+
everyone. The most common effect is that `|> map (fun` is now indented from
105+
`|>` and not from `map`:
106+
```ocaml
107+
(* before *)
108+
v
109+
|>>>>>> map (fun x ->
110+
x )
111+
(* after *)
112+
v
113+
|>>>>>> map (fun x ->
114+
x )
115+
```
116+
`@@ match` can now also be on one line.
117+
(#2694, @EmileTrotignon)
118+
103119
## 0.27.0
104120

105121
### Highlight

0 commit comments

Comments
 (0)