Jared Hester

Results 37 comments of Jared Hester

I think we should have both, signature generation from VFPT could be on a per function basis, generating the signature from an existing implementation, but it should also have scaffold...

Maybe we could use [YC.PrettyPrinter](https://github.com/fsprojects/YC.PrettyPrinter) to improve the layout of the individual signature generation. Since it'd only be once function at a time it should be fast enough.

I noticed the extension was disabled after I installed resharper. Several other extensions were disabled as well. I suspect resharper is the cause.

This has been happening to me as well, but in the larger context of vs2017 and vs2015 disabling each other's settings, often while both are running at the same time...

@nightroman formatting errors should be reported at https://github.com/dungpa/fantomas

@smoothdeveloper https://github.com/fsharp/FSharp.Compiler.Service/pull/696 this is going to hold you up

This is tied into [the functionality i've been building for Protoworkspace](https://github.com/dotnet/netcorecli-fsc/issues/29#issuecomment-261132358). I don't think we'll be able to get the full value out of this feature without the ability to...

``` fsharp let f : int -> int -> int = fun x y -> x * y ``` Is currently valid syntax and gets you most of the way...

duplicate of https://github.com/fsharp/fslang-suggestions/issues/159, but this suggestion already has more detail so maybe we expand & extend this one instead? I think an operator with non-standard semantics, similar to how the...

I agree with @wastaz, it'll lead to an explosion of warnings across code like ``` fsharp let builder = StringBuilder() .Append('\t', indent) .Append(sprintf "%s(%s) = " block.BlockType block.ParenthesizedName) .AppendLine block.Value...