For C ++, is there functionality in Geany (or plugins that will provide it) that allows you to include a list of hints / hints for all members of the class, as well as classes from the linked library? I mean, for example, in Java, when you enter a period (.) After an instance variable of an object, all its members (methods and public variables) are displayed. This also applies when importing packages and classes.
For example, in Java (using Eclipse):
Vector<Object> vec = new Vector<Object();
vec.[here after typing a dot(.), all public members of Vector are shown as hints]
I would like to have such a function in Geany, because it is difficult to remember the correct function names or headers in C ++.
Is there any functionality in Geany, as I mentioned above? Or any plugins for this? I know that Geany has autocomplete, but it only works when you have already used or called this particular function / variable once.
source
share