Florian Verdonck

Results 874 comments of Florian Verdonck

Could you give us some pointers where to start to add support for this? @auduchinok do you see any restrictions from F# plugin side why this can't work in it's...

@johhansantana I believe this happens because `column-key="action"` is not a property of the row. Perhaps use an existing property (something unique) as `column-key` as workaround.

I'm having the same issue. All my columns are strings.

That sounds reasonable to me. I might prototype this in Fantomas to verify there are no edge cases. Something just comes to mind where the `->` needed to be on...

I raise you: ```fsharp let f () = match 1 with | _ when match () with | _ -> true -> 2 | _ -> 3 ``` This could...

The reasoning to keep the `when` after the pattern makes sense to me. The double indent for the expression seems a bit foreign in comparison to the rest of the...

"when" at the start does also make sense to me. The rules above work for me, I don't really have a strong opinion about any of this.

Hey, I know you mean well, but this is getting a bit tiresome. Too often is the banner of "vanity alignment" is used to point of the stylistic shortcomings of...

> probably hundreds of rare formatting corner cases This totally isn't one, this involves [SynPat.LongIdent](https://fsharp.github.io/FSharp.Compiler.Service/reference/fsharp-compiler-syntaxtree-synpat.html) which has different offset rules in F# 5 than expressions. As F# 6 will deal...

As of F# 6 this is valid as well: ```fsharp match foo with | SomeVeryLongMatchCase( 1234567890, 1234567890, 1234567890, 1234567890, 1234567890, 1234567890, 1234567890, 1234567890, 1234567890 ) -> bar() | _ ->...