-
Notifications
You must be signed in to change notification settings - Fork 31k
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
Ability to show Problems view as a flat list #18685
Comments
Yeah, for C/C++, showing the errors that occur 1st in the current translation unit is the desired result (or whatever order the compiler gives the errors). |
@jrieken Is it possible to get the markers in the order of creation? |
nope, they are "indexed" by resource and owner but they don't have a timestamp field on them |
Is it possible If the user wants to view problems in the order they come into the system? |
this is the place in which you would add that: https://github.com/Microsoft/vscode/blob/50375162385359a4b40a773e8edb315eeb94efc6/src/vs/platform/markers/common/markerService.ts#L181 |
This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation. Happy Coding! |
I understand this is an automated process to sort the issues, but if Microsoft wants VSCode to be a long term alternative to other IDE for C++, then this issue has to be in your backlog. Currently your problem view is just unusable for C++. |
This feature request has not yet received the 20 community upvotes it takes to make to our backlog. 10 days to go. To learn more about how we handle feature requests, please see our documentation. Happy Coding |
🙁 In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation. Happy Coding! |
When I compile with
cpptools
, I get the problems sorted "by file" and completely lose the order that compiler used to report the errors which is essential to finding the origin of the error.1.8.1
Windows 10
Steps to Reproduce:
The text was updated successfully, but these errors were encountered: