-
Notifications
You must be signed in to change notification settings - Fork 347
Because flymake is too hard to set up #766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Or use I have ;; Make flycheck aware of sandboxes.
(eval-after-load 'flycheck
(add-hook 'flycheck-mode-hook #'flycheck-haskell-setup)) (As well as enabling Note that I don't use the various keybindings, because I try and make sure I don't have any errors to check :p (Then again, I just noticed that part of my |
The trying-to-not-have-any-errors part is where the error navigation is helpful. Also -- warnings are also overlaid, and navigatable -- when |
1ff88ec
to
c1da436
Compare
@deepfire: I see you had a productive time! Great! Can you split this work in separate pull requests? For example all refactoring can go immediately in. We need to NOT BREAK ghc-mod as it is used with haskell-mode. Note |
@gracjan:
What do you think? |
Thanks for the answers.
We do not have that split yet. I would love to avoid customizations as users tend to stick to the defaults, customizations need a lot of documentation written and unit test cases explode. Have you seen |
@gracjan, what you say makes me think.. |
|
@deepfire: Actually the more I think about your code the more I like it as it is. I did some research about possible options that we have here. Flycheck as it is now will not help us manage overlays so your overlay logic must be implemented. shell-like and backend-like sessions need to be split but that is not yet feasible. That means your solution is best with respect to current state of affairs. Can you please split it into a couple of pull requests? Especially each new customization variables need to be in separate prs because those require more eyes to look at. |
@gracjan: working on the splitting part.. but got distracted into massaging my Will present my results soonish. |
612094a
to
bba2fcb
Compare
@gracjan: error-overlays now separate from customizations |
@gracjan: as to the customizations -- they are closely tied by diff conflict matters, so there's only two pieces that I can conveniently separate them in -- and only after |
..I have decided to steal error overlays from
ghc-mod
.There's a follow-up branch with more controversial stuff in it --
overlays-extras
.