-
-
Notifications
You must be signed in to change notification settings - Fork 648
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
Error in echo area replaced by eldoc information #652
Comments
Not sure if this is possible at all. I'll have to investigate the issue further. Can you add some steps to reproduce the exact problem you're experiencing? |
(defn foo []
(let [bar])) Now hit As an aside, am I viewing the compiler exceptions in the intended manner? As I develop interactively I'm constantly hitting |
Right, my concern isn't where the output goes but that the compilation error is briefly shown in the echo area, but then replaced with eldoc information before one has any time to review it. Either we shouldn't attempt to display the compilation error in the echo area at all, or find some way to mute eldoc while visiting a line with an error. I prefer the latter. |
Well, the same output is available in the stacktrace buffer anyways, but I see your point. I'll see if I can't add a check based on whether the last invoked command was |
Awesome! 👍 |
When you jump to an error, the cause is briefly visible in the modeline, but is quickly replaced by the eldoc output displaying the function signature. I propose we let the stacktrace information take precedence, in situations where both types of information are available.
The text was updated successfully, but these errors were encountered: