You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everyone! Thanks for all the community support and help. I am having an issue while trying to use CTRL + Click on the terminal output, which contains source code compilation errors
Environment:
OS and Version: Windows 10
VS Code Version: 1.87.0
C/C++ Extension Version: v1.19.4
So, normally during code development, you get compilation errors in the terminal window, which for example may look like this:
Src/main.c:74:15: error: expected function body after function declarator
int main(void)..
But if I try to use CRTL + Click on the Src/main.c:74:15, instead of opening Src/main.c file, and placing editor cursor at line 74, column 15, I get the peek window which offers Src/main.c:74:15 as the first hint, but also couple of entirely unrelated results. So I have to click Enter, to get to the affected source file, instead of being directly sent to the enclosed error.
Here is the screenshot with this behavior:
Just a note, not all projects I am working with are affected. I am wondering if this may be C++ extension issue, or it may be vscode Editor related issue.
I understand that for Multiple definitions/declarations and few other situations, this is desired behavior. But in case of the simple and clear syntax error, localized on one single source file, peek popup window is not necessary.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everyone! Thanks for all the community support and help. I am having an issue while trying to use CTRL + Click on the terminal output, which contains source code compilation errors
Environment:
So, normally during code development, you get compilation errors in the terminal window, which for example may look like this:
But if I try to use CRTL + Click on the
Src/main.c:74:15
, instead of openingSrc/main.c
file, and placing editor cursor at line 74, column 15, I get the peek window which offersSrc/main.c:74:15
as the first hint, but also couple of entirely unrelated results. So I have to click Enter, to get to the affected source file, instead of being directly sent to the enclosed error.Here is the screenshot with this behavior:
Just a note, not all projects I am working with are affected. I am wondering if this may be C++ extension issue, or it may be vscode Editor related issue.
I understand that for Multiple definitions/declarations and few other situations, this is desired behavior. But in case of the simple and clear syntax error, localized on one single source file, peek popup window is not necessary.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions