News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Code completion does not work properly

Started by czarek05, February 07, 2018, 07:27:59 PM

Previous topic - Next topic

czarek05

Hi,
I have searched some topis here related to the subject but I haven't found the answer. What I would like to reach is that the IDE suggests me at the moment showed in the code below i.a.: abc.substr + list of possible arguments + short description of what substr do. Could you tell me how may I reach that?


#include <iostream>
#include <string>

int main()
{
    std::string abc = "hello world";
    abc.sub

BlueHazzard

This should work by default.
What operating system are you using? What codeblocks version? From where?

If you are on linux you probably have to install the codeblocks contribution plugins ( i think the packet is cbcontrib-plugins or something like that)

oBFusCATed

Quote from: BlueHazzard on February 08, 2018, 12:42:17 AM
If you are on linux you probably have to install the codeblocks contribution plugins ( i think the packet is cbcontrib-plugins or something like that)
The code completion plugin is a core plugin. It is always installed.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

czarek05


Commaster