Daniel Gröber (dxld)

Results 357 comments of Daniel Gröber (dxld)

You'll want to start looking somewhere around here: https://github.com/kazu-yamamoto/ghc-mod/blob/master/elisp/ghc-check.el#L156 That's where the overlays are constructed. If you trace through that you should be able to figure out why `(file-equal-p ofile...

Yup: if `(buffer-live-p buf)` is nil. ``` (defmacro ghc-with-current-buffer (buf &rest body) ;; (declare (indent 1)) `(if (buffer-live-p ,buf) (with-current-buffer ,buf ,@body))) ```

@rikvdkleij could you be a bit more prescise as to what constitutes "not completely valid" haskell? If you just want to know the type of an expression that uses only...

Backslash escaping space seems like a bad idea due to the example you mention. Can you remove that bit? Having to backslash escape `"` is fine in my mind tough.

Ah yes of course that's no good either. How about adding an option to all commands to selectively turn on quoting? Splitting the command on all spaces first, then checking...

So you could have `info --escape "src/Foo.hs" "\\\\"` since the frontend would have to know about the double escaping but still support the old format. Maybe having the option as...

This is a bug in either your code, happy or GHC, certainly not ghc-mod since `cabal repl` exhibits the exact same behavior. Looking at the enormous generated module for the...

Mind linking me to the GHC report?

After adding -fobject-code to both the executable and library sections in your cabal file `ghc-mod check dist/build/Language/Python/Pyn/Parser/Parser.hs` works just fine, I can't check browse since thats giving me an unrelated...

I don't think so this happens when running ghc-mod without any frontend.