Since upgrading to 15.0.0 I've found that CodeLite is a lot more stable - it previously crashed frequently for me - but the Goto Declaration/Implementation features no longer work.
I'm using C in a large-ish (14824 files) embedded project that doesn't use a host build system: compilation is via custom build commands that invoke ssh to a VM that shares the project directories.
If I select a function name and point at it a tooltip appears showing me the declaration of that function. However, if I right click and select Goto Declaration nothing happens. Previously it took me to a header file (sometimes not quite the right one because some functions are declared in several places, which is fair enough) but now I don't even get whichever line it used for the tooltip.
Goto Declaration/Implementation stopped working
-
- CodeLite Curious
- Posts: 2
- Joined: Wed Apr 07, 2021 5:36 pm
- Genuine User: Yes
- IDE Question: PHP
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Goto Declaration/Implementation stopped working
For this use case, I suggest to disable the language server plugin or reduce c++ code completion priority to 50
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 2
- Joined: Wed Apr 07, 2021 5:36 pm
- Genuine User: Yes
- IDE Question: PHP
- Contact:
Re: Goto Declaration/Implementation stopped working
thanks - works great now