How to disable auto-check

General questions regarding the usage of CodeLite
daniil1
CodeLite Curious
Posts: 2
Joined: Fri Jul 30, 2021 11:21 am
Genuine User: Yes
IDE Question: C++
Contact:

How to disable auto-check

Post by daniil1 »

The red arrow in the line opposite #include does not work correctly. Writes "file not found". Although the project compiles. How to disable the red arrow and so that it appears only when the project is not assembled

You do not have the required permissions to view the files attached to this post.
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: How to disable auto-check

Post by eranif »

its a feature of the language server settings.
this gives you a hint that code completion will not be able to work since client.h can not be found.
if your project compiles but you still get this: are you using custom makefile?

Anyways, you can disable it from:
plugins -> language server -> settings -> clangd -> display diagnostics

Make sure you have read the HOW TO POST thread
daniil1
CodeLite Curious
Posts: 2
Joined: Fri Jul 30, 2021 11:21 am
Genuine User: Yes
IDE Question: C++
Contact:

Re: How to disable auto-check

Post by daniil1 »

Thank you very much, you answered my question.

I don't know what a "custom makefile" is. If you are talking about "Project Setting -> General -> Build -> Makefile Generator" then "Default" is set there

Probably this is an interesting innovation, but for some reason my brain took it with hostility. Perhaps the use case will change the attitude towards this tool.

Post Reply