You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've installed FSharpLint by doing dotnet tool install -g dotnet-fsharplint, and tried one of their examples on the FSharpLint website:
type ExampleInterface =
abstract member print : unit -> unit
[<EntryPoint>]
let main argv =
let x = List.fold (fun x y -> x + y) 0 [1;2;3]
printfn "%d" x
0
Expected behaviour
I expect that Nvim should give me virtual text diagnostic warnings that are like this:
however I am not seeing any warnings:
Environment (please complete the following information):
OS: Archlinux
Vim / Neovim version: NVIM v0.7.0-dev+1241-g08d9d74fd
dotnet SDK version: 6.0.102
mono / .Net Framework version: 6.0.102
The text was updated successfully, but these errors were encountered:
yeah, we have an open item to look at reenabling it - the core problem is one of FCS incompatibility. We either need to help that project stay up to date on FCS, have a stable FCS build, or find a way to invoke it in a way that lets that tool load its own FCS.
I've installed FSharpLint by doing
dotnet tool install -g dotnet-fsharplint
, and tried one of their examples on the FSharpLint website:Expected behaviour
I expect that Nvim should give me virtual text diagnostic warnings that are like this:
however I am not seeing any warnings:
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: