-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
[Question/Feature request] Show the list of errors using visual studio code editor #7033
Comments
@Tyriar Is there any chance of making the error "dialog" pin-able to the bottom/top? Maybe its already in the 1.2.0 release? I do not want to jump from one error file press "control/shift+m" and do this in page having a build error. I am just doing a migration of Angular beta2 to rc1 with many errors, a pinned window with all errors would allow a much better workflow :-) |
@bastienJS I don't think it's possible right now, you can file an issue specifically for that "Show errors/warnings in 'pinnable' panel" (or something) and it will get routed to the right person 😃 |
@Tyriar Hey hey quick answer ;-) Ok I will do that, thanks! |
@bastienJS I'm most awake around this time 😉 |
@bastienJS you can try it out now on the Insiders build, pretty eager for feedback to come in! http://code.visualstudio.com/insiders |
@Tyriar Just installed it. So I get the latest visual code artifact from each day? Thats cool man. So I can give quick feedback if I see change in the behavior good/ bad ;-) |
@bastienJS I think the daily change is going live next week with the stable build |
@Tyriar I already experienced the not available scrollbar due to term.js, I am surprised that this is a javascript implementation, never thought of that. Is there a special reason for it? Just curious... |
@bastienJS the root cause of that is because only the current viewport is represented in the DOM, it's probably the right way to go to save creating so many elements but a scroll bar would definitely be handy. |
@Tyriar handy? hehe that was said mildly ;-) Without scrollbar, but more than ONE build error, its not usable at least in that context. Just think the integrated terminal has a height of appr. 100px. When I run "ng build" with more than an error I can see only the last error, the rest is cut. |
@bastienJS it's still possible to scroll though with the mouse wheel and ctrl+shift+arrow or ctrl+alt+page up/down (on Linux/bash anyway). If you weren't aware of this I'd be interested in the platform you're on and which shell you're using. |
Hi @Tyriar, is there an equivalent to this for zsh? |
@timhyson page up/down should work, I opened xtermjs/xterm.js#181 to look into why the arrows don't. |
Ah ok, cool - I'm on a macbook pro, so fn + shift + ↑/↓ gets me there... Many thanks. |
@waderyan: Hey Wade. I see how to show errors and warnings for files that are currently open (ctrl+shift+m). But is there a way to show errors and warnings for all files, even closed ones? I just made a change that I'm sure broke lots of other files. I'm just not sure which ones. It would be nice to have a list of all errors to help me fix the errors I caused. |
@kevinjreece I have done the same thing and had to look at the terminal to find the errors. I think it would be useful to show something (a red circle?) next to each icon in the file explorer to indicate an error. I wonder if this is something the icon theme extensions would need to support though? |
I'm also highly interested in project wide typescript error checking. |
@kevinjreece not today as far as I know but this is a good feature request. Can you open a new issue? Definitely something I would like to see as well. |
@echo-sean: Showing a red icon next to the file in the file explorer would be useful for small projects. But in my current project, we have hundreds of files nested many layers deep in multiple sub-directories. So red icons wouldn't fully solve the problem for me. What I need is a list of the errors by file so that I can see them in one place and quickly click through them, just like the "Problems" section they currently have |
I just created an issue to formalize this discussion: #13953 |
@kevinjreece Sorry, I wasn't very clear. I meant as an addition to the problems section of course. |
Is there any setting to automatically open the warnings/errors on save if there are any of them? |
I can`t find a way to show the list of typescript build errors in an error list, like it works in visual studio 2015.
My motivation is that I do not want to click in each file to see the build/intellisense errors...
I would like to have a list of those errors in an integration window.
The text was updated successfully, but these errors were encountered: