rainbyte / haskell-ide-chart

Haskell state of editor/IDE support
https://rainbyte.github.io/haskell-ide-chart/
Creative Commons Attribution Share Alike 4.0 International
250 stars 12 forks source link

Add ratings for IntelliJ-Haskell #9

Closed chris-martin closed 7 years ago

chris-martin commented 7 years ago

Related issue: #4

Code completion - 🚗 - Doesn't suggest every possible thing, but pretty good for the most part

Error reporting - 🚀 - All errors are correctly highlighted, messages show up in tooltips. Not sure what more I could ask for.

Lint - 🚲 - Hlint works, but is slow https://github.com/rikvdkleij/intellij-haskell/issues/148

Code Format - 🚲 - Supposedly supports hindent and stylish-haskell but I haven't gotten them working

Goto def, find usages - 🚀 - omg amazing

Stepwise Debugger - 🚶 - None that I know of

Doc. tooltips - 🚲 - Works sometimes but not for everything

Snippets - ... - I don't know what this means?

Hoogle - 🚲 - Kind of works, doesn't seem finished

rainbyte commented 7 years ago

Snippets are predefined pieces of code, some included by the plug-in, and you could add more by yourself. Example: if I write case, it would show the following as possible completion

case ___ of
  __ -> ___

It is mostly for pieces of code that you write very often.

rainbyte commented 7 years ago

Rating were tested using this plug-in right? (Just to be sure before merging)

chris-martin commented 7 years ago

Yep, that's the one.

rainbyte commented 7 years ago

Merged, thanks!