Skip to content

Commit bf8518a

Browse files
changelog
1 parent 1e3c6fc commit bf8518a

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
@@ -104,6 +104,22 @@ profile. This started with version 0.26.0.
104104
let a = 3
105105
```
106106

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

109125
### Highlight

0 commit comments

Comments
 (0)