Julien Debon
Julien Debon
## Problem Hindent doesn't seem to support `NumericUnderscores`. - [X] I checked the issue tracker for existing issues about this problem. - [X] I'm using the latest version of hindent....
## Problem Using Hindent 5.3.1 Hindent somehow removes backticks when declaring a constructor in infix (but not an operator), while [this syntax is legal according to GHC](https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/glasgow_exts.html#infix-type-constructors-classes-and-type-variables). > Back-quotes work...
Hello! AFAIU there is currently no shrinking feature in Crowbar (I could only find a few words about it in the [Wiki design notes](https://github.com/stedolan/crowbar/wiki/Design-notes#shrinking-testcases)). What's the status on the idea...
Kind of similar (or subset of) #85 : it would be reaaaaaaaaaaally good to be able to extract variable/function. These features are amazingly useful in Java development and would be,...
Hey, `Extend selection` feature seems broken, which makes me think the parser is bugged? I'd assume this feature works OOTB in Intellij based on parsing. Example: ```haskell module Foo where...
This may not be easy to explain, but here we go: I'm using algebraic effects through `freer-simple`, and for some test I was using its [Trace](http://hackage.haskell.org/package/freer-simple-1.2.1.0/docs/Control-Monad-Freer-Trace.html) effect, which under the...
Steps to reproduce: ```haskell import Data.List (intercalate, intersperse) unsplit :: Char -> [String] -> String unsplit c = intercalate [c] ``` * Import `intersperse` is useless but no warning/error displayed...
Example: ```haskell import GHC.Generics (from) data Foo = Foo { bar :: String } deriving (Eq, Show, Generic) ``` `Generic` has a red squiggly line because it is not imported....
Use case: I have a Java project in which I added a brand new Haskell module (created using `stack new ...`). Project settings / Project / Project SDK: some JDK...
The default way to build for every language in Intellij is the "Build Project" button/action. It would make sense that this runs a Stack / Cabal build.