Results 148 comments of Cary Robbins

The latest release is out, so closing this. Please reopen if you still experience the issue.

Yes, the color issue can be pretty easily resolved by changing around how we lex haddock comments. See commit https://github.com/carymrobbins/intellij-haskforce/commit/d31aa9b3e40820d51b9716d173708b0b0c80f01f which implements this. However, the double-click issue still persists. My...

Yes, but ideally double-clicking a word shouldn't. I noticed when looking at the parse tree for Java and Scala that the PsiDocComment has child nodes, so that may aid in...

It seems that my possible fix for the lexing/coloring issue is causing some parse errors somewhere else in the layout; although, it's a bit hard to track down since it...

Good to know it's not just me. Looking at the Java AST it seems that they are breaking out the elements differently, so once I do some deeper parsing of...

This may have to do with the parser itself. To rule out a couple of things, you could try clearing the path to ghc-modi in the Haskell Tools settings and...

Sounds good, thanks for the help. Sorry you are encountering the issue, I'll dig into it. I just ran into #100 today, which seems to be triggered by sources from...

Wow, that's awesome, thanks for the time and work on this! I'll be digging in.

+1 I absolutely agree. If anyone is interested in implementing this, we'd need a couple of things - - A subclass of `SmartEnterProcessor`, here's an [example from the Erlang plugin](https://github.com/ignatov/intellij-erlang/blob/113d22582f6e337e7d3ea1a76a3134a3959027c6/src/org/intellij/erlang/editor/ErlangClausesSmartEnterProcessor.java)....