Problems not showing up for c code in vscode
I was doing a little bit of work on my c file when I accidentally turned off the setting which underlines problems. I'm a C novice so this tab is extremely helpful for me to figure out what I did wrong.
My question is what setting turns on error squigglies for C code. An important thing to note is that every other language I program in, the problems show up. So I'm 100% certain that it's language specific.
Thanks in advance.
c visual-studio-code vscode-settings
add a comment |
I was doing a little bit of work on my c file when I accidentally turned off the setting which underlines problems. I'm a C novice so this tab is extremely helpful for me to figure out what I did wrong.
My question is what setting turns on error squigglies for C code. An important thing to note is that every other language I program in, the problems show up. So I'm 100% certain that it's language specific.
Thanks in advance.
c visual-studio-code vscode-settings
add a comment |
I was doing a little bit of work on my c file when I accidentally turned off the setting which underlines problems. I'm a C novice so this tab is extremely helpful for me to figure out what I did wrong.
My question is what setting turns on error squigglies for C code. An important thing to note is that every other language I program in, the problems show up. So I'm 100% certain that it's language specific.
Thanks in advance.
c visual-studio-code vscode-settings
I was doing a little bit of work on my c file when I accidentally turned off the setting which underlines problems. I'm a C novice so this tab is extremely helpful for me to figure out what I did wrong.
My question is what setting turns on error squigglies for C code. An important thing to note is that every other language I program in, the problems show up. So I'm 100% certain that it's language specific.
Thanks in advance.
c visual-studio-code vscode-settings
c visual-studio-code vscode-settings
asked Nov 14 '18 at 1:26
MyspaceMyspace
112
112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
In the workspace settings json
file, you can add the following line.
"C_Cpp.errorSquiggles": "Enabled"
That will show the squiggles for both C and C++ files.
This link is an useful overview on changing the settings. You will find the language specific editor settings there as well.
2
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE:)
– David C. Rankin
Nov 14 '18 at 7:11
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
add a comment |
Update! For anyone who is dealing with this hassle here are the four steps I followed. First do what @P.W suggested with the error squigglies.
Secondly, uninstall VSCode.
Next, go to %appdata% and delete the Code folder
Finally, reinstall VSCode.
Hopefully, those steps will solve this problem for anyone who has been looking.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291870%2fproblems-not-showing-up-for-c-code-in-vscode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In the workspace settings json
file, you can add the following line.
"C_Cpp.errorSquiggles": "Enabled"
That will show the squiggles for both C and C++ files.
This link is an useful overview on changing the settings. You will find the language specific editor settings there as well.
2
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE:)
– David C. Rankin
Nov 14 '18 at 7:11
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
add a comment |
In the workspace settings json
file, you can add the following line.
"C_Cpp.errorSquiggles": "Enabled"
That will show the squiggles for both C and C++ files.
This link is an useful overview on changing the settings. You will find the language specific editor settings there as well.
2
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE:)
– David C. Rankin
Nov 14 '18 at 7:11
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
add a comment |
In the workspace settings json
file, you can add the following line.
"C_Cpp.errorSquiggles": "Enabled"
That will show the squiggles for both C and C++ files.
This link is an useful overview on changing the settings. You will find the language specific editor settings there as well.
In the workspace settings json
file, you can add the following line.
"C_Cpp.errorSquiggles": "Enabled"
That will show the squiggles for both C and C++ files.
This link is an useful overview on changing the settings. You will find the language specific editor settings there as well.
edited Nov 14 '18 at 7:04
answered Nov 14 '18 at 6:51
P.WP.W
15.3k31453
15.3k31453
2
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE:)
– David C. Rankin
Nov 14 '18 at 7:11
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
add a comment |
2
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE:)
– David C. Rankin
Nov 14 '18 at 7:11
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
2
2
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE
:)
– David C. Rankin
Nov 14 '18 at 7:11
Concise answer and a link to more. That's a good answer. For small C projects, I find it easier to simply use the "Developer Command Prompt" and simply compile directly from the command line. From the command line you can build 5 small projects in the time it takes to navigate the menus just to find the wanted settings in the IDE
:)
– David C. Rankin
Nov 14 '18 at 7:11
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
@DavidC.Rankin: I do the same. I mainly use the IDE for writing code and debugging purposes.
– P.W
Nov 14 '18 at 7:14
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
I tried your idea and it unfortunately failed. The issue is not the squigglies, it's that it does not detect the problem. For example, if I don't use a function, it will spit back an error in the problems tab. However, it still does not do that even with error squigglies enabled.
– Myspace
Nov 15 '18 at 0:01
add a comment |
Update! For anyone who is dealing with this hassle here are the four steps I followed. First do what @P.W suggested with the error squigglies.
Secondly, uninstall VSCode.
Next, go to %appdata% and delete the Code folder
Finally, reinstall VSCode.
Hopefully, those steps will solve this problem for anyone who has been looking.
add a comment |
Update! For anyone who is dealing with this hassle here are the four steps I followed. First do what @P.W suggested with the error squigglies.
Secondly, uninstall VSCode.
Next, go to %appdata% and delete the Code folder
Finally, reinstall VSCode.
Hopefully, those steps will solve this problem for anyone who has been looking.
add a comment |
Update! For anyone who is dealing with this hassle here are the four steps I followed. First do what @P.W suggested with the error squigglies.
Secondly, uninstall VSCode.
Next, go to %appdata% and delete the Code folder
Finally, reinstall VSCode.
Hopefully, those steps will solve this problem for anyone who has been looking.
Update! For anyone who is dealing with this hassle here are the four steps I followed. First do what @P.W suggested with the error squigglies.
Secondly, uninstall VSCode.
Next, go to %appdata% and delete the Code folder
Finally, reinstall VSCode.
Hopefully, those steps will solve this problem for anyone who has been looking.
answered Nov 15 '18 at 1:42
MyspaceMyspace
112
112
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291870%2fproblems-not-showing-up-for-c-code-in-vscode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown