Javier Neira

Results 531 comments of Javier Neira

The two calls will remove the ghc installation noise (done in the first one) though

Maybe any of the maintainers using nix could help us here: @berberman, @pepeiborra?

@IronGremlin I think the section about configuring editors could be a good place to put the suggestion: https://github.com/haskell/haskell-language-server#configuring-your-editor (in the initial section before the specific ones for each editor)

This is a frequent source of confusion and bad experience for users, it seems there are a dozen of ways to extend the PATH, depending on os (linux or macos),...

Tests were moved to hls and there are here: https://github.com/haskell/haskell-language-server/blob/2e59c60d9f0b2ecaf87fb4551ec6e478e0219330/ghcide/test/exe/Main.hs#L4011-L4012 With hls-1.5.2 i got ``` outer :: Bool Defined at D:\ws\haskell\issues\empty\Main.hs:6:1 ``` ``` inner Defined at D:\ws\haskell\issues\empty\Main.hs:9:3 ``` So it...

Checking both tests in #2435, i would expect the outer one should be ok and the inner fail

The type of arbitrary expression can be extracted indirectly in hls, using the eval plugin, that includes `:t`. Not sure if it is possible right now to translate in the...

@normenmueller you have to install [haskell-language-server](https://github.com/haskell/haskell-language-server) which includes by default the eval plugin (you can see it in action [here ](https://github.com/haskell/haskell-language-server#features)). Then you can write `-- >>>` in the code...

@alanz commented in the issue originally in hls: > I guess someone needs to actually make a PR for microsoft/language-server-protocol#377

As @jamesdbrock gently pointed in #1973, this feature used to work in haskell-ide-engine (see the pr in the vscode extension which added the feature [here](https://github.com/haskell/vscode-haskell/pull/40)) Maybe it worths investigate how...